Trading 212 · Schema

ReportResponse

Trading 212 ReportResponse schema

InvestingFinanceTradingStocksPortfolioCommission-FreeISA

Properties

Name Type Description
dataIncluded object
downloadLink string
reportId integer
status string
timeFrom string
timeTo string
View JSON Schema on GitHub

JSON Schema

ReportResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/trading212/refs/heads/main/json-schema/ReportResponse.json",
  "title": "ReportResponse",
  "description": "Trading 212 ReportResponse schema",
  "properties": {
    "dataIncluded": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/trading212/refs/heads/main/json-schema/ReportDataIncluded"
    },
    "downloadLink": {
      "type": "string"
    },
    "reportId": {
      "format": "int64",
      "type": "integer"
    },
    "status": {
      "enum": [
        "Queued",
        "Processing",
        "Running",
        "Canceled",
        "Failed",
        "Finished"
      ],
      "type": "string"
    },
    "timeFrom": {
      "format": "date-time",
      "type": "string"
    },
    "timeTo": {
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}