add shared contracts

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Harivansh Rathi 2026-03-31 21:25:38 +00:00
parent bc1878c1da
commit 679fd504a2
6 changed files with 126 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://ainas.local/schemas/control-plane-version.schema.json",
"type": "object",
"additionalProperties": false,
"required": [
"service",
"version",
"apiVersion"
],
"properties": {
"service": {
"const": "control-plane"
},
"version": {
"type": "string"
},
"apiVersion": {
"const": "v1"
}
}
}