Artist Management Agreement
Template Overview
- Template ID:
artist-management-agreement - Version: 2.0.0
To generate this document, pass the structured data described below into the data property of the /api/v1/documents/generate endpoint.
Data Payload Schema
| Field | Type | Requirement | Description & Details |
|---|---|---|---|
parties | array of objects | Yes | The entities entering into the agreement. For this template, must contain a minimum of 2 entities. Uses the standard Parties Schema. Each party also takes a definition field: one of "Artist", "Manager". |
setDuration | boolean | No | Is there a duration for this engagement? If there is not diration, the agreement runs until terminated by either party |
duration | string | Conditional | What is the duration of the engagement? Required if setDuration is true. |
commission | string | No | What is the commission rate?(10%) The percentage of the Artist's earnings that the Manager will receive as payment |
sunset | boolean | No | Will there be a sunset clause? A sunset clause is a provision in the agreement that allows the Manager to continue receiving commission on certain earnings of the Artist for a specified period of time after the termination of the agreement. |
firstYear | string | Conditional | What is the commission due to the Manager in the first year after termination? Required if sunset is true. |
secondYear | string | Conditional | What is the commission due to the Manager in the second year after termination? Required if sunset is true. |
thirdYear | string | Conditional | What is the commission due to the Manager in the third year after termination? Required if sunset is true. |
currency | string | No | What is the currency of payment? Options: "NGN", "USD", "GBP", "ZAR", "Others" |
customCurrency | string | Conditional | Insert the currency Required if currency is "Others". |
expense | string | No | What is the Expense limit? The expense limit is the maximum amount that the Manager can spend on behalf of the Artist without prior approval from the Artist. |
earnings | array of strings | No | What is the scope of the Manager's earnings? The scope of the Manager's earnings refers to the specific types of income or revenue streams from which the Manager will receive a commission. This can include earnings from live performances, recording contracts, publishing deals, endorsements, merchandise sales, and other sources related to the Artist's career in the entertainment industry. |
managementObligations | array of strings | No | What are the obligations of the Manager? Enter each of the obligations of the Manager |
artistObligations | array of strings | No | What are the obligations of the Artist? Enter each of the obligations of the Artist |
authority | array of strings | No | What are the authorities of the Manager? Enter each of the authorities of the Manager |
dispute | boolean | No | How will disputes be resolved? Values: true (By Arbitration), false (By the court). |
governingLaw | string | Yes | What is the governing law? Must be a valid value from the Supported Countries list. |
Example JSON Payload
Here is an example of a properly formatted data object for the Artist Management Agreement template.
{
"templateId": "artist-management-agreement",
"data": {
"parties": [
{
"definition": "Artist",
"isCompany": true,
"rcName": "Acme Corp",
"rcAddress": "123 Beta Way",
"rcCountry": "United States",
"rcNumber": "12345678",
"type": "Private Company limited by shares"
},
{
"definition": "Manager",
"isCompany": false,
"fullName": "Joshua",
"address": "789 Alpha Ave",
"rcCountry": "Nigeria"
}
],
"setDuration": true,
"duration": "Sample Duration",
"commission": "Sample Commission",
"sunset": true,
"firstYear": "Sample First Year",
"secondYear": "Sample Second Year",
"thirdYear": "Sample Third Year",
"currency": "NGN",
"expense": "pense limit is the maximum amount that the Manager can spend on behalf of the Artist without prior approval from the Artist",
"earnings": [
"Sample Earnings"
],
"managementObligations": [
"Sample Management Obligations"
],
"artistObligations": [
"Sample Artist Obligations"
],
"authority": [
"Sample Authority"
],
"dispute": true,
"governingLaw": "Nigeria"
},
"format": "pdf"
}
