Skip to content

Commit

Permalink
add instruction on entity_alternatives in the docstring of import_data()
Browse files Browse the repository at this point in the history
  • Loading branch information
nnhjy committed Nov 21, 2024
1 parent 0d0ba88 commit b5a15c7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/api/db.jl
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,11 @@ Dict(
:object_groups => [[:class_name, :group_name, :member_name], ...],
:scenarios => [(:scen_name, true), ...], # true for the active flag, not in use at the moment
:alternatives => [:alt_name, ...],
:scenario_alternatives => [(:scen_name, :alt_name, nothing), (:scen_name, :lower_alt_name, :alt_name), ...]
:scenario_alternatives => [(:scen_name, :alt_name, nothing), (:scen_name, :lower_alt_name, :alt_name), ...],
:entity_alternatives => [
[:object_class, :entity_name, :alt_name, true], ...
[:multi_d_class, [:entity_name1, :entity_name2], :alt_name, false]
]
)
```
Expand Down

0 comments on commit b5a15c7

Please sign in to comment.