{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/disclosure1", "title": "Disclosure", "description": "Represents a disclosure", "properties": { "creation_time": { "example": "2021-05-01T23:59:59Z", "format": "date-time", "readOnly": true, "type": "string" }, "event_type": { "enum": [ "DISPLAYED", "VIEWED", "ACKNOWLEDGED" ], "example": "VIEWED", "type": "string" }, "id": { "description": "Disclosure ID", "example": "48c2a7f2-5edc-41e6-9f2a-fefac8e94659", "format": "uuid", "type": "string" }, "last_updated_time": { "example": "2021-05-01T23:59:59Z", "format": "date-time", "readOnly": true, "type": "string" }, "timestamp": { "description": "Date of disclosure", "example": "2021-05-01T23:59:59Z", "format": "date-time", "type": "string" }, "type": { "description": "Disclosure Type", "enum": [ "ACH_AUTHORIZATION", "CARDHOLDER_AGREEMENT", "E_SIGN", "KYC_DATA_COLLECTION", "PRIVACY_NOTICE", "REG_CC", "REG_DD", "REG_E", "TERMS_AND_CONDITIONS" ], "example": "REG_DD", "type": "string" }, "version": { "description": "Disclosure Version", "example": "v1.1", "type": "string" } }, "required": [ "type", "version", "timestamp", "event_type" ], "type": "object" }