aide-sovereign-workbench / community /store-schema.json
Ferrell Synthetic Intelligence
Add offline community hub
dd6c84a
Raw
History Blame Contribute Delete
537 Bytes
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "AIDE Offline Community Store",
"type": "object",
"required": ["schema_version", "sync", "projects", "issues", "discussions", "marketplace"],
"properties": {
"schema_version": {"const": "1.0"},
"sync": {"enum": ["local-only", "invited-encrypted", "public-publish"]},
"projects": {"type": "array"},
"issues": {"type": "array"},
"discussions": {"type": "array"},
"marketplace": {"type": "array"}
},
"additionalProperties": false
}