Hemicycle of the European Parliament, Strasbourg — where Directive 2024/927 (AIFMD II) was adopted on March 13, 2024
European Parliament hemicycle, Strasbourg — AIFMD II adopted here on 13 March 2024 · Photo: Wikimedia Commons / CC BY-SA

AIFMD II Annex IV: What Changes for Your Next Filing

March 31, 2026 · 8 min read · Technical Guide
TL;DR
A note on sources. This article is based on the text of Directive 2024/927 and analysis from EY, PwC, Walkers, and Dechert. The ESMA RTS/ITS defining the new Annex IV reporting template are expected by April 2027. Until those technical standards are published, the exact field specifications, XML schema structure, and reporting format remain subject to change. What follows is what the directive text confirms.

Two Dates, Two Sets of Obligations

AIFMD II creates a split timeline that catches many managers off guard:

This means your operational obligations start now, but the reporting format changes come a year later. You need to be collecting the data today that you will be required to report from 2027.

What the Directive Text Confirms

1. Reporting Scope: From Principal to All

ExpandedArt. 24(1)

Comprehensive Asset and Exposure Reporting

The current Annex IV template requires reporting on “principal” markets, instruments, and top exposures. Directive 2024/927 amends Article 24 to require reporting on all instruments traded, all markets where the AIFM is active, and all exposures and assets for each AIF. This is the single biggest structural change — the reporting scope moves from a summary to a complete picture. (Source: EY, SSC Tech)

2. Delegation Transparency: 8 New Data Points

NewArt. 24(2)

Structured Delegation Disclosures

Article 24 now requires AIFMs to report detailed information on every delegation arrangement. The directive specifies 8 categories of data, confirmed by Walkers and PwC:

  1. Delegate identification — name, domicile, registered office, and whether they have close links with the AIFM
  2. Internal FTEs for portfolio/risk management — number of full-time equivalent staff performing day-to-day management internally
  3. Delegated activities — list and description of portfolio management and risk management functions delegated
  4. Delegation percentage — amount and percentage of the AIF’s assets subject to delegation arrangements for portfolio management
  5. Monitoring FTEs — number of full-time equivalent staff employed to monitor the delegation arrangements
  6. Due diligence evidence — number and dates of periodic due diligence reviews, issues identified, and remediation measures
  7. Sub-delegation details — parallel information for any sub-delegates in the chain
  8. Arrangement dates — commencement and expiry dates of all delegation and sub-delegation arrangements

3. Loan Origination: A New Regulatory Category

NewArt. 15-15d

Loan-Originating AIF Framework

AIFMD II creates a dedicated regulatory framework for loan-originating AIFs — defined as AIFs whose originated loans represent at least 50% of NAV. Key requirements include leverage limits of 175% for open-ended and 300% for closed-ended AIFs (commitment method), single borrower concentration limits, risk retention rules, and ban on “originate to distribute” models. While the detailed Annex IV reporting fields for loan origination are pending ESMA’s technical standards, AIFMs must be operationally compliant from April 2026. Grandfathering applies to pre-April 2024 AIFs until 2029. (Source: Arthur Cox, BCLP)

4. Liquidity Management Tools: Mandatory from April 2026

NewArt. 16(2b), Annex V

At Least Two LMTs for Open-Ended AIFs

AIFMs managing open-ended AIFs must select at least two liquidity management tools from the harmonized list in Annex V (points 2 to 8): suspension of subscriptions/redemptions, redemption gates, extension of notice periods, redemption fees, swing pricing, dual pricing, anti-dilution levies, redemptions in kind, and side pockets. Money market funds may select only one. LMT policies must be disclosed in fund documents including activation scenarios and potential investor impact. This obligation applies from April 16, 2026 — one year before the new reporting template. (Source: Dechert, Paul Hastings)

5. Leverage and Marketing Disclosures

ExpandedArt. 24(1)

Total Leverage per AIF + Cross-Border Distribution

Two additional reporting expansions confirmed in the directive text: AIFMs must report the total amount of leverage employed by each AIF (with specific leverage limits now established for loan-originating AIFs), and must disclose the list of EU member states where AIF units or shares are actually marketed. (Source: Walkers)

What’s Still Pending from ESMA

Several critical details will only be determined when ESMA delivers its technical standards (expected April 2027):

ESMA shall not introduce any additional reporting requirements beyond what the directive mandates. ESMA must also issue a compliance analysis report by April 16, 2029.

Handling the Transition in Code

If you’re building or maintaining an Annex IV XML pipeline, the current ESMA DATAIF v1.2 XSD schema remains valid until the 2027 technical standards are published. The open-annex-iv TypeScript library (Apache 2.0) serializes against the current schema:

import { serializeAnnexIVToXml } from 'open-annex-iv';

const report = {
  aif_identification: {
    reporting_period: { start: '2025-07-01', end: '2025-12-31' },
    aif_name: 'Example Fund I',
    aif_national_code: 'DE000EXA001',
    aif_type: 'PEQF',
    domicile: 'DE',
    inception_date: '2024-01-15',
    aifm_name: 'Example Capital GmbH',
    aifm_lei: '529900EXAMPLE000001',
    reporting_obligation: 'Article 24(1)',
    base_currency: 'EUR',
  },
  investor_concentration: { /* ... */ },
  principal_exposures: { /* ... */ },
  risk_profile: { /* ... */ },
};

const xml = serializeAnnexIVToXml(report);
// Valid ESMA DATAIF v1.2 XML — current schema

When ESMA publishes the new schema, we will update the library to support the expanded field set. In the meantime, start collecting delegation FTE data, LMT activation records, and loan portfolio breakdowns — you will need this data for the 2027 template even though the current schema doesn’t require it.

What to Do Now

  1. Select your LMTs. If you manage open-ended AIFs, you must choose at least 2 tools from Annex V and include them in fund documents. This is a legal obligation from April 16, 2026, not a reporting one.
  2. Audit your delegation arrangements. Start collecting the 8 data points listed above for every delegate and sub-delegate. You will need this data structured and reportable by April 2027.
  3. Classify your loan origination exposure. If originated loans exceed 50% of any AIF’s NAV, you are subject to the new leverage limits (175%/300%) and operational requirements from April 2026. Grandfathering applies to pre-April 2024 AIFs.
  4. Prepare for comprehensive exposure reporting. Start capturing all instruments and markets, not just principal positions. The scope expansion is confirmed — only the reporting format is pending.
  5. Monitor ESMA consultations. The H2 2026 consultation on RTS/ITS will define the exact Annex IV field specifications. Respond to the consultation if the proposed fields affect your reporting operations.

Sources

Caelith tracks these changes for you.

Automated Annex IV XML generation, XSD validation, and NCA filing — built for the AIFMD II transition.

Try the Demo →

Found this useful? Share it with your compliance team.