We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd1ad4d commit 3261893Copy full SHA for 3261893
1 file changed
src/esgvoc/api/project_specs.py
@@ -50,17 +50,17 @@ class AttributeProperty(BaseModel):
50
A NetCDF global attribute property specification.
51
"""
52
53
- source_collection: str
+ source_collection: str | None
54
"The project collection that originated the property."
55
is_required: bool
56
"Specifies if the attribute must be present in the NetCDF file."
57
- value_type: str
+ attr_field_value_type: str
58
"The type of the attribute value."
59
specific_key: str | None = None
60
"Specifies a specific key in the collection."
61
- field_name: str | None = None
+ attr_field_name: str | None = None
62
"The name of the attribute field."
63
- default_value: str | None = None
+ attr_field_na_value: str | None = None
64
"The default value for the attribute."
65
66
0 commit comments