Attribute Naming Convention, Data Types and Formats
Attribute names are case sensitive and use camelCase, a naming convention in which each word within a compound word is capitalized except for the first word. Attribute names do not include dash and underscore characters. For example, note the initial lowercase t
and the uppercase L
and I
for the taxLocationId
ExpenseReport attribute, which corresponds to the tax_location_id
field in the Envelope table described in the SuiteProjects Pro Data Dictionary, or tax_locationid
in the oaEnvelope SOAP API complex type and <Envelope> XML API data type.
The REST API uses data types and formats defined by the OpenAPI Specification (OAS). The OAS identifies four primitive data types: Boolean
, integer
, number
, and string
. Primitive data types have an optional modifier property: format. The REST API uses several known formats to define the data type used for each attribute in the JSON-encoded requests and responses. In this guide and in the generated API reference documentation, the following notation is used to indicate the data type and format: type($format)
.
The following tables shows the data types and formats used by the REST API:
type |
format |
Notation |
Description |
---|---|---|---|
Boolean |
|
|
true / false |
integer |
int64 |
|
long integer |
number |
double |
|
double precision floating point number |
number |
float |
|
single precision floating point number |
string |
|
|
string of unicode code points
Note:
Some SuiteProjects Pro accounts may be configured to use UTF-8 character encoding instead of Latin1. The REST API supports both Latin1 and UTF-8 encoded characters in the response. |
string |
date |
|
string using the date format |
string |
date-time |
|
string using the date-time format
Note:
This format is used for system-generated and read-only fields. The format applies to the following attributes in the data returned: Note however that the |