Get input JSON Schema
get_input_schemaReturns the complete JSON Schema for any supported camt.05x message type, detailing all fields, types, and constraints to guide record assembly or UI generation.
Instructions
Return the full JSON Schema for a message type's flat input record.
Use this to learn every field, its type, and its constraints before
assembling records, or to drive a form/UI. For just the required-field
names use ``get_required_fields``; to actually check records against this
schema use ``validate_records``.
Args:
message_type: A supported ISO 20022 camt.05x message type.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message_type | Yes | A supported ISO 20022 camt.05x message type string, e.g. 'camt.053.001.14'. Call list_message_types first to discover the exact accepted values. |