You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(spec): add parties.did_resolution_status field v2.1.3
Documents "bound" | "unverified" | absent values. Included in
public unauthenticated proof responses per Section 9.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
-`parties.did_resolution_status` optional string field. Values: `"bound"` (DID verified via Ed25519 challenge-response at registration time), `"unverified"` (caller-declared identity without cryptographic verification). Absent if no `agent_identity` is provided. Included in public unauthenticated proof responses.
Copy file name to clipboardExpand all lines: SPEC.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,7 @@ All variants produce a valid chain hash. The `payment.transaction_id` value is u
130
130
|`verification_url`| string | URL to verify and view the proof (e.g. `https://trust.arkforge.tech/v1/proof/<proof_id>`) |
131
131
|`parties.agent_identity`| string | Agent identity. If the API key has a cryptographically verified DID bound via Ed25519 challenge-response, this field contains the verified DID and takes precedence over any caller-declared value. Otherwise, contains the caller's self-declared name. |
132
132
|`parties.agent_identity_verified`| bool |`true` if `agent_identity` is a cryptographically verified DID bound to the API key. Absent if the identity is self-declared. |
133
+
|`parties.did_resolution_status`| string | DID resolution status at proof creation time. `"bound"` if `agent_identity` is a cryptographically verified DID bound via Ed25519 challenge-response at registration time. `"unverified"` if `agent_identity` is caller-declared without cryptographic verification. Absent if no `agent_identity` is provided. |
133
134
|`parties.agent_version`| string | Agent's version string |
134
135
|`identity_consistent`| bool/null | Whether identity matches previous calls with same key |
@@ -492,7 +493,7 @@ Implementations MAY filter sensitive fields from public API responses while keep
492
493
When a proof is returned via an **unauthenticated** endpoint:
493
494
494
495
-`parties.buyer_fingerprint` SHOULD be omitted (privacy)
495
-
-`parties.agent_identity`, `parties.agent_identity_verified`, and `parties.seller` SHOULD be included (third-party auditability)
496
+
-`parties.agent_identity`, `parties.agent_identity_verified`, `parties.did_resolution_status`, and `parties.seller` SHOULD be included (third-party auditability)
496
497
-`certification_fee` amounts and receipt URLs SHOULD be omitted
497
498
-`buyer_reputation_score` and `buyer_profile_url` SHOULD be omitted
498
499
-`provider_payment`: only `type`, `receipt_content_hash`, and `verification_status` SHOULD be retained; `receipt_url` and `parsed_fields` SHOULD be omitted
0 commit comments