Intuit · Schema

CustomField

Custom field defined for the entity

AccountingCustom FieldsFinancialFinancial ServicesInvoicingPaymentsPayrollProject ManagementSales TaxSmall BusinessTaxTax PreparationTaxesTime TrackingFortune 1000

Properties

Name Type Description
DefinitionId string Unique identifier of the custom field definition
Name string Name of the custom field
Type string Data type of the custom field
StringValue string Value when Type is StringType
View JSON Schema on GitHub

JSON Schema

quickbooks-accounting-custom-field-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CustomField",
  "type": "object",
  "description": "Custom field defined for the entity",
  "properties": {
    "DefinitionId": {
      "type": "string",
      "description": "Unique identifier of the custom field definition"
    },
    "Name": {
      "type": "string",
      "description": "Name of the custom field"
    },
    "Type": {
      "type": "string",
      "description": "Data type of the custom field"
    },
    "StringValue": {
      "type": "string",
      "description": "Value when Type is StringType"
    }
  }
}