Sound Recording Split Agreement
Template Overview
- Template ID:
recording-split-sheet - 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 |
|---|---|---|---|
effectiveDate | string | Yes | Effective Date The date this agreement becomes active (Format: YYYY-MM-DD.) |
songTitle | string | Yes | Song Title The title of the musical composition |
soundOwnerInformation | array of objects | Yes | Master (sound recording) Owners List all owners of the sound recording (master rights) and their ownership percentages. This can include record labels, artists, producers, or any other parties that have a stake in the sound recording itself Each entry: soundOwner (string), role (string), soundOwnerPercentage (string). |
additionalClauses | array of strings | No | What are the clause(s) that you want to add to the agreement? |
Example JSON Payload
Here is an example of a properly formatted data object for the Sound Recording Split Agreement template.
{
"templateId": "recording-split-sheet",
"data": {
"effectiveDate": "2026-06-01",
"songTitle": "Sample Song Title",
"soundOwnerInformation": [
{
"soundOwner": "Sample Sound Owner",
"role": "Sample Role",
"soundOwnerPercentage": "Sample Sound Owner Percentage"
}
],
"additionalClauses": [
"Sample Additional Clauses"
]
},
"format": "pdf"
}
