Skip to main content

SSB POC Statlog Model

Project description

SSB POC Statlog Model

This repo is a proof of concept (POC) of models for logging data from a statistics production run.

PyPI Status Python Version License

Documentation Tests Coverage Quality Gate Status

pre-commit Black Ruff Poetry

Features

  • Contains json schema models for the data to be logged.
  • Contains pydantic models, that is python data validation classes for the json schemas.

Requirements

  • Python >= 3.10

Installation

You can install SSB POC Statlog Model via pip from PyPI:

pip install ssb-poc-statlog-model

Usage

Please see the Reference Guide for API details. A quick example using the generated ChangeDataLog model:

from datetime import datetime, timezone
from ssb_poc_statlog_model.change_data_log import ChangeDataLog, DataChangeType

change = ChangeDataLog(
    statistics_name="arblonn",
    data_source=["gs://ssb-prod-superteam-data-produkt/arblonn/inndata/arbeidloenn_p2023-12_v1.parquet"],
    data_target="gs://ssb-prod-superteam-data-produkt/arblonn/klargjorte-data/arbeidloenn_p2023-12_v1.parquet",
    data_period="2023-12",
    change_event="A",
    change_event_reason="OTHER_SOURCE",
    change_datetime = datetime(2024, 1, 10, 15, 0, tzinfo=timezone.utc),
    changed_by="user@example.com",
    data_change_type=DataChangeType.NEW,
    change_comment="Opprettet ny enhet (person) fra ny datakilde ...",
    change_details={
        "detail_type": "unit",
        "unit_id": [
            {"unit_id_variable": "fnr", "unit_id_value": "170598nnnnn"},
            {"unit_id_variable": "orgnr", "unit_id_value": "123456789"}
        ],
        "new_value": [
            {"variable_name": "bostedskommune", "value": "0101"},
            {"variable_name": "type_loenn", "value": "time"},
            {"variable_name": "loenn", "value": "38000"},
            {"variable_name": "overtid_loenn", "value": "3000"}
        ]
    }
)

print(change.model_dump_json())

Tip about timestamps in JSON: use ISO 8601 with timezone information (e.g. …Z for UTC) to satisfy Pydantic’s AwareDatetime requirement used in several models.

Project structure

  • src/model → JSON Schemas for the domain models (source of truth)
    • example_log_change_data/*.json → Example payloads used in tests
  • src/ssb_poc_statlog_model → Generated Pydantic models (Python)
  • tests → Pytest suite validating models and examples

Development

Set up the environment (installs runtime + dev tools):

poetry install

Run tests:

poetry run pytest -v

Code style and quality:

poetry run pre-commit run --all-files

Regenerate the Pydantic models from JSON Schemas

This repository keeps the source of truth for the models as JSON Schema files in src\model. Python classes are generated into src\ssb_poc_statlog_model using datamodel-code-generator via a small helper CLI.

You can run the generator using the console script (defined in pyproject.toml). All examples assume you are in the project root.

# Ensure dev dependencies are available (only needed once)
poetry install

# Generate models for all *-json-schema.json files under src/model
poetry run generate-ssb-models

Useful options:

  • Generate a single schema only:
poetry run generate-ssb-models --schemas src/model/change-data-log-json-schema.json
  • Use explicit directories (defaults shown):
poetry run generate-ssb-models \
  --schemas-dir src/model \
  --out-dir src/ssb_poc_statlog_model
  • Forward extra flags directly to datamodel-code-generator (repeatable):
poetry run generate-ssb-models \
  --extra-arg --collapse-root \
  --extra-arg --use-schema-description

What the helper does under the hood:

  • Discovers *-json-schema.json files in src/model (or uses --schemas if given)
  • Runs datamodel-code-generator targeting Pydantic v2 with options compatible with Python 3.10+ (see src/ssb_poc_statlog_model/generate_python.py for the exact flags)
  • Writes the generated models into src/ssb_poc_statlog_model

After regenerating, commit the updated Python files to version control.

Contributing

Contributions are very welcome. To learn more, see the Contributor Guide.

License

Distributed under the terms of the MIT license, SSB POC Statlog Model is free and open source software.

Issues

If you encounter any problems, please file an issue along with a detailed description.

Credits

This project was generated from Statistics Norway's SSB PyPI Template.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ssb_poc_statlog_model-1.0.0.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ssb_poc_statlog_model-1.0.0-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file ssb_poc_statlog_model-1.0.0.tar.gz.

File metadata

  • Download URL: ssb_poc_statlog_model-1.0.0.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ssb_poc_statlog_model-1.0.0.tar.gz
Algorithm Hash digest
SHA256 d663892670049a3810f6e98e98c2e7147ca211b1a30fd0b89649b5f70015454c
MD5 381515fed87a4df890516bc0aed9cd62
BLAKE2b-256 a3ef54ab013adee458a06f967f74c8bee329165ea03451f4c5f53fa1bab0cd47

See more details on using hashes here.

Provenance

The following attestation bundles were made for ssb_poc_statlog_model-1.0.0.tar.gz:

Publisher: release.yml on statisticsnorway/ssb-poc-statlog-model

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ssb_poc_statlog_model-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ssb_poc_statlog_model-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f14c48c65d8c693799063249a2da24c594f61d1f1612bc42e6a76e4e3fb47aac
MD5 1191a04c68972d379d8abbe83dcf0409
BLAKE2b-256 8ceda8e490c734a353aace1edfdc4fb6c33471d78cc8aea9c83f0b8fbe44e936

See more details on using hashes here.

Provenance

The following attestation bundles were made for ssb_poc_statlog_model-1.0.0-py3-none-any.whl:

Publisher: release.yml on statisticsnorway/ssb-poc-statlog-model

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page