Kontomatik · JSON Structure

Kontomatik Owner Graph Structure

Top-level structural layout of a Kontomatik owner graph as returned by AIS, PDF parsing, and aggregated data endpoints.

Type: Properties: 0
Open BankingPSD2AISBank Data AggregationCEEKYCCredit ScoringTransaction LabelingPDF Parsing

Kontomatik Owner Graph Structure is a JSON Structure definition published by Kontomatik.

Meta-schema:

JSON Structure

Raw ↑
{
  "title": "KontomatikOwnerGraph",
  "description": "Top-level structural layout of a Kontomatik owner graph as returned by AIS, PDF parsing, and aggregated data endpoints.",
  "structure": {
    "Owner": {
      "fields": ["externalId", "name", "nationalId", "email", "address", "country"],
      "relations": {
        "accounts": "Account[]"
      }
    },
    "Account": {
      "fields": ["number", "currency", "balance", "availableBalance", "bank", "country", "accessMode"],
      "relations": {
        "transactions": "Transaction[]"
      }
    },
    "Transaction": {
      "fields": ["externalId", "date", "amount", "currency", "description", "counterpartyName", "counterpartyAccount", "label", "vendor", "source"]
    }
  },
  "sources": ["AIS", "PDF", "UPLOAD"],
  "aggregationKey": "Owner.externalId"
}