Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: metadata-container-json-schema.json
# timestamp: 2025-12-03T08:38:27+00:00
# timestamp: 2025-12-03T08:52:42+00:00

from __future__ import annotations

Expand Down Expand Up @@ -388,8 +388,8 @@ class DatadocMetadata(DatadocBaseModel):
percentage_complete: Optional[int] = Field(
None, description="Percentage of obligatory metadata fields populated."
)
document_version: Literal["6.1.0"] = Field(
"6.1.0", description="Version of this model"
document_version: Literal["6.1.1"] = Field(
"6.1.1", description="Version of this model"
)
dataset: Optional[Dataset] = None
variables: Optional[list[Variable]] = None
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: metadata-container-json-schema.json
# timestamp: 2025-12-03T08:38:29+00:00
# timestamp: 2025-12-03T08:52:44+00:00

from __future__ import annotations

Expand Down Expand Up @@ -380,8 +380,8 @@ class DatadocMetadata(DatadocBaseModel):
percentage_complete: Optional[int] = Field(
None, description="Percentage of obligatory metadata fields populated."
)
document_version: Literal["6.1.0"] = Field(
"6.1.0", description="Version of this model"
document_version: Literal["6.1.1"] = Field(
"6.1.1", description="Version of this model"
)
dataset: Dataset
variables: list[Variable]
Expand Down
2 changes: 1 addition & 1 deletion generated/python/datadoc_model/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ssb-datadoc-model"
version = "8.0.1"
version = "8.0.2"
description = "Data Model for use in Statistics Norway's Metadata system"
authors = [{ name = "Statistics Norway", email = "metadata@ssb.no" }]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/datadoc/datadoc-json-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"document_version": {
"description": "Version of this model",
"const": "6.1.0"
"const": "6.1.1"
},
"dataset": {
"type": "object",
Expand Down
Loading