jsonstat-validator 0.1.5__py3-none-any.whl → 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- jsonstat_validator/__init__.py +3 -16
- jsonstat_validator/models.py +775 -0
- jsonstat_validator/validator.py +38 -731
- {jsonstat_validator-0.1.5.dist-info → jsonstat_validator-0.2.0.dist-info}/METADATA +3 -3
- jsonstat_validator-0.2.0.dist-info/RECORD +8 -0
- jsonstat_validator-0.1.5.dist-info/RECORD +0 -7
- {jsonstat_validator-0.1.5.dist-info → jsonstat_validator-0.2.0.dist-info}/WHEEL +0 -0
- {jsonstat_validator-0.1.5.dist-info → jsonstat_validator-0.2.0.dist-info}/licenses/LICENSE +0 -0
- {jsonstat_validator-0.1.5.dist-info → jsonstat_validator-0.2.0.dist-info}/top_level.txt +0 -0
jsonstat_validator/__init__.py
CHANGED
@@ -10,27 +10,14 @@ dimensions are organized in categories.
|
|
10
10
|
For more information on JSON-stat, see: https://json-stat.org/
|
11
11
|
"""
|
12
12
|
|
13
|
-
from jsonstat_validator.
|
14
|
-
|
15
|
-
Collection,
|
16
|
-
Dataset,
|
17
|
-
DatasetRole,
|
18
|
-
Dimension,
|
19
|
-
JSONStatSchema,
|
20
|
-
Link,
|
21
|
-
Unit,
|
22
|
-
validate_jsonstat,
|
23
|
-
)
|
13
|
+
from jsonstat_validator.models import Collection, Dataset, Dimension, JSONStatSchema
|
14
|
+
from jsonstat_validator.validator import validate_jsonstat
|
24
15
|
|
25
|
-
__version__ = "0.
|
16
|
+
__version__ = "0.2.0"
|
26
17
|
__all__ = [
|
27
18
|
"Dataset",
|
28
19
|
"Dimension",
|
29
20
|
"Collection",
|
30
|
-
"Link",
|
31
|
-
"Unit",
|
32
|
-
"Category",
|
33
|
-
"DatasetRole",
|
34
21
|
"JSONStatSchema",
|
35
22
|
"validate_jsonstat",
|
36
23
|
]
|