{
"$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 ISO 8601 date-time format."
}
]
}
},
"description": "Contains the response to a successful GetCredentialReport request. "
}