Song and Sound Recording Split Agreement

Template Overview

  • Template ID: music-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
songWriterInformationarray of objectsYesSongwriters List all songwriters involved in the creation of the song and their ownership percentages. This is usually the creators of the lyrics and/or melody Each entry: songWriter (string), songWriterPercentage (string), performingRightsOrganization (string), ipi (string).
publisherInformationarray of objectsNoPublishers List all publishers involved in the administration of the song and their ownership percentages. This is usually the entities that manage the rights and royalties for the songwriters Each entry: publisher (string), publisherPercentage (string), performingRightsOrganization (string), ipi (string).
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 Song and Sound Recording Split Agreement template.

{
  "templateId": "music-split-sheet",
  "data": {
    "effectiveDate": "2026-06-01",
    "songTitle": "Sample Song Title",
    "songWriterInformation": [
      {
        "songWriter": "Sample Song Writer",
        "songWriterPercentage": "Sample Song Writer Percentage",
        "performingRightsOrganization": "Sample Performing Rights Organization",
        "ipi": "Sample Ipi"
      }
    ],
    "publisherInformation": [
      {
        "publisher": "Sample Publisher",
        "publisherPercentage": "Sample Publisher Percentage",
        "performingRightsOrganization": "Sample Performing Rights Organization",
        "ipi": "Sample Ipi"
      }
    ],
    "soundOwnerInformation": [
      {
        "soundOwner": "Sample Sound Owner",
        "role": "Sample Role",
        "soundOwnerPercentage": "Sample Sound Owner Percentage"
      }
    ],
    "additionalClauses": [
      "Sample Additional Clauses"
    ]
  },
  "format": "pdf"
}