Xero · Schema

BrandingTheme

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
BrandingThemeID string Xero identifier
Name string Name of branding theme
LogoUrl string The location of the image file used as the logo on this branding theme
Type string Always INVOICE
SortOrder integer Integer – ranked order of branding theme. The default branding theme has a value of 0
CreatedDateUTC string UTC timestamp of creation date of branding theme
View JSON Schema on GitHub

JSON Schema

xero-brandingtheme-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BrandingTheme",
  "title": "BrandingTheme",
  "externalDocs": {
    "url": "http://developer.xero.com/documentation/api/branding-themes/"
  },
  "properties": {
    "BrandingThemeID": {
      "description": "Xero identifier",
      "type": "string",
      "format": "uuid"
    },
    "Name": {
      "description": "Name of branding theme",
      "type": "string"
    },
    "LogoUrl": {
      "description": "The location of the image file used as the logo on this branding theme",
      "type": "string"
    },
    "Type": {
      "description": "Always INVOICE",
      "type": "string",
      "enum": [
        "INVOICE"
      ]
    },
    "SortOrder": {
      "description": "Integer \u2013 ranked order of branding theme. The default branding theme has a value of 0",
      "type": "integer"
    },
    "CreatedDateUTC": {
      "description": "UTC timestamp of creation date of branding theme",
      "type": "string",
      "x-is-msdate-time": true,
      "example": "/Date(1573755038314)/",
      "readOnly": true
    }
  },
  "type": "object"
}