Microsoft Azure · Schema

CertificateListResult

The certificate list result.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
value array A list of certificates.
nextLink string The URL to get the next set of certificates.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-certificatelistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CertificateListResult",
  "title": "CertificateListResult",
  "type": "object",
  "description": "The certificate list result.",
  "properties": {
    "value": {
      "type": "array",
      "readOnly": true,
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "attributes": {
            "$ref": "#/components/schemas/CertificateAttributes"
          },
          "tags": {
            "type": "object",
            "additionalProperties": {
              "type": "string"
            }
          },
          "x5t": {
            "type": "string",
            "description": "Thumbprint of the certificate."
          },
          "subject": {
            "type": "string"
          }
        }
      },
      "description": "A list of certificates.",
      "example": []
    },
    "nextLink": {
      "type": "string",
      "readOnly": true,
      "description": "The URL to get the next set of certificates.",
      "example": "example_value"
    }
  }
}