| title | agentCardSignature resource type |
|---|---|
| description | AgentCardSignature represents a JWS signature of an AgentCard. This follows the JSON format of an RFC 7515 JSON Web Signature (JWS). |
| author | jasondou |
| ms.date | 11/06/2025 |
| ms.localizationpriority | medium |
| ms.subservice | entra-id |
| doc_type | resourcePageType |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents a JWS signature of an agent card, as defined in the agentInstance object. This follows the JSON format of an RFC 7515 JSON Web Signature (JWS).
| Property | Type | Description |
|---|---|---|
| header | jwsHeader | The unprotected JWS header values. |
| protected | String | The protected JWS header for the signature. This is a Base64url-encoded JSON object, as per RFC 7515. |
| signature | String | The computed signature, Base64url-encoded. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.agentCardSignature",
"protected": "String",
"signature": "String",
"header": {
"@odata.type": "microsoft.graph.jwsHeader"
}
}