Traiana · Schema

Settlement

A settlement instruction generated from Traiana NetLink netting sessions, representing PvP settlement orchestration for FX and other asset classes.

FintechForeign ExchangePost-Trade ProcessingRisk Management

Properties

Name Type Description
settlementId string Unique identifier for the settlement instruction
nettingSessionId string Identifier of the originating netting session
counterpartyId string Identifier of the counterparty
currencyPair string Currency pair being settled
payAmount number Amount to be paid
payCurrency string ISO 4217 currency code for the pay leg
receiveAmount number Amount to be received
receiveCurrency string ISO 4217 currency code for the receive leg
settlementDate string Settlement value date
status string Current settlement status
settledAt string Timestamp when settlement was completed
createdAt string Timestamp when the instruction was created
View JSON Schema on GitHub

JSON Schema

settlement.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/traiana/refs/heads/main/json-schema/settlement.json",
  "title": "Settlement",
  "description": "A settlement instruction generated from Traiana NetLink netting sessions, representing PvP settlement orchestration for FX and other asset classes.",
  "type": "object",
  "properties": {
    "settlementId": {
      "type": "string",
      "description": "Unique identifier for the settlement instruction"
    },
    "nettingSessionId": {
      "type": "string",
      "description": "Identifier of the originating netting session"
    },
    "counterpartyId": {
      "type": "string",
      "description": "Identifier of the counterparty"
    },
    "currencyPair": {
      "type": "string",
      "description": "Currency pair being settled"
    },
    "payAmount": {
      "type": "number",
      "description": "Amount to be paid"
    },
    "payCurrency": {
      "type": "string",
      "description": "ISO 4217 currency code for the pay leg"
    },
    "receiveAmount": {
      "type": "number",
      "description": "Amount to be received"
    },
    "receiveCurrency": {
      "type": "string",
      "description": "ISO 4217 currency code for the receive leg"
    },
    "settlementDate": {
      "type": "string",
      "format": "date",
      "description": "Settlement value date"
    },
    "status": {
      "type": "string",
      "description": "Current settlement status",
      "enum": ["Pending", "Instructed", "Settled", "Failed"]
    },
    "settledAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when settlement was completed"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the instruction was created"
    }
  },
  "required": ["settlementId", "counterpartyId", "currencyPair", "payAmount", "payCurrency", "receiveAmount", "receiveCurrency", "settlementDate", "status"]
}