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
| Field | Type | Description |
|---|---|---|
| type | string | The type of group (e.g. band, team, ensemble, etc.) |
| location | string | The location where the group is based or formed |
| founded | Date | The date when the group was founded |
| disbanded | Date | The date when the group disbanded (if applicable) |
| reunion | Date | The date when the group reunited (if applicable) |
| members | Array of Members | An array of objects representing the members of the group |
Member
Data structure representing a individual member of a group.
| Field | Type | Description |
|---|---|---|
| member | Reference of Actor | Reference of a member actor |
| role | string | Role 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"
},
]
}
}
}