Skip to content

Commit

Permalink
feat: Update exclusions for ocdskit
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Dec 16, 2024
1 parent b726347 commit 03b7347
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion extension_explorer/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,17 @@ def get_schema_tables(extension_version, lang):

d = field.asdict(
sep='.',
exclude=('name', 'deprecated_self', 'deprecated', 'pointer', 'pattern', 'required', 'merge_by_id'),
exclude=(
'name',
'deprecated_self',
'deprecated',
'pointer',
'pattern',
'required',
'merge_by_id',
'codelist',
'open_codelist',
),
)
with contextlib.suppress(jsonpointer.JsonPointerException):
_, d['url'] = _add_link_to_original_field(field, schema, sources)
Expand Down

0 comments on commit 03b7347

Please sign in to comment.