changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "bitcoin": {
+ "properties": {
+ "status": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "citation": {
+ "type": "string"
+ },
+ "integrity": {
+ "description": "The whole point: claimed vs recomputed. match:false is an integrity FAILURE, which is a finding, not an error.",
+ "properties": {
+ "claimed_sha256": {
+ "type": "string"
+ },
+ "match": {
+ "type": "boolean"
+ },
+ "recomputed_sha256": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "match"
+ ],
+ "type": "object"
+ },
+ "limits": {
+ "type": "string"
+ },
+ "lookup": {
+ "description": "ok = the ledger was read and the record exists. absent = the ledger was read and there is no such record. A read that FAILED never appears here: it comes back as a tool error (isError: true), so a consumer can never mistake this server's own failure for a statement about the ledger's contents.",
+ "enum": [
+ "ok",
+ "absent"
+ ],
+ "type": "string"
+ },
+ "record_kind": {
+ "type": "string"
+ },
+ "resolved_entry": {
+ "type": [
+ "number",
+ "string",
+ "null"
+ ]
+ },
+ "trust_note": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "lookup",
+ "integrity"
+ ],
+ "type": "object"
+}