From 6b37d0d1d7cb0caaf9478cbab07fb30b0aa222d1 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 10:50:35 +0000 Subject: [PATCH] Add formatters, utils, schemas and version --- configforge/schemas/__init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 configforge/schemas/__init__.py 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"]