GetCredentialReportResponse

Contains the response to a successful GetCredentialReport request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Content object
ReportFormat object
GeneratedTime object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-getcredentialreportresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetCredentialReportResponse",
  "title": "GetCredentialReportResponse",
  "type": "object",
  "properties": {
    "Content": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReportContentType"
        },
        {
          "description": "Contains the credential report. The report is Base64-encoded."
        }
      ]
    },
    "ReportFormat": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReportFormatType"
        },
        {
          "description": "The format (MIME type) of the credential report."
        }
      ]
    },
    "GeneratedTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/dateType"
        },
        {
          "description": " The date and time when the credential report was created, in <a href=\"http://www.iso.org/iso/iso8601\">ISO 8601 date-time format</a>."
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>GetCredentialReport</a> request. "
}