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
14 lines
316 B
Python
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"]
|