Page Summary
-
The content provides details about a vehicle including its make, model, license plate, color, and an image.
-
The
make,model, andlicensePlatefields are required, whilecolorNameandimageare optional. -
The
makeandmodelfields are strings that are displayed to the user and must be localized. -
The
imagefield is an optional object containing a URL to a photo of the vehicle in jpg or png format, displayed at approximately 256x256px.
Details about a vehicle
| JSON representation | |
|---|---|
{
"make": string,
"model": string,
"licensePlate": string,
"colorName": string,
"image": {
object ( |
|
| Fields | |
|---|---|
make |
Vehicle make (e.g. "Honda"). This is displayed to the user and must be localized. Required. |
model |
Vehicle model (e.g. "Grom"). This is displayed to the user and must be localized. Required. |
licensePlate |
Vehicle license plate number (e.g. "1ABC234"). Required. |
colorName |
Vehicle color name, eg. black Optional. |
image |
URL to a photo of the vehicle. The photo will be displayed at approximately 256x256px. Must be a jpg or png. Optional. |