UploadSigningCertificateResponse

Contains the response to a successful UploadSigningCertificate request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Certificate object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-uploadsigningcertificateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UploadSigningCertificateResponse",
  "title": "UploadSigningCertificateResponse",
  "type": "object",
  "required": [
    "Certificate"
  ],
  "example": {
    "Certificate": {
      "CertificateBody": "-----BEGIN CERTIFICATE-----<certificate-body>-----END CERTIFICATE-----",
      "CertificateId": "ID123456789012345EXAMPLE",
      "Status": "Active",
      "UploadDate": "2015-06-06 21:40:08.121000+00:00",
      "UserName": "Bob"
    }
  },
  "properties": {
    "Certificate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SigningCertificate"
        },
        {
          "description": "Information about the certificate."
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>UploadSigningCertificate</a> request. "
}