Coverage for src/csv_schema_validator/schema.py: 0%
11 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-18 20:14 +0200
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-18 20:14 +0200
1import json
2from typing import Dict, List
3from .types import Schema, FieldSchema, FieldType
4from .exceptions import CSVSchemaValidatorError
6class SchemaLoader:
7 @staticmethod
8 def load_from_file(file_path: str) -> Schema:
9 """Load schema from a file"""
10 pass
12 @staticmethod
13 def validate_schema(schema_data: Dict) -> None:
14 pass