Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-advanced-user-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-advanced-user-tools
Commits
cd9459b2
Verified
Commit
cd9459b2
authored
1 year ago
by
Daniel Hornung
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Split up name_and_description_in_properties in two parameters.
parent
5e1024af
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!89
ENH: JsonSchemaExporter accepts do_not_create parameter.
,
!84
F more jsonschema export
Pipeline
#43323
passed
1 year ago
Stage: setup
Stage: cert
Stage: style
Stage: unittest
Stage: integrationtest
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/caosadvancedtools/json_schema_exporter.py
+22
-11
22 additions, 11 deletions
src/caosadvancedtools/json_schema_exporter.py
unittests/test_json_schema_exporter.py
+4
-3
4 additions, 3 deletions
unittests/test_json_schema_exporter.py
with
26 additions
and
14 deletions
src/caosadvancedtools/json_schema_exporter.py
+
22
−
11
View file @
cd9459b2
...
...
@@ -36,7 +36,8 @@ class JsonSchemaExporter:
"""
def
__init__
(
self
,
additional_properties
:
bool
=
True
,
name_and_description_in_properties
:
bool
=
False
,
name_for_new_reference_records
:
bool
=
False
,
description_for_new_reference_records
:
bool
=
False
,
additional_options_for_text_props
:
dict
=
None
,
units_in_description
:
bool
=
True
,
do_not_create
:
List
[
str
]
=
None
,
...
...
@@ -50,9 +51,12 @@ class JsonSchemaExporter:
additional_properties : bool, optional
Whether additional properties will be admitted in the resulting
schema. Optional, default is True.
name_and_description_in_properties : bool, optional
Whether objects that are generated from reference properties shall have a `name` and
`description` property in the generated schema. Optional, default is False.
name_for_new_reference_records : bool, optional
Whether objects that are generated from reference properties shall have a `name`
property in the generated schema. Optional, default is False.
description_for_new_reference_records : bool, optional
Whether objects that are generated from reference properties shall have a `description`
property in the generated schema. Optional, default is False.
additional_options_for_text_props : dict, optional
Dictionary containing additional
"
pattern
"
or
"
format
"
options for
string-typed properties. Optional, default is empty.
...
...
@@ -80,7 +84,8 @@ class JsonSchemaExporter:
do_not_retrieve
=
[]
self
.
_additional_properties
=
additional_properties
self
.
_name_and_description_in_properties
=
name_and_description_in_properties
self
.
_name_for_new_reference_records
=
name_for_new_reference_records
self
.
_description_for_new_reference_records
=
description_for_new_reference_records
self
.
_additional_options_for_text_props
=
additional_options_for_text_props
self
.
_units_in_description
=
units_in_description
self
.
_do_not_create
=
do_not_create
...
...
@@ -251,8 +256,9 @@ class JsonSchemaExporter:
schema
[
"
additionalProperties
"
]
=
self
.
_additional_properties
props
=
OrderedDict
()
if
self
.
_name_
and_description_in_propertie
s
:
if
self
.
_name_
for_new_reference_record
s
:
props
[
"
name
"
]
=
self
.
_make_text_property
(
"
The name of the Record to be created
"
)
if
self
.
_description_for_new_reference_records
:
props
[
"
description
"
]
=
self
.
_make_text_property
(
"
The description of the Record to be created
"
)
...
...
@@ -297,7 +303,8 @@ class JsonSchemaExporter:
def
recordtype_to_json_schema
(
rt
:
db
.
RecordType
,
additional_properties
:
bool
=
True
,
name_and_description_in_properties
:
bool
=
False
,
name_for_new_reference_records
:
bool
=
False
,
description_for_new_reference_records
:
bool
=
False
,
additional_options_for_text_props
:
Optional
[
dict
]
=
None
,
units_in_description
:
bool
=
True
,
do_not_create
:
List
[
str
]
=
None
,
...
...
@@ -317,9 +324,12 @@ def recordtype_to_json_schema(rt: db.RecordType, additional_properties: bool = T
additional_properties : bool, optional
Whether additional properties will be admitted in the resulting
schema. Optional, default is True.
name_and_description_in_properties : bool, optional
Whether objects that are generated from reference properties shall have a `name` and
`description` property in the generated schema. Optional, default is False.
name_for_new_reference_records : bool, optional
Whether objects that are generated from reference properties shall have a `name`
property in the generated schema. Optional, default is False.
description_for_new_reference_records : bool, optional
Whether objects that are generated from reference properties shall have a `description`
property in the generated schema. Optional, default is False.
additional_options_for_text_props : dict, optional
Dictionary containing additional
"
pattern
"
or
"
format
"
options for
string-typed properties. Optional, default is empty.
...
...
@@ -348,7 +358,8 @@ def recordtype_to_json_schema(rt: db.RecordType, additional_properties: bool = T
exporter
=
JsonSchemaExporter
(
additional_properties
=
additional_properties
,
name_and_description_in_properties
=
name_and_description_in_properties
,
name_for_new_reference_records
=
name_for_new_reference_records
,
description_for_new_reference_records
=
description_for_new_reference_records
,
additional_options_for_text_props
=
additional_options_for_text_props
,
units_in_description
=
units_in_description
,
do_not_create
=
do_not_create
,
...
...
This diff is collapsed.
Click to expand it.
unittests/test_json_schema_exporter.py
+
4
−
3
View file @
cd9459b2
...
...
@@ -112,7 +112,8 @@ def test_empty_rt():
assert
len
(
schema
[
"
required
"
])
==
0
assert
schema
[
"
additionalProperties
"
]
is
False
schema
=
rtjs
(
rt
,
name_and_description_in_properties
=
True
)
schema
=
rtjs
(
rt
,
name_for_new_reference_records
=
True
,
description_for_new_reference_records
=
True
)
assert
len
(
schema
[
"
properties
"
])
==
2
assert
"
name
"
in
schema
[
"
properties
"
]
...
...
@@ -439,8 +440,8 @@ def test_rt_with_references():
rt
=
db
.
RecordType
()
rt
.
add_property
(
name
=
"
RefProp
"
,
datatype
=
db
.
LIST
(
"
OtherType
"
))
schema
=
rtjs
(
rt
,
additional_properties
=
False
,
name_and_
description_
in_propertie
s
=
True
)
schema
=
rtjs
(
rt
,
additional_properties
=
False
,
name_for_new_reference_records
=
True
,
description_
for_new_reference_record
s
=
True
)
assert
schema
[
"
additionalProperties
"
]
is
False
assert
"
name
"
in
schema
[
"
properties
"
]
assert
schema
[
"
properties
"
][
"
name
"
][
"
type
"
]
==
"
string
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment