addedOutput schema / properties / evidenceGates
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "gates": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "checkpointDays": {
+ "type": "number"
+ },
+ "claim": {
+ "type": "null"
+ },
+ "n": {
+ "type": "number"
+ },
+ "noClaimReason": {
+ "type": "string"
+ },
+ "product": {
+ "enum": [
+ "clarity",
+ "mindscan"
+ ],
+ "type": "string"
+ },
+ "published": {
+ "type": "boolean"
+ },
+ "threshold": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "product",
+ "checkpointDays",
+ "n",
+ "threshold",
+ "published",
+ "claim",
+ "noClaimReason"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "const": "available",
+ "type": "string"
+ }
+ },
+ "required": [
+ "status",
+ "gates"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "reason": {
+ "type": "string"
+ },
+ "status": {
+ "const": "unavailable",
+ "type": "string"
+ }
+ },
+ "required": [
+ "status",
+ "reason"
+ ],
+ "type": "object"
+ }
+ ]
+}
changedOutput schema / required
Previous value: -[
- "version",
- "purpose",
- "pipeline",
- "safeguards",
- "methodologyUrl",
- "researchUrl",
- "examplesUrl",
- "provider",
- "product",
- "methodVersion",
- "canonicalUrl",
- "attribution",
- "executionBoundary"
-]New value: +[
+ "version",
+ "purpose",
+ "pipeline",
+ "safeguards",
+ "methodologyUrl",
+ "researchUrl",
+ "examplesUrl",
+ "evidenceGates",
+ "provider",
+ "product",
+ "methodVersion",
+ "canonicalUrl",
+ "attribution",
+ "executionBoundary"
+]