changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "description": "Canonical public representation, signature metadata, and trust fields for an existing InterAI receipt.",
+ "properties": {
+ "ok": {
+ "type": "boolean"
+ },
+ "receipt": {
+ "additionalProperties": true,
+ "properties": {
+ "decision_basis": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "issued_at": {
+ "type": "string"
+ },
+ "oracle_version": {
+ "type": "string"
+ },
+ "receipt_id": {
+ "type": "string"
+ },
+ "request_hash": {
+ "type": "string"
+ },
+ "signals_version": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "receipt_id",
+ "issued_at",
+ "request_hash"
+ ],
+ "type": "object"
+ },
+ "trust": {
+ "additionalProperties": true,
+ "properties": {
+ "confidence_band": {
+ "type": "string"
+ },
+ "domain": {
+ "type": "string"
+ },
+ "risk_level": {
+ "type": "string"
+ },
+ "trust_score": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "domain",
+ "trust_score",
+ "risk_level",
+ "confidence_band"
+ ],
+ "type": "object"
+ },
+ "verification": {
+ "additionalProperties": true,
+ "properties": {
+ "signature": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "signature_alg": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "signed": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "signed",
+ "signature",
+ "signature_alg"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "ok",
+ "receipt",
+ "verification",
+ "trust"
+ ],
+ "type": "object"
+}