Skip to content

Commit 95c0a68

Browse files
add protocol version (#31)
1 parent adf9838 commit 95c0a68

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/A2A/Models/AgentCard.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@ public class AgentCard
4747
[Required]
4848
public string Version { get; set; } = string.Empty;
4949

50+
/// <summary>
51+
/// The version of the A2A protocol this agent supports
52+
/// </summary>
53+
[JsonPropertyName("protocolVersion")]
54+
[Required]
55+
public string ProtocolVersion { get; set; } = "0.2.3";
56+
5057
/// <summary>
5158
/// Optional documentation URL
5259
/// </summary>

0 commit comments

Comments
 (0)