-
Notifications
You must be signed in to change notification settings - Fork 15
Companies
Koen Van Looveren edited this page May 24, 2023
·
8 revisions
Assets will be use to populate the UI
Required assets:
- assets/img/logo.webp
companies/your_company_name
├── assets/img/logo.webp
├── (assets/img/logo.svg)
├── info.json
This JSON object is structured as follows:
{
"name": "Example Company",
"description": "This is an example company description.",
"useLogoInsteadOfTextTitle": false,
"links": {
"website": "https://example-company.com",
"jobWebsite": "https://example-company.com/jobs"
}
}
As you can see, there is no option to set that you are an agency. Right now we detect that the company is an agency if developers worked on a project that the company itself did not publish. (set companyName
in the developer list of a project, to indicate that the company worked on that project) Checkout the documentation here
- Data type: string (required)
- Description: Represents the name of the company.
- Constraints: This should be precisely the same as its parent folder.
- Data type: string (optional)
- Description: Represents a description of the object.
- Constraints: None.
- Default:
null
- Data type: boolean (optional)
- Description: If set to true, the company logo will be used as the title instead of text.
- Constraints: None.
- Default:
false
- Data type: object (optional)
- Description: Represents all links related to the company.
- Constraints: None.
- Default:
null
- Data type: string (optional)
- Description: Represents the marketing website of the company
- Constraints: Should start with
https://
- Default:
null
- Data type: string (optional)
- Description: Represents the job website of the company
- Constraints: Should start with
https://
- Default:
null