diff --git a/configforge/schemas/__init__.py b/configforge/schemas/__init__.py new file mode 100644 index 0000000..f308496 --- /dev/null +++ b/configforge/schemas/__init__.py @@ -0,0 +1,13 @@ +"""JSON Schema definitions for ConfigForge.""" + +from typing import Dict, Any + +BASE_SCHEMA: Dict[str, Any] = { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "ConfigForge Base Schema", + "type": "object", + "properties": {}, + "additionalProperties": False, +} + +__all__ = ["BASE_SCHEMA"]