Skip to content

Latest commit

 

History

History
75 lines (61 loc) · 4.42 KB

File metadata and controls

75 lines (61 loc) · 4.42 KB
title selfSignedCertificate resource type
description Contains information about the public part of a signing certificate.
ms.localizationpriority medium
doc_type resourcePageType
ms.subservice entra-applications
author luleonpla
ms.date 03/21/2024

selfSignedCertificate resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Contains the public part of a signing certificate. It's the return type of the action addTokenSigningCertificate. Service providers use the public part of the signing certificate to validate the issuer of the token.

Properties

Property Type Description
customKeyIdentifier Binary Custom key identifier.
displayName String The friendly name for the key.
endDateTime DateTimeOffset The date and time at which the credential expires. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
keyId Guid The unique identifier (GUID) for the key.
startDateTime DateTimeOffset The date and time at which the credential becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
type String The type of key credential. "AsymmetricX509Cert".
usage String A string that describes the purpose for which the key can be used. For example, "Verify".
key Binary The value for the key credential. Should be a base-64 encoded value.
thumbprint String The thumbprint value for the key.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.selfSignedCertificate",
  "customKeyIdentifier": "String (Binary)",
  "displayName": "String",
  "endDateTime": "String (timestamp)",
  "key": "String (Binary)",
  "keyId": "Guid",
  "startDateTime": "String (timestamp)",
  "thumbprint": "String",
  "type": "String",
  "usage": "String"
}