Xero · Schema

SuperFund

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
SuperFundID string Xero identifier for a super fund
Type object
Name string Name of the super fund
ABN string ABN of the self managed super fund
BSB string BSB of the self managed super fund
AccountNumber string The account number for the self managed super fund.
AccountName string The account name for the self managed super fund.
ElectronicServiceAddress string The electronic service address for the self managed super fund.
EmployerNumber string Some funds assign a unique number to each employer
SPIN string The SPIN of the Regulated SuperFund. This field has been deprecated. It will only be present for legacy superfunds. New superfunds will not have a SPIN value. The USI field should be used instead of S
USI string The USI of the Regulated SuperFund
UpdatedDateUTC string Last modified timestamp
ValidationErrors array Displays array of validation error messages from the API
View JSON Schema on GitHub

JSON Schema

xero-superfund-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SuperFund",
  "title": "SuperFund",
  "type": "object",
  "required": [
    "Type"
  ],
  "properties": {
    "SuperFundID": {
      "description": "Xero identifier for a super fund",
      "type": "string",
      "format": "uuid",
      "example": "bfac31bd-ea62-4fc8-a5e7-7965d9504b15"
    },
    "Type": {
      "$ref": "#/components/schemas/SuperFundType"
    },
    "Name": {
      "description": "Name of the super fund",
      "type": "string",
      "example": "MLC Navigator Retirement Plan - Superannuation Service (including Series 2) (MLC Superannuation Fund)"
    },
    "ABN": {
      "description": "ABN of the self managed super fund",
      "type": "string",
      "example": 40022701955
    },
    "BSB": {
      "description": "BSB of the self managed super fund",
      "type": "string",
      "example": 234324
    },
    "AccountNumber": {
      "description": "The account number for the self managed super fund.",
      "type": "string",
      "example": 234234234
    },
    "AccountName": {
      "description": "The account name for the self managed super fund.",
      "type": "string",
      "example": "Money account"
    },
    "ElectronicServiceAddress": {
      "description": "The electronic service address for the self managed super fund.",
      "type": "string",
      "example": 12345678
    },
    "EmployerNumber": {
      "description": "Some funds assign a unique number to each employer",
      "type": "string",
      "example": 324324
    },
    "SPIN": {
      "description": "The SPIN of the Regulated SuperFund. This field has been deprecated. It will only be present for legacy superfunds. New superfunds will not have a SPIN value. The USI field should be used instead of SPIN.",
      "type": "string",
      "example": 4545445454
    },
    "USI": {
      "description": "The USI of the Regulated SuperFund",
      "type": "string",
      "example": 40022701955001
    },
    "UpdatedDateUTC": {
      "description": "Last modified timestamp",
      "type": "string",
      "readOnly": true,
      "x-is-msdate-time": true,
      "example": "/Date(1583967733054+0000)/"
    },
    "ValidationErrors": {
      "description": "Displays array of validation error messages from the API",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ValidationError"
      }
    }
  }
}