A single experience entry with embedded technology badges.
Record Key
any
Any valid record key
Properties
company
string
Required
Company or organization name.
description
string
Required
HTML description rendered by the frontend.
endDate
string
datetime
Optional
Inclusive end date for the role, if completed.
logo
string
uri
Required
Absolute URL for the company logo.
order
integer
Required
Display order for the homepage experience list.
minimum: 0startDate
string
datetime
Required
Inclusive start date for the role.
tech
array
of
unknown
Required
Technology badges associated with the experience.
title
string
Required
Role title for the experience entry.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"order",
"company",
"title",
"description",
"logo",
"tech",
"startDate"
],
"properties": {
"logo": {
"type": "string",
"format": "uri",
"description": "Absolute URL for the company logo."
},
"tech": {
"type": "array",
"items": {
"ref": "#techItem"
},
"description": "Technology badges associated with the experience."
},
"order": {
"type": "integer",
"minimum": 0,
"description": "Display order for the homepage experience list."
},
"title": {
"type": "string",
"description": "Role title for the experience entry."
},
"company": {
"type": "string",
"description": "Company or organization name."
},
"endDate": {
"type": "string",
"format": "datetime",
"description": "Inclusive end date for the role, if completed."
},
"startDate": {
"type": "string",
"format": "datetime",
"description": "Inclusive start date for the role."
},
"description": {
"type": "string",
"description": "HTML description rendered by the frontend."
}
}
},
"description": "A single experience entry with embedded technology badges."
}