Properties
| Name | Type | Description |
|---|---|---|
| content_type | string | Describes the content-type encoding received from the vendor. |
| details | array | Array of vendor specific information. |
| vendor | string | Name of the vendor used. |
| xml | string | Data representaion in XML. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/verification_vendor_xml",
"title": "verification_vendor_xml",
"properties": {
"content_type": {
"description": "Describes the content-type encoding received from the vendor.",
"enum": [
"text/xml"
],
"type": "string"
},
"details": {
"description": "Array of vendor specific information.",
"items": {
"$ref": "#/components/schemas/verification_vendor_info_detail"
},
"readOnly": true,
"type": "array"
},
"vendor": {
"description": "Name of the vendor used.",
"example": "IDOLOGY",
"type": "string"
},
"xml": {
"description": "Data representaion in XML.",
"type": "string"
}
},
"required": [
"vendor",
"content_type",
"xml"
]
}