Replies: 1 comment
-
A JSON schema would be ideal. For example: {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "OMOP CDM schema",
"description": "This schema describes the OMOP Common Data Model definitions found in the `OMOP_CDMv5.4_Field_Level.csv` file for example.",
"properties": {
"cdmTableName": {
"description": "The name of the CDM table.",
"type": "string"
},
"schema": {
"description": "Specifies the schema of the table (CDM, VOCAB, RESULTS).",
"enum": ["CDM", "VOCAB", "RESULTS"],
"type": "string"
},
"isRequired": {
"description": "Is the table required (Yes/No).",
"enum": ["Yes", "No"],
"type": "string"
}
...
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying find definitions for fields such as
conceptPrefix
andmeasurePersonCompletenessThreshold
from the table and field definitions outlined in https://github.com/OHDSI/CommonDataModel/blob/main/inst/csv/OMOP_CDMv5.4_Table_Level.csv and OMOP_CDMv5.4_Field_Level.csv. Is this documented somewhere because it would be nice to know the purpose ofconceptPrefix
, etc.?Beta Was this translation helpful? Give feedback.
All reactions