JSON Serialization#
The json default serialization schema is listed in the following table| Type | OpenAPI type | OpenAPI format |
|---|
| int | integer | int32 |
| long | integer | int64 |
| short | integer | int16 |
| byte | integer | uint8 |
| float | number | float |
| double | number | double |
| decimal | number | double |
| bool | boolean | |
| string | string | |
| char | string | char |
| byte[] | string | byte |
| DateTimeOffset | string ("yyyy-mm-ddThh:mm:ssZ") | date-time |
| DateOnly | string ("yyyy-mm-ddT") | date |
| TimeOnly | string | time |
| Uri | string | uri |
| Guid | string | uuid |
Please note that for all date or datetime types the default format is "yyyy-mm-ddT{hh:mm:ss}Z"
All endpoints accepts as optional header the Culture and TimezoneThe Culture header specifies the culture of string resources (string translations).Allowed values: pt-PT, pt-BR, en-GB, en-US, it-IT
The Timezone header specifies the timezone applied in dates and times formating (IANA format)When sent this optional parameter indicates the system to automatically convert any returned datetime to the timezone specified, or convert to utc any posted datetime to the specified timezone
Modified at 2025-04-10 08:41:32