diff --git a/documentation/properties/hedge_type.md b/documentation/properties/hedge_type.md index 9aba0eb0..dfb3fdaf 100644 --- a/documentation/properties/hedge_type.md +++ b/documentation/properties/hedge_type.md @@ -1,7 +1,7 @@ --- layout: property title: "hedge_type" -schemas: [derivative, loan] +schemas: [account, derivative, loan, security] --- # hedge_type @@ -22,7 +22,8 @@ For PRA-regulated entities, this field also supports compliance with Article 123 │ └── fv_hedge │ ├── portfolio_fv_hedge │ │ └── portfolio_fv_hedge_eco -│ └── fv_hedge_eco +│ └── fv_hedge_eco +├── net_inv_hedge ├── natural_hedge └── unhedged ``` @@ -45,6 +46,9 @@ Fair value hedge designation. ### fv_hedge_eco Fair value with an economic hedge designation. +### net_inv_hedge +hedge of the foreign currency exposure arising from the net investment in a foreign operation. + ### portfolio_cf_hedge Cash flow hedge designation for a portfolio of financial assets or financial liabilities. @@ -68,4 +72,4 @@ For additional details refer to: - https://asc.fasb.org/1943274/2147480682/815-20-25-12A - https://asc.fasb.org/1943274/2147480682/815-10-25-15 ---- \ No newline at end of file +--- diff --git a/schemas/account.json b/schemas/account.json index 031aa24f..dc1df851 100644 --- a/schemas/account.json +++ b/schemas/account.json @@ -319,6 +319,25 @@ "description": "The unique identifier for the guarantor within the financial institution.", "type": "string" }, + "hedge_type": { + "description": "The type of hedge (fair value or cash flow hedge or net_inv_hedge) associated with the holding. Whether it is hedging individually or is hedging as part of a portfolio of assets with similar risk that are hedged as a group in line with ASC 815-20-25-12 (b), ASC 815-20-2512A, or ASC 815-10-25-15.\n\nhttps://asc.fasb.org/1943274/2147480682/815-20-25-12\nhttps://asc.fasb.org/1943274/2147480682/815-20-25-12A\nhttps://asc.fasb.org/1943274/2147480682/815-10-25-15", + "type": "string", + "enum": [ + "cf_hedge", + "cf_hedge_eco", + "combined", + "financial_hedge", + "fv_hedge", + "fv_hedge_eco", + "natural_hedge", + "net_inv_hedge", + "portfolio_cf_hedge", + "portfolio_cf_hedge_eco", + "portfolio_fv_hedge", + "portfolio_fv_hedge_eco", + "unhedged" + ] + }, "impairment_amount": { "description": "The impairment amount is the allowance set aside by the firm that accounts for the event that the asset becomes impaired in the future.", "type": "integer", diff --git a/schemas/derivative.json b/schemas/derivative.json index 93457663..cf8d0da1 100644 --- a/schemas/derivative.json +++ b/schemas/derivative.json @@ -195,6 +195,7 @@ "fv_hedge", "fv_hedge_eco", "natural_hedge", + "net_inv_hedge", "portfolio_cf_hedge", "portfolio_cf_hedge_eco", "portfolio_fv_hedge", diff --git a/schemas/loan.json b/schemas/loan.json index 072a7c47..7a68a751 100644 --- a/schemas/loan.json +++ b/schemas/loan.json @@ -348,6 +348,7 @@ "fv_hedge", "fv_hedge_eco", "natural_hedge", + "net_inv_hedge", "portfolio_cf_hedge", "portfolio_cf_hedge_eco", "portfolio_fv_hedge", diff --git a/schemas/security.json b/schemas/security.json index 0e8e5507..a70c90f6 100644 --- a/schemas/security.json +++ b/schemas/security.json @@ -419,6 +419,25 @@ "type": "string", "description": "Unique identifier that establishes a relational link between a security and its associated derivative hedge. Enables consistent tracking, aggregation, and reconciliation of hedged positions across systems and datasets." }, + "hedge_type": { + "description": "The type of hedge (fair value or cash flow hedge or net_inv_hedge) associated with the holding. Whether it is hedging individually or is hedging as part of a portfolio of assets with similar risk that are hedged as a group in line with ASC 815-20-25-12 (b), ASC 815-20-2512A, or ASC 815-10-25-15.\n\nhttps://asc.fasb.org/1943274/2147480682/815-20-25-12\nhttps://asc.fasb.org/1943274/2147480682/815-20-25-12A\nhttps://asc.fasb.org/1943274/2147480682/815-10-25-15", + "type": "string", + "enum": [ + "cf_hedge", + "cf_hedge_eco", + "combined", + "financial_hedge", + "fv_hedge", + "fv_hedge_eco", + "natural_hedge", + "net_inv_hedge", + "portfolio_cf_hedge", + "portfolio_cf_hedge_eco", + "portfolio_fv_hedge", + "portfolio_fv_hedge_eco", + "unhedged" + ] + }, "hedged_percentage": { "description": "In the case of a designated fair value hedge, the portion of the asset being hedged, as determined according to ASC 815-20-25-12 (b) and ASC 815-20-25-12A.", "type": "number",