1
0
Fork 0
Code Issues Pull requests Projects Releases 2 Packages Wiki Activity Actions Pages

Establish Milestone 0 compatibility and quality gates

This commit is contained in:
Andraxion 2026-07-29 03:12:30 -04:00
parent 15a913003c
commit 8ebb78a71d
15 changed files with 1114 additions and 27 deletions

View file

@ -12,13 +12,29 @@
"revision": { "type": "string" },
"source_hash": { "type": "string", "pattern": "^[0-9a-f]{64}$" },
"adapter": { "type": "string" }
}
},
"additionalProperties": true
},
{
"type": "object",
"required": ["status", "error"],
"properties": {
"status": { "const": "error" },
"project_id": { "type": "string" },
"project_root_fingerprint": {
"type": "string",
"pattern": "^[0-9a-f]{16}$"
},
"adapter": { "type": "string" },
"server_version": { "type": "string" },
"revision": { "type": "string" },
"source_hash": {
"type": ["string", "null"],
"pattern": "^[0-9a-f]{64}$"
},
"content_warning": { "type": "string" },
"staleness": { "enum": ["current", "stale", "unknown"] },
"synchronization": { "type": "object" },
"error": {
"type": "object",
"required": ["code", "message", "details"],
@ -30,7 +46,7 @@
"additionalProperties": false
}
},
"additionalProperties": false
"additionalProperties": true
}
]
}