Skip to main content

Group

This is a data structure that represents a group of actors. It can be used to represent any group of actors or performers, regardless of their field or medium.

Data structure

FieldTypeDescription
typestringThe type of group (e.g. band, team, ensemble, etc.)
locationstringThe location where the group is based or formed
foundedDateThe date when the group was founded
disbandedDateThe date when the group disbanded (if applicable)
reunionDateThe date when the group reunited (if applicable)
membersArray of MembersAn array of objects representing the members of the group

Member

Data structure representing a individual member of a group.

FieldTypeDescription
memberReference of ActorReference of a member actor
rolestringRole within the group

Example

"record":{
"actor":{
"name":"The Best Band",
"shortName":"BestBand",
"headline":"The best rock bank ever",
"resources":[],
"group": {
"type": "band",
"location": "Los Angeles, California",
"founded": "1992-01-01",
"disbanded": "2001-12-31",
"reunion": "2010-12-31",
"members": [
{
"member": "",
"role": "vocal"
},
{
"member": "",
"role": "guitar"
},
]
}
}
}