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

FieldTypeRequirementDescription & Details
effectiveDatestringYesEffective Date The date this agreement becomes active (Format: YYYY-MM-DD.)
songTitlestringYesSong Title The title of the musical composition
soundOwnerInformationarray of objectsYesMaster (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).
additionalClausesarray of stringsNoWhat 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"
}