Skip to content

Commit

Permalink
Add data_model_labels, annotation_keys, and table_column_names to sch…
Browse files Browse the repository at this point in the history
…ema (#151)
  • Loading branch information
afwillia authored Feb 28, 2024
1 parent 5432cb5 commit 288b570
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions schemas/dca_config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,18 @@
],
"additionalProperties": false,
"properties": {
"global": {
"description": "Parameters common to many schematic commands",
"type": "object",
"required": [ "data_model_labels" ],
"properties": {
"data_model_labels" {
"description": "Source for labels of the data model",
"type": "string",
"enum": [ "class_label", "display_label" ]
}
}
},
"manifest_generate": {
"description": "Parameters to pass to Schematic manifest generate",
"type": "object",
Expand Down Expand Up @@ -135,16 +147,23 @@
"description": "Parameters to pass Schematic model submit",
"type": "object",
"required": [
"use_schema_labels",
"table_manipulation",
"manifest_record_type",
"hide_blanks"
"hide_blanks",
"annotation_keys",
"table_column_names"
],
"additionalProperties": false,
"properties": {
"use_schema_labels": {
"annotation_keys": {
"description": "Schematic model submit option",
"type": "boolean"
"type": "string",
"enum": [ "class_label", "display_label" ]
},
"table_column_names": {
"description": "Schematic model submit option",
"type": "string",
"enum": [ "class_label", "display_label", "display_name" ]
},
"table_manipulation": {
"description": "Schematic model submit option",
Expand Down

0 comments on commit 288b570

Please sign in to comment.