📦 deps(thirdparty): update snapshots
This commit is contained in:
+58
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "https://aas.example/schemas/v1/abstention-case.schema.json",
|
||||
"title": "AAS v1 pre-declared out-of-distribution abstention case",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["schemaVersion", "caseId", "intent", "profile", "targets", "policy", "criticalGoals", "nonCriticalGoals", "requiresSkill", "provenance", "taskFamilyFingerprint"],
|
||||
"properties": {
|
||||
"schemaVersion": { "const": 1 },
|
||||
"caseId": { "type": "string", "pattern": "^abstention\\." },
|
||||
"intent": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"not": { "enum": ["web-application-delivery", "api-backend-delivery", "test-qa-automation", "security-review-hardening", "deployment-devops", "agent-mcp-development"] }
|
||||
},
|
||||
"profile": { "type": "object", "minProperties": 1 },
|
||||
"targets": {
|
||||
"type": "array",
|
||||
"minItems": 1,
|
||||
"maxItems": 2,
|
||||
"uniqueItems": true,
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["host", "scope"],
|
||||
"properties": {
|
||||
"host": { "enum": ["codex", "claude"] },
|
||||
"scope": { "const": "project" }
|
||||
}
|
||||
}
|
||||
},
|
||||
"policy": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["allowedRisk", "requireKnownSource", "allowManualSetup"],
|
||||
"properties": {
|
||||
"allowedRisk": { "const": ["none", "safe"] },
|
||||
"requireKnownSource": { "const": false },
|
||||
"allowManualSetup": { "const": false }
|
||||
}
|
||||
},
|
||||
"criticalGoals": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string", "minLength": 1 } },
|
||||
"nonCriticalGoals": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1 } },
|
||||
"minimumNonCriticalGoalCoverage": { "type": "number", "minimum": 0.8, "maximum": 1 },
|
||||
"requiresSkill": { "const": false },
|
||||
"provenance": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["source", "version", "reviewedAt"],
|
||||
"properties": {
|
||||
"source": { "type": "string", "minLength": 1 },
|
||||
"version": { "type": "string", "minLength": 1 },
|
||||
"reviewedAt": { "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}$" }
|
||||
}
|
||||
},
|
||||
"taskFamilyFingerprint": { "type": "string", "pattern": "^sha256:[0-9a-f]{64}$" }
|
||||
}
|
||||
}
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "https://aas.example/schemas/v1/abstention-index.schema.json",
|
||||
"title": "AAS v1 pre-declared abstention corpus index",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["schemaVersion", "corpusVersion", "status", "expectedStatus", "frozenSupportedIntents", "reasonCodeRegistry", "families", "cases", "reviews"],
|
||||
"properties": {
|
||||
"schemaVersion": { "const": 1 },
|
||||
"corpusVersion": { "const": "1.0.0" },
|
||||
"status": { "enum": ["pendingIndependentReview", "frozen"] },
|
||||
"expectedStatus": { "const": "insufficientCoverage" },
|
||||
"frozenSupportedIntents": { "type": "array", "minItems": 6, "maxItems": 6, "uniqueItems": true, "items": { "type": "string" } },
|
||||
"reasonCodeRegistry": { "const": "reason-codes.v1.json" },
|
||||
"families": { "type": "array", "minItems": 6, "uniqueItems": true, "items": { "type": "string" } },
|
||||
"cases": {
|
||||
"type": "array",
|
||||
"minItems": 30,
|
||||
"maxItems": 30,
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["caseId", "family", "inputPath", "labelPath", "taskFamilyFingerprint", "provenance", "reviewStatus"],
|
||||
"properties": {
|
||||
"caseId": { "type": "string" },
|
||||
"family": { "type": "string" },
|
||||
"inputPath": { "type": "string" },
|
||||
"labelPath": { "type": "string" },
|
||||
"taskFamilyFingerprint": { "type": "string" },
|
||||
"provenance": { "type": "object" },
|
||||
"reviewStatus": { "enum": ["pendingIndependentReview", "approved"] }
|
||||
}
|
||||
}
|
||||
},
|
||||
"reviews": { "type": "array", "maxItems": 0 }
|
||||
}
|
||||
}
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "https://aas.example/schemas/v1/abstention-label.schema.json",
|
||||
"title": "AAS v1 abstention expected label",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["schemaVersion", "labelVersion", "caseId", "expectedStatus", "expectedProposedStack", "reasonCodes", "reviews"],
|
||||
"properties": {
|
||||
"schemaVersion": { "const": 1 },
|
||||
"labelVersion": { "const": "1.0.0" },
|
||||
"caseId": { "type": "string", "pattern": "^abstention\\." },
|
||||
"expectedStatus": { "const": "insufficientCoverage" },
|
||||
"expectedProposedStack": { "type": "array", "maxItems": 0 },
|
||||
"reasonCodes": {
|
||||
"type": "array",
|
||||
"minItems": 1,
|
||||
"uniqueItems": true,
|
||||
"items": { "enum": ["AAS_COVERAGE_OOD_CREATIVE_CONTENT", "AAS_COVERAGE_OOD_MEDIA_PRODUCTION", "AAS_COVERAGE_OOD_PERSONAL_PLANNING", "AAS_COVERAGE_OOD_PROFESSIONAL_ADVICE", "AAS_COVERAGE_OOD_PHYSICAL_SYSTEMS", "AAS_COVERAGE_OOD_NON_WEB_SOFTWARE"] }
|
||||
},
|
||||
"reviews": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["reviewer", "decision", "reviewedDigest"],
|
||||
"properties": {
|
||||
"reviewer": { "type": "string" },
|
||||
"decision": { "enum": ["approved", "rejected"] },
|
||||
"reviewedDigest": { "type": "string" }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user