removedInput schema / properties / agent_id
Removed value: -{
- "description": "Optional. Restrict the result to one agent.",
- "type": "string"
-}
addedInput schema / properties / name
Added value: +{
+ "description": "Exact case-insensitive project/mailbox name.",
+ "maxLength": 64,
+ "minLength": 1,
+ "type": "string"
+}
addedInput schema / required
Added value: +[
+ "name"
+]
changedOutput schema / properties / data / description
Previous value: -"Reachable A2A network participants. Null when ok is false."New value: +"Exact A2A mailbox-name address resolution; admission and blocks remain conditional. Null when ok is false."
changedOutput schema / properties / data / properties / agents / description
Previous value: -"Participants with tenant, delivery mode, provenance and reachability."New value: +"Zero or one current participant matching the mailbox claim."
addedOutput schema / properties / data / properties / agents / items
Added value: +{
+ "additionalProperties": true,
+ "properties": {
+ "agent_id": {
+ "type": "string"
+ },
+ "delivery_mode": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "mailbox_name": {
+ "description": "Exact-match mailbox claim returned as name by enrollment; separate from the generic display name.",
+ "type": "string"
+ },
+ "name": {
+ "description": "Generic display label.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "provenance": {
+ "type": "string"
+ },
+ "tenant": {
+ "description": "Route address used for SendMessage; not a delivery guarantee.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}