Files
configforge/configforge/schemas/__init__.py
7000pctAUTO 6b37d0d1d7
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / test (3.8) (push) Has been cancelled
CI / test (3.9) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / typecheck (push) Has been cancelled
CI / build-package (push) Has been cancelled
Add formatters, utils, schemas and version
2026-01-29 10:50:35 +00:00

14 lines
316 B
Python

"""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"]