Skip to content
Giancarlo Pernudi Segura edited this page Dec 22, 2022 · 1 revision

Data

File location: @data/about.json

Schema

root

Field Type Description
description String Description of the club.
people People[] Information about an executive

People

Field Type Description
name String The full name of the executive.
emoji String An emoji to show beside their name.
position String Their position among the executives.
description String A description of the executive.
github String Their GitHub username.
slack String Their Slack handle.

Example

{
	"description": "lorem ipsum",
	"people": [
		{
			"name": "Boaty McBoatface",
			"emoji": "🛥",
			"position": "Mascot",
			"description": "lorem ispum",
			"github": "username",
			"slack": "boaty"
		}
	]
}
Clone this wiki locally