ISWC Database Agency REST API

API change history

ISWC Database Agency/Society REST API

Add a batch of new ISWC submissions to the database

Add a batch of new ISWC submissions to the database

Try it

Request

Request URL

Request headers

  • (optional)
    string
    Media type of the body sent to the API.
  • string
    Subscription key which provides access to this API. Found in your Profile.

Request body

Array of ISWC submission objects that need to be added to the ISWC Database

[
  {
    "submissionId": 0,
    "submission": {
      "agency": "string",
      "sourcedb": 0,
      "workcode": "string",
      "category": "DOM",
      "disambiguation": true,
      "disambiguationReason": "DIT",
      "disambiguateFrom": [
        {
          "iswc": "string"
        }
      ],
      "bvltr": "Background",
      "derivedWorkType": "ModifiedVersion",
      "derivedFromIswcs": [
        {
          "iswc": "string",
          "title": "string"
        }
      ],
      "performers": [
        {
          "firstName": "string",
          "lastName": "string"
        }
      ],
      "instrumentation": [
        {
          "code": "string"
        }
      ],
      "cisnetCreatedDate": "string",
      "cisnetLastModifiedDate": "string",
      "additionalIdentifiers": {
        "isrcs": [
          "string"
        ],
        "publisherIdentifiers": [
          {
            "nameNumber": 0,
            "submitterCode": "string",
            "workCode": [
              "string"
            ]
          }
        ],
        "agencyWorkCodes": [
          {
            "agency": "string",
            "workCode": "string"
          }
        ]
      },
      "iswc": "string",
      "originalTitle": "string",
      "otherTitles": [
        {
          "title": "string",
          "type": "CT"
        }
      ],
      "interestedParties": [
        {
          "name": "string",
          "lastName": "string",
          "nameNumber": 0,
          "baseNumber": "string",
          "affiliation": "string",
          "role": "CA",
          "legalEntityType": "N"
        }
      ],
      "preferredIswc": "string",
      "previewDisambiguation": true,
      "disableAddUpdateSwitching": true,
      "allowProvidedIswc": true,
      "detailLevel": "full"
    },
    "multipleAgencyWorkCodes": [
      {
        "agency": "string",
        "workCode": "string"
      }
    ],
    "rejection": {
      "code": "string",
      "message": "string"
    }
  }
]
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "submissionId": {
        "type": "integer",
        "description": "A unique submission identifier for this request. The same identifier will be populated for the submission in the response.",
        "format": "int32"
      },
      "submission": {
        "allOf": [
          {
            "required": [
              "agency",
              "sourcedb",
              "workcode",
              "category",
              "originalTitle",
              "interestedParties"
            ],
            "allOf": [
              {
                "required": [
                  "originalTitle",
                  "interestedParties"
                ],
                "properties": {
                  "iswc": {
                    "pattern": "T[0-9]{10}",
                    "type": "string"
                  },
                  "agency": {
                    "maxLength": 3,
                    "minLength": 3,
                    "type": "string",
                    "description": "A CISAC code of a submitting agency that allocated this ISWC"
                  },
                  "originalTitle": {
                    "type": "string",
                    "description": "Original title of a musical composition"
                  },
                  "otherTitles": {
                    "type": "array",
                    "items": {
                      "required": [
                        "title",
                        "type"
                      ],
                      "type": "object",
                      "properties": {
                        "title": {
                          "type": "string",
                          "description": "Musical work title"
                        },
                        "type": {
                          "enum": [
                            "CT",
                            "OT",
                            "RT",
                            "AT",
                            "ET",
                            "ST",
                            "TO",
                            "OA",
                            "TE",
                            "FT",
                            "IT",
                            "TT",
                            "PT",
                            "OL",
                            "AL"
                          ],
                          "type": "string",
                          "description": "Musical work title type"
                        }
                      }
                    },
                    "description": "Other titles associated with musical composition (aka alternative titles)"
                  },
                  "interestedParties": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "lastName": {
                          "type": "string"
                        },
                        "nameNumber": {
                          "type": "integer",
                          "format": "int64"
                        },
                        "baseNumber": {
                          "type": "string"
                        },
                        "affiliation": {
                          "type": "string"
                        },
                        "role": {
                          "enum": [
                            "CA",
                            "AR",
                            "SE",
                            "PA",
                            "ES",
                            "AM",
                            "SA",
                            "C",
                            "AD",
                            "A",
                            "E",
                            "AQ",
                            "SR",
                            "TR",
                            "MA",
                            "TA"
                          ],
                          "type": "string",
                          "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                        },
                        "legalEntityType": {
                          "enum": [
                            "N",
                            "L"
                          ],
                          "type": "string"
                        }
                      }
                    },
                    "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                  }
                }
              },
              {
                "type": "object"
              }
            ],
            "properties": {
              "agency": {
                "maxLength": 3,
                "minLength": 3,
                "type": "string"
              },
              "sourcedb": {
                "type": "integer",
                "format": "int32"
              },
              "workcode": {
                "type": "string"
              },
              "category": {
                "enum": [
                  "DOM",
                  "INT"
                ],
                "type": "string"
              },
              "disambiguation": {
                "type": "boolean"
              },
              "disambiguationReason": {
                "enum": [
                  "DIT",
                  "DIA",
                  "DIE",
                  "DIC",
                  "DIP",
                  "DIV"
                ],
                "type": "string",
                "description": "Disambiguation Reason Code"
              },
              "disambiguateFrom": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "iswc": {
                      "pattern": "T[0-9]{10}",
                      "type": "string"
                    }
                  }
                }
              },
              "bvltr": {
                "enum": [
                  "Background",
                  "Logo",
                  "Theme",
                  "Visual",
                  "RolledUpCue"
                ],
                "type": "string",
                "description": "Background, Logo, Theme, Visual or Rolled Up Cue"
              },
              "derivedWorkType": {
                "enum": [
                  "ModifiedVersion",
                  "Excerpt",
                  "Composite"
                ],
                "type": "string",
                "description": "Derived Work Type- if not provided then this isn't a derived work"
              },
              "derivedFromIswcs": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "iswc": {
                      "pattern": "T[0-9]{10}",
                      "type": "string"
                    },
                    "title": {
                      "type": "string"
                    }
                  }
                }
              },
              "performers": {
                "type": "array",
                "items": {
                  "required": [
                    "lastName"
                  ],
                  "type": "object",
                  "properties": {
                    "firstName": {
                      "maxLength": 50,
                      "minLength": 1,
                      "type": "string"
                    },
                    "lastName": {
                      "maxLength": 50,
                      "minLength": 1,
                      "type": "string"
                    }
                  }
                }
              },
              "instrumentation": {
                "type": "array",
                "items": {
                  "required": [
                    "code"
                  ],
                  "type": "object",
                  "properties": {
                    "code": {
                      "maxLength": 3,
                      "minLength": 1,
                      "type": "string"
                    }
                  }
                }
              },
              "cisnetCreatedDate": {
                "type": "string",
                "description": "Date and time when this metadata was created on CISNET",
                "format": "date-time"
              },
              "cisnetLastModifiedDate": {
                "type": "string",
                "description": "Date and time when this metadata last modified on CISNET",
                "format": "date-time"
              },
              "additionalIdentifiers": {
                "type": "object",
                "properties": {
                  "isrcs": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "publisherIdentifiers": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "nameNumber": {
                          "type": "integer",
                          "format": "int64"
                        },
                        "submitterCode": {
                          "type": "string"
                        },
                        "workCode": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "agencyWorkCodes": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "agency": {
                          "maxLength": 3,
                          "minLength": 3,
                          "type": "string"
                        },
                        "workCode": {
                          "maxLength": 20,
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "description": "Optional list of additional identifiers that can be supplied with the submission."
              }
            }
          },
          {
            "type": "object",
            "properties": {
              "preferredIswc": {
                "pattern": "T[0-9]{10}",
                "type": "string",
                "description": "The preferred ISWC"
              },
              "previewDisambiguation": {
                "type": "boolean",
                "description": "If this field is set to true, the submission will not be saved to the ISWC database if there are multiple matches. If this field is set to false or is not provided, the submission will be saved to the ISWC database."
              },
              "disableAddUpdateSwitching": {
                "type": "boolean",
                "description": "If this field is set to true, the submission will be rejected if a submission already exists for the provided Agency Work Code."
              },
              "allowProvidedIswc": {
                "type": "boolean",
                "description": "If this field is set to false, the submission will be rejected if the preferredIswc value cannot be found in the database. If this field is set to true and the preferredIswc value cannot be found in the database, a new ISWC record will be created with the value provided."
              },
              "detailLevel": {
                "enum": [
                  "full",
                  "core"
                ],
                "type": "string",
                "description": "Allow the return of limited ISWC metadata"
              }
            }
          }
        ]
      },
      "multipleAgencyWorkCodes": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "agency": {
              "maxLength": 3,
              "minLength": 3,
              "type": "string"
            },
            "workCode": {
              "maxLength": 20,
              "type": "string"
            }
          }
        }
      },
      "rejection": {
        "required": [
          "code",
          "message"
        ],
        "properties": {
          "code": {
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        }
      }
    },
    "xml": {
      "name": "Submission"
    }
  },
  "x-apim-inline": true
}
<SubmissionBatch> <Submission> <submissionId>0</submissionId> <submission> <agency>string</agency> <sourcedb>0</sourcedb> <workcode>string</workcode> <category>DOM</category> <disambiguation>true</disambiguation> <disambiguationReason>DIT</disambiguationReason> <disambiguateFrom> <iswc>string</iswc> </disambiguateFrom> <bvltr>Background</bvltr> <derivedWorkType>ModifiedVersion</derivedWorkType> <derivedFromIswcs> <iswc>string</iswc> <title>string</title> </derivedFromIswcs> <performers> <firstName>string</firstName> <lastName>string</lastName> </performers> <instrumentation> <code>string</code> </instrumentation> <cisnetCreatedDate>string</cisnetCreatedDate> <cisnetLastModifiedDate>string</cisnetLastModifiedDate> <additionalIdentifiers> <isrcs>string</isrcs> <publisherIdentifiers> <nameNumber>0</nameNumber> <submitterCode>string</submitterCode> <workCode>string</workCode> </publisherIdentifiers> <agencyWorkCodes> <agency>string</agency> <workCode>string</workCode> </agencyWorkCodes> </additionalIdentifiers> <iswc>string</iswc> <agency>string</agency> <originalTitle>string</originalTitle> <otherTitles> <title>string</title> <type>CT</type> </otherTitles> <interestedParties> <name>string</name> <lastName>string</lastName> <nameNumber>0</nameNumber> <baseNumber>string</baseNumber> <affiliation>string</affiliation> <role>CA</role> <legalEntityType>N</legalEntityType> </interestedParties> <preferredIswc>string</preferredIswc> <previewDisambiguation>true</previewDisambiguation> <disableAddUpdateSwitching>true</disableAddUpdateSwitching> <allowProvidedIswc>true</allowProvidedIswc> <detailLevel>full</detailLevel> </submission> <multipleAgencyWorkCodes> <agency>string</agency> <workCode>string</workCode> </multipleAgencyWorkCodes> <rejection> <code>string</code> <message>string</message> </rejection> </Submission> </SubmissionBatch>
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "submissionId": {
        "type": "integer",
        "description": "A unique submission identifier for this request. The same identifier will be populated for the submission in the response.",
        "format": "int32"
      },
      "submission": {
        "allOf": [
          {
            "required": [
              "agency",
              "sourcedb",
              "workcode",
              "category",
              "originalTitle",
              "interestedParties"
            ],
            "allOf": [
              {
                "required": [
                  "originalTitle",
                  "interestedParties"
                ],
                "properties": {
                  "iswc": {
                    "pattern": "T[0-9]{10}",
                    "type": "string"
                  },
                  "agency": {
                    "maxLength": 3,
                    "minLength": 3,
                    "type": "string",
                    "description": "A CISAC code of a submitting agency that allocated this ISWC"
                  },
                  "originalTitle": {
                    "type": "string",
                    "description": "Original title of a musical composition"
                  },
                  "otherTitles": {
                    "type": "array",
                    "items": {
                      "required": [
                        "title",
                        "type"
                      ],
                      "type": "object",
                      "properties": {
                        "title": {
                          "type": "string",
                          "description": "Musical work title"
                        },
                        "type": {
                          "enum": [
                            "CT",
                            "OT",
                            "RT",
                            "AT",
                            "ET",
                            "ST",
                            "TO",
                            "OA",
                            "TE",
                            "FT",
                            "IT",
                            "TT",
                            "PT",
                            "OL",
                            "AL"
                          ],
                          "type": "string",
                          "description": "Musical work title type"
                        }
                      }
                    },
                    "description": "Other titles associated with musical composition (aka alternative titles)"
                  },
                  "interestedParties": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "lastName": {
                          "type": "string"
                        },
                        "nameNumber": {
                          "type": "integer",
                          "format": "int64"
                        },
                        "baseNumber": {
                          "type": "string"
                        },
                        "affiliation": {
                          "type": "string"
                        },
                        "role": {
                          "enum": [
                            "CA",
                            "AR",
                            "SE",
                            "PA",
                            "ES",
                            "AM",
                            "SA",
                            "C",
                            "AD",
                            "A",
                            "E",
                            "AQ",
                            "SR",
                            "TR",
                            "MA",
                            "TA"
                          ],
                          "type": "string",
                          "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                        },
                        "legalEntityType": {
                          "enum": [
                            "N",
                            "L"
                          ],
                          "type": "string"
                        }
                      }
                    },
                    "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                  }
                }
              },
              {
                "type": "object"
              }
            ],
            "properties": {
              "agency": {
                "maxLength": 3,
                "minLength": 3,
                "type": "string"
              },
              "sourcedb": {
                "type": "integer",
                "format": "int32"
              },
              "workcode": {
                "type": "string"
              },
              "category": {
                "enum": [
                  "DOM",
                  "INT"
                ],
                "type": "string"
              },
              "disambiguation": {
                "type": "boolean"
              },
              "disambiguationReason": {
                "enum": [
                  "DIT",
                  "DIA",
                  "DIE",
                  "DIC",
                  "DIP",
                  "DIV"
                ],
                "type": "string",
                "description": "Disambiguation Reason Code"
              },
              "disambiguateFrom": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "iswc": {
                      "pattern": "T[0-9]{10}",
                      "type": "string"
                    }
                  }
                }
              },
              "bvltr": {
                "enum": [
                  "Background",
                  "Logo",
                  "Theme",
                  "Visual",
                  "RolledUpCue"
                ],
                "type": "string",
                "description": "Background, Logo, Theme, Visual or Rolled Up Cue"
              },
              "derivedWorkType": {
                "enum": [
                  "ModifiedVersion",
                  "Excerpt",
                  "Composite"
                ],
                "type": "string",
                "description": "Derived Work Type- if not provided then this isn't a derived work"
              },
              "derivedFromIswcs": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "iswc": {
                      "pattern": "T[0-9]{10}",
                      "type": "string"
                    },
                    "title": {
                      "type": "string"
                    }
                  }
                }
              },
              "performers": {
                "type": "array",
                "items": {
                  "required": [
                    "lastName"
                  ],
                  "type": "object",
                  "properties": {
                    "firstName": {
                      "maxLength": 50,
                      "minLength": 1,
                      "type": "string"
                    },
                    "lastName": {
                      "maxLength": 50,
                      "minLength": 1,
                      "type": "string"
                    }
                  }
                }
              },
              "instrumentation": {
                "type": "array",
                "items": {
                  "required": [
                    "code"
                  ],
                  "type": "object",
                  "properties": {
                    "code": {
                      "maxLength": 3,
                      "minLength": 1,
                      "type": "string"
                    }
                  }
                }
              },
              "cisnetCreatedDate": {
                "type": "string",
                "description": "Date and time when this metadata was created on CISNET",
                "format": "date-time"
              },
              "cisnetLastModifiedDate": {
                "type": "string",
                "description": "Date and time when this metadata last modified on CISNET",
                "format": "date-time"
              },
              "additionalIdentifiers": {
                "type": "object",
                "properties": {
                  "isrcs": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "publisherIdentifiers": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "nameNumber": {
                          "type": "integer",
                          "format": "int64"
                        },
                        "submitterCode": {
                          "type": "string"
                        },
                        "workCode": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "agencyWorkCodes": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "agency": {
                          "maxLength": 3,
                          "minLength": 3,
                          "type": "string"
                        },
                        "workCode": {
                          "maxLength": 20,
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "description": "Optional list of additional identifiers that can be supplied with the submission."
              }
            }
          },
          {
            "type": "object",
            "properties": {
              "preferredIswc": {
                "pattern": "T[0-9]{10}",
                "type": "string",
                "description": "The preferred ISWC"
              },
              "previewDisambiguation": {
                "type": "boolean",
                "description": "If this field is set to true, the submission will not be saved to the ISWC database if there are multiple matches. If this field is set to false or is not provided, the submission will be saved to the ISWC database."
              },
              "disableAddUpdateSwitching": {
                "type": "boolean",
                "description": "If this field is set to true, the submission will be rejected if a submission already exists for the provided Agency Work Code."
              },
              "allowProvidedIswc": {
                "type": "boolean",
                "description": "If this field is set to false, the submission will be rejected if the preferredIswc value cannot be found in the database. If this field is set to true and the preferredIswc value cannot be found in the database, a new ISWC record will be created with the value provided."
              },
              "detailLevel": {
                "enum": [
                  "full",
                  "core"
                ],
                "type": "string",
                "description": "Allow the return of limited ISWC metadata"
              }
            }
          }
        ]
      },
      "multipleAgencyWorkCodes": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "agency": {
              "maxLength": 3,
              "minLength": 3,
              "type": "string"
            },
            "workCode": {
              "maxLength": 20,
              "type": "string"
            }
          }
        }
      },
      "rejection": {
        "required": [
          "code",
          "message"
        ],
        "properties": {
          "code": {
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        }
      }
    },
    "xml": {
      "name": "Submission"
    }
  },
  "xml": {
    "name": "SubmissionBatch",
    "wrapped": true
  },
  "x-apim-inline": true
}

Responses

207 Multi-Status

Submissions processed

Representations

[
  {
    "submissionId": 0,
    "submission": {
      "verifiedSubmission": {
        "id": 0,
        "iswc": "string",
        "iswcEligible": true,
        "deleted": true,
        "linkedFrom": "string",
        "linkedTo": "string",
        "rejection": {
          "code": "string",
          "message": "string"
        },
        "archivedIswc": "string",
        "overallParentISWC": "string",
        "agency": "string",
        "sourcedb": 0,
        "workcode": "string",
        "category": "DOM",
        "disambiguation": true,
        "disambiguationReason": "DIT",
        "disambiguateFrom": [
          {
            "iswc": "string"
          }
        ],
        "bvltr": "Background",
        "derivedWorkType": "ModifiedVersion",
        "derivedFromIswcs": [
          {
            "iswc": "string",
            "title": "string"
          }
        ],
        "performers": [
          {
            "firstName": "string",
            "lastName": "string"
          }
        ],
        "instrumentation": [
          {
            "code": "string"
          }
        ],
        "cisnetCreatedDate": "string",
        "cisnetLastModifiedDate": "string",
        "additionalIdentifiers": {
          "isrcs": [
            "string"
          ],
          "publisherIdentifiers": [
            {
              "nameNumber": 0,
              "submitterCode": "string",
              "workCode": [
                "string"
              ]
            }
          ],
          "agencyWorkCodes": [
            {
              "agency": "string",
              "workCode": "string"
            }
          ]
        },
        "originalTitle": "string",
        "otherTitles": [
          {
            "title": "string",
            "type": "CT"
          }
        ],
        "interestedParties": [
          {
            "name": "string",
            "lastName": "string",
            "nameNumber": 0,
            "baseNumber": "string",
            "affiliation": "string",
            "role": "CA",
            "legalEntityType": "N"
          }
        ],
        "createdDate": "string",
        "lastModifiedDate": "string",
        "lastModifiedBy": "string"
      },
      "linkedIswcs": [
        {
          "linkedReason": 0,
          "iswcMetadata": {
            "createdDate": "string",
            "lastModifiedDate": "string",
            "lastModifiedBy": "string",
            "iswc": "string",
            "agency": "string",
            "originalTitle": "string",
            "otherTitles": [
              {
                "title": "string",
                "type": "CT"
              }
            ],
            "interestedParties": [
              {
                "name": "string",
                "lastName": "string",
                "nameNumber": 0,
                "baseNumber": "string",
                "affiliation": "string",
                "role": "CA",
                "legalEntityType": "N"
              }
            ],
            "works": [
              {
                "id": 0,
                "iswc": "string",
                "iswcEligible": true,
                "deleted": true,
                "linkedFrom": "string",
                "linkedTo": "string",
                "rejection": {
                  "code": "string",
                  "message": "string"
                },
                "archivedIswc": "string",
                "overallParentISWC": "string",
                "agency": "string",
                "sourcedb": 0,
                "workcode": "string",
                "category": "DOM",
                "disambiguation": true,
                "disambiguationReason": "DIT",
                "disambiguateFrom": [
                  {
                    "iswc": "string"
                  }
                ],
                "bvltr": "Background",
                "derivedWorkType": "ModifiedVersion",
                "derivedFromIswcs": [
                  {
                    "iswc": "string",
                    "title": "string"
                  }
                ],
                "performers": [
                  {
                    "firstName": "string",
                    "lastName": "string"
                  }
                ],
                "instrumentation": [
                  {
                    "code": "string"
                  }
                ],
                "cisnetCreatedDate": "string",
                "cisnetLastModifiedDate": "string",
                "additionalIdentifiers": {
                  "isrcs": [
                    "string"
                  ],
                  "publisherIdentifiers": [
                    {
                      "nameNumber": 0,
                      "submitterCode": "string",
                      "workCode": [
                        "string"
                      ]
                    }
                  ],
                  "agencyWorkCodes": [
                    {
                      "agency": "string",
                      "workCode": "string"
                    }
                  ]
                },
                "originalTitle": "string",
                "otherTitles": [
                  {
                    "title": "string",
                    "type": "CT"
                  }
                ],
                "interestedParties": [
                  {
                    "name": "string",
                    "lastName": "string",
                    "nameNumber": 0,
                    "baseNumber": "string",
                    "affiliation": "string",
                    "role": "CA",
                    "legalEntityType": "N"
                  }
                ],
                "createdDate": "string",
                "lastModifiedDate": "string",
                "lastModifiedBy": "string"
              }
            ],
            "parentISWC": "string",
            "linkedISWC": [
              "string"
            ],
            "overallParentISWC": "string"
          }
        }
      ],
      "potentialMatches": [
        {
          "createdDate": "string",
          "lastModifiedDate": "string",
          "lastModifiedBy": "string",
          "iswc": "string",
          "agency": "string",
          "originalTitle": "string",
          "otherTitles": [
            {
              "title": "string",
              "type": "CT"
            }
          ],
          "interestedParties": [
            {
              "name": "string",
              "lastName": "string",
              "nameNumber": 0,
              "baseNumber": "string",
              "affiliation": "string",
              "role": "CA",
              "legalEntityType": "N"
            }
          ],
          "works": [
            {
              "id": 0,
              "iswc": "string",
              "iswcEligible": true,
              "deleted": true,
              "linkedFrom": "string",
              "linkedTo": "string",
              "rejection": {
                "code": "string",
                "message": "string"
              },
              "archivedIswc": "string",
              "overallParentISWC": "string",
              "agency": "string",
              "sourcedb": 0,
              "workcode": "string",
              "category": "DOM",
              "disambiguation": true,
              "disambiguationReason": "DIT",
              "disambiguateFrom": [
                {
                  "iswc": "string"
                }
              ],
              "bvltr": "Background",
              "derivedWorkType": "ModifiedVersion",
              "derivedFromIswcs": [
                {
                  "iswc": "string",
                  "title": "string"
                }
              ],
              "performers": [
                {
                  "firstName": "string",
                  "lastName": "string"
                }
              ],
              "instrumentation": [
                {
                  "code": "string"
                }
              ],
              "cisnetCreatedDate": "string",
              "cisnetLastModifiedDate": "string",
              "additionalIdentifiers": {
                "isrcs": [
                  "string"
                ],
                "publisherIdentifiers": [
                  {
                    "nameNumber": 0,
                    "submitterCode": "string",
                    "workCode": [
                      "string"
                    ]
                  }
                ],
                "agencyWorkCodes": [
                  {
                    "agency": "string",
                    "workCode": "string"
                  }
                ]
              },
              "originalTitle": "string",
              "otherTitles": [
                {
                  "title": "string",
                  "type": "CT"
                }
              ],
              "interestedParties": [
                {
                  "name": "string",
                  "lastName": "string",
                  "nameNumber": 0,
                  "baseNumber": "string",
                  "affiliation": "string",
                  "role": "CA",
                  "legalEntityType": "N"
                }
              ],
              "createdDate": "string",
              "lastModifiedDate": "string",
              "lastModifiedBy": "string"
            }
          ],
          "parentISWC": "string",
          "linkedISWC": [
            "string"
          ],
          "overallParentISWC": "string"
        }
      ],
      "multipleAgencyWorkCodes": [
        {
          "agency": "string",
          "workCode": "string",
          "rejection": {
            "code": "string",
            "message": "string"
          }
        }
      ]
    },
    "rejection": {
      "code": "string",
      "message": "string"
    }
  }
]
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "submissionId": {
        "type": "integer",
        "description": "The value of the submissionID from the request submission.",
        "format": "int32"
      },
      "submission": {
        "type": "object",
        "properties": {
          "verifiedSubmission": {
            "required": [
              "id",
              "iswc",
              "deleted"
            ],
            "allOf": [
              {
                "required": [
                  "agency",
                  "sourcedb",
                  "workcode",
                  "category",
                  "originalTitle",
                  "interestedParties"
                ],
                "allOf": [
                  {
                    "required": [
                      "originalTitle",
                      "interestedParties"
                    ],
                    "properties": {
                      "iswc": {
                        "pattern": "T[0-9]{10}",
                        "type": "string"
                      },
                      "agency": {
                        "maxLength": 3,
                        "minLength": 3,
                        "type": "string",
                        "description": "A CISAC code of a submitting agency that allocated this ISWC"
                      },
                      "originalTitle": {
                        "type": "string",
                        "description": "Original title of a musical composition"
                      },
                      "otherTitles": {
                        "type": "array",
                        "items": {
                          "required": [
                            "title",
                            "type"
                          ],
                          "type": "object",
                          "properties": {
                            "title": {
                              "type": "string",
                              "description": "Musical work title"
                            },
                            "type": {
                              "enum": [
                                "CT",
                                "OT",
                                "RT",
                                "AT",
                                "ET",
                                "ST",
                                "TO",
                                "OA",
                                "TE",
                                "FT",
                                "IT",
                                "TT",
                                "PT",
                                "OL",
                                "AL"
                              ],
                              "type": "string",
                              "description": "Musical work title type"
                            }
                          }
                        },
                        "description": "Other titles associated with musical composition (aka alternative titles)"
                      },
                      "interestedParties": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string"
                            },
                            "lastName": {
                              "type": "string"
                            },
                            "nameNumber": {
                              "type": "integer",
                              "format": "int64"
                            },
                            "baseNumber": {
                              "type": "string"
                            },
                            "affiliation": {
                              "type": "string"
                            },
                            "role": {
                              "enum": [
                                "CA",
                                "AR",
                                "SE",
                                "PA",
                                "ES",
                                "AM",
                                "SA",
                                "C",
                                "AD",
                                "A",
                                "E",
                                "AQ",
                                "SR",
                                "TR",
                                "MA",
                                "TA"
                              ],
                              "type": "string",
                              "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                            },
                            "legalEntityType": {
                              "enum": [
                                "N",
                                "L"
                              ],
                              "type": "string"
                            }
                          }
                        },
                        "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                      }
                    }
                  },
                  {
                    "type": "object"
                  }
                ],
                "properties": {
                  "agency": {
                    "maxLength": 3,
                    "minLength": 3,
                    "type": "string"
                  },
                  "sourcedb": {
                    "type": "integer",
                    "format": "int32"
                  },
                  "workcode": {
                    "type": "string"
                  },
                  "category": {
                    "enum": [
                      "DOM",
                      "INT"
                    ],
                    "type": "string"
                  },
                  "disambiguation": {
                    "type": "boolean"
                  },
                  "disambiguationReason": {
                    "enum": [
                      "DIT",
                      "DIA",
                      "DIE",
                      "DIC",
                      "DIP",
                      "DIV"
                    ],
                    "type": "string",
                    "description": "Disambiguation Reason Code"
                  },
                  "disambiguateFrom": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "iswc": {
                          "pattern": "T[0-9]{10}",
                          "type": "string"
                        }
                      }
                    }
                  },
                  "bvltr": {
                    "enum": [
                      "Background",
                      "Logo",
                      "Theme",
                      "Visual",
                      "RolledUpCue"
                    ],
                    "type": "string",
                    "description": "Background, Logo, Theme, Visual or Rolled Up Cue"
                  },
                  "derivedWorkType": {
                    "enum": [
                      "ModifiedVersion",
                      "Excerpt",
                      "Composite"
                    ],
                    "type": "string",
                    "description": "Derived Work Type- if not provided then this isn't a derived work"
                  },
                  "derivedFromIswcs": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "iswc": {
                          "pattern": "T[0-9]{10}",
                          "type": "string"
                        },
                        "title": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "performers": {
                    "type": "array",
                    "items": {
                      "required": [
                        "lastName"
                      ],
                      "type": "object",
                      "properties": {
                        "firstName": {
                          "maxLength": 50,
                          "minLength": 1,
                          "type": "string"
                        },
                        "lastName": {
                          "maxLength": 50,
                          "minLength": 1,
                          "type": "string"
                        }
                      }
                    }
                  },
                  "instrumentation": {
                    "type": "array",
                    "items": {
                      "required": [
                        "code"
                      ],
                      "type": "object",
                      "properties": {
                        "code": {
                          "maxLength": 3,
                          "minLength": 1,
                          "type": "string"
                        }
                      }
                    }
                  },
                  "cisnetCreatedDate": {
                    "type": "string",
                    "description": "Date and time when this metadata was created on CISNET",
                    "format": "date-time"
                  },
                  "cisnetLastModifiedDate": {
                    "type": "string",
                    "description": "Date and time when this metadata last modified on CISNET",
                    "format": "date-time"
                  },
                  "additionalIdentifiers": {
                    "type": "object",
                    "properties": {
                      "isrcs": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "publisherIdentifiers": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "nameNumber": {
                              "type": "integer",
                              "format": "int64"
                            },
                            "submitterCode": {
                              "type": "string"
                            },
                            "workCode": {
                              "type": "array",
                              "items": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      },
                      "agencyWorkCodes": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "agency": {
                              "maxLength": 3,
                              "minLength": 3,
                              "type": "string"
                            },
                            "workCode": {
                              "maxLength": 20,
                              "type": "string"
                            }
                          }
                        }
                      }
                    },
                    "description": "Optional list of additional identifiers that can be supplied with the submission."
                  }
                }
              },
              {
                "properties": {
                  "createdDate": {
                    "type": "string",
                    "description": "Data and time of creation in the system",
                    "format": "date-time"
                  },
                  "lastModifiedDate": {
                    "type": "string",
                    "description": "Data and time of the latest update in the system",
                    "format": "date-time"
                  },
                  "lastModifiedBy": {
                    "type": "string",
                    "description": "Identifier of the last update in the system"
                  }
                }
              },
              {
                "type": "object"
              }
            ],
            "properties": {
              "id": {
                "type": "integer",
                "description": "An unique identifier assigned by the system",
                "format": "int64"
              },
              "iswc": {
                "description": "A preferred ISWC assigned by the system"
              },
              "iswcEligible": {
                "type": "boolean",
                "description": "Indicator of a submitter being Iswc Eligible"
              },
              "deleted": {
                "type": "boolean",
                "description": "Indicator of a submission being logically deleted on CSINET"
              },
              "linkedFrom": {
                "pattern": "T[0-9]{10}",
                "type": "string",
                "description": "The ISWC record that this is linked from"
              },
              "linkedTo": {
                "pattern": "T[0-9]{10}",
                "type": "string",
                "description": "The ISWC record that this is linked to"
              },
              "rejection": {
                "required": [
                  "code",
                  "message"
                ],
                "properties": {
                  "code": {
                    "type": "string"
                  },
                  "message": {
                    "type": "string"
                  }
                }
              },
              "archivedIswc": {
                "pattern": "T[0-9]{10}",
                "type": "string",
                "description": "The Archived ISWC"
              },
              "overallParentISWC": {
                "pattern": "T[0-9]{10}",
                "type": "string",
                "description": "The preferred ISWC that is at the top of the chain of ISWCs."
              }
            }
          },
          "linkedIswcs": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "linkedReason": {
                  "type": "integer",
                  "format": "int32"
                },
                "iswcMetadata": {
                  "allOf": [
                    {
                      "properties": {
                        "createdDate": {
                          "type": "string",
                          "description": "Data and time of creation in the system",
                          "format": "date-time"
                        },
                        "lastModifiedDate": {
                          "type": "string",
                          "description": "Data and time of the latest update in the system",
                          "format": "date-time"
                        },
                        "lastModifiedBy": {
                          "type": "string",
                          "description": "Identifier of the last update in the system"
                        }
                      }
                    },
                    {
                      "required": [
                        "originalTitle",
                        "interestedParties"
                      ],
                      "properties": {
                        "iswc": {
                          "pattern": "T[0-9]{10}",
                          "type": "string"
                        },
                        "agency": {
                          "maxLength": 3,
                          "minLength": 3,
                          "type": "string",
                          "description": "A CISAC code of a submitting agency that allocated this ISWC"
                        },
                        "originalTitle": {
                          "type": "string",
                          "description": "Original title of a musical composition"
                        },
                        "otherTitles": {
                          "type": "array",
                          "items": {
                            "required": [
                              "title",
                              "type"
                            ],
                            "type": "object",
                            "properties": {
                              "title": {
                                "type": "string",
                                "description": "Musical work title"
                              },
                              "type": {
                                "enum": [
                                  "CT",
                                  "OT",
                                  "RT",
                                  "AT",
                                  "ET",
                                  "ST",
                                  "TO",
                                  "OA",
                                  "TE",
                                  "FT",
                                  "IT",
                                  "TT",
                                  "PT",
                                  "OL",
                                  "AL"
                                ],
                                "type": "string",
                                "description": "Musical work title type"
                              }
                            }
                          },
                          "description": "Other titles associated with musical composition (aka alternative titles)"
                        },
                        "interestedParties": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string"
                              },
                              "lastName": {
                                "type": "string"
                              },
                              "nameNumber": {
                                "type": "integer",
                                "format": "int64"
                              },
                              "baseNumber": {
                                "type": "string"
                              },
                              "affiliation": {
                                "type": "string"
                              },
                              "role": {
                                "enum": [
                                  "CA",
                                  "AR",
                                  "SE",
                                  "PA",
                                  "ES",
                                  "AM",
                                  "SA",
                                  "C",
                                  "AD",
                                  "A",
                                  "E",
                                  "AQ",
                                  "SR",
                                  "TR",
                                  "MA",
                                  "TA"
                                ],
                                "type": "string",
                                "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                              },
                              "legalEntityType": {
                                "enum": [
                                  "N",
                                  "L"
                                ],
                                "type": "string"
                              }
                            }
                          },
                          "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                        }
                      }
                    },
                    {
                      "required": [
                        "iswc",
                        "agency"
                      ],
                      "type": "object",
                      "properties": {
                        "works": {
                          "type": "array",
                          "items": {
                            "required": [
                              "id",
                              "iswc",
                              "deleted"
                            ],
                            "allOf": [
                              {
                                "required": [
                                  "agency",
                                  "sourcedb",
                                  "workcode",
                                  "category",
                                  "originalTitle",
                                  "interestedParties"
                                ],
                                "allOf": [
                                  {
                                    "required": [
                                      "originalTitle",
                                      "interestedParties"
                                    ],
                                    "properties": {
                                      "iswc": {
                                        "pattern": "T[0-9]{10}",
                                        "type": "string"
                                      },
                                      "agency": {
                                        "maxLength": 3,
                                        "minLength": 3,
                                        "type": "string",
                                        "description": "A CISAC code of a submitting agency that allocated this ISWC"
                                      },
                                      "originalTitle": {
                                        "type": "string",
                                        "description": "Original title of a musical composition"
                                      },
                                      "otherTitles": {
                                        "type": "array",
                                        "items": {
                                          "required": [
                                            "title",
                                            "type"
                                          ],
                                          "type": "object",
                                          "properties": {
                                            "title": {
                                              "type": "string",
                                              "description": "Musical work title"
                                            },
                                            "type": {
                                              "enum": [
                                                "CT",
                                                "OT",
                                                "RT",
                                                "AT",
                                                "ET",
                                                "ST",
                                                "TO",
                                                "OA",
                                                "TE",
                                                "FT",
                                                "IT",
                                                "TT",
                                                "PT",
                                                "OL",
                                                "AL"
                                              ],
                                              "type": "string",
                                              "description": "Musical work title type"
                                            }
                                          }
                                        },
                                        "description": "Other titles associated with musical composition (aka alternative titles)"
                                      },
                                      "interestedParties": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "name": {
                                              "type": "string"
                                            },
                                            "lastName": {
                                              "type": "string"
                                            },
                                            "nameNumber": {
                                              "type": "integer",
                                              "format": "int64"
                                            },
                                            "baseNumber": {
                                              "type": "string"
                                            },
                                            "affiliation": {
                                              "type": "string"
                                            },
                                            "role": {
                                              "enum": [
                                                "CA",
                                                "AR",
                                                "SE",
                                                "PA",
                                                "ES",
                                                "AM",
                                                "SA",
                                                "C",
                                                "AD",
                                                "A",
                                                "E",
                                                "AQ",
                                                "SR",
                                                "TR",
                                                "MA",
                                                "TA"
                                              ],
                                              "type": "string",
                                              "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                                            },
                                            "legalEntityType": {
                                              "enum": [
                                                "N",
                                                "L"
                                              ],
                                              "type": "string"
                                            }
                                          }
                                        },
                                        "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                                      }
                                    }
                                  },
                                  {
                                    "type": "object"
                                  }
                                ],
                                "properties": {
                                  "agency": {
                                    "maxLength": 3,
                                    "minLength": 3,
                                    "type": "string"
                                  },
                                  "sourcedb": {
                                    "type": "integer",
                                    "format": "int32"
                                  },
                                  "workcode": {
                                    "type": "string"
                                  },
                                  "category": {
                                    "enum": [
                                      "DOM",
                                      "INT"
                                    ],
                                    "type": "string"
                                  },
                                  "disambiguation": {
                                    "type": "boolean"
                                  },
                                  "disambiguationReason": {
                                    "enum": [
                                      "DIT",
                                      "DIA",
                                      "DIE",
                                      "DIC",
                                      "DIP",
                                      "DIV"
                                    ],
                                    "type": "string",
                                    "description": "Disambiguation Reason Code"
                                  },
                                  "disambiguateFrom": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "iswc": {
                                          "pattern": "T[0-9]{10}",
                                          "type": "string"
                                        }
                                      }
                                    }
                                  },
                                  "bvltr": {
                                    "enum": [
                                      "Background",
                                      "Logo",
                                      "Theme",
                                      "Visual",
                                      "RolledUpCue"
                                    ],
                                    "type": "string",
                                    "description": "Background, Logo, Theme, Visual or Rolled Up Cue"
                                  },
                                  "derivedWorkType": {
                                    "enum": [
                                      "ModifiedVersion",
                                      "Excerpt",
                                      "Composite"
                                    ],
                                    "type": "string",
                                    "description": "Derived Work Type- if not provided then this isn't a derived work"
                                  },
                                  "derivedFromIswcs": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "iswc": {
                                          "pattern": "T[0-9]{10}",
                                          "type": "string"
                                        },
                                        "title": {
                                          "type": "string"
                                        }
                                      }
                                    }
                                  },
                                  "performers": {
                                    "type": "array",
                                    "items": {
                                      "required": [
                                        "lastName"
                                      ],
                                      "type": "object",
                                      "properties": {
                                        "firstName": {
                                          "maxLength": 50,
                                          "minLength": 1,
                                          "type": "string"
                                        },
                                        "lastName": {
                                          "maxLength": 50,
                                          "minLength": 1,
                                          "type": "string"
                                        }
                                      }
                                    }
                                  },
                                  "instrumentation": {
                                    "type": "array",
                                    "items": {
                                      "required": [
                                        "code"
                                      ],
                                      "type": "object",
                                      "properties": {
                                        "code": {
                                          "maxLength": 3,
                                          "minLength": 1,
                                          "type": "string"
                                        }
                                      }
                                    }
                                  },
                                  "cisnetCreatedDate": {
                                    "type": "string",
                                    "description": "Date and time when this metadata was created on CISNET",
                                    "format": "date-time"
                                  },
                                  "cisnetLastModifiedDate": {
                                    "type": "string",
                                    "description": "Date and time when this metadata last modified on CISNET",
                                    "format": "date-time"
                                  },
                                  "additionalIdentifiers": {
                                    "type": "object",
                                    "properties": {
                                      "isrcs": {
                                        "type": "array",
                                        "items": {
                                          "type": "string"
                                        }
                                      },
                                      "publisherIdentifiers": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "nameNumber": {
                                              "type": "integer",
                                              "format": "int64"
                                            },
                                            "submitterCode": {
                                              "type": "string"
                                            },
                                            "workCode": {
                                              "type": "array",
                                              "items": {
                                                "type": "string"
                                              }
                                            }
                                          }
                                        }
                                      },
                                      "agencyWorkCodes": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "agency": {
                                              "maxLength": 3,
                                              "minLength": 3,
                                              "type": "string"
                                            },
                                            "workCode": {
                                              "maxLength": 20,
                                              "type": "string"
                                            }
                                          }
                                        }
                                      }
                                    },
                                    "description": "Optional list of additional identifiers that can be supplied with the submission."
                                  }
                                }
                              },
                              {
                                "properties": {
                                  "createdDate": {
                                    "type": "string",
                                    "description": "Data and time of creation in the system",
                                    "format": "date-time"
                                  },
                                  "lastModifiedDate": {
                                    "type": "string",
                                    "description": "Data and time of the latest update in the system",
                                    "format": "date-time"
                                  },
                                  "lastModifiedBy": {
                                    "type": "string",
                                    "description": "Identifier of the last update in the system"
                                  }
                                }
                              },
                              {
                                "type": "object"
                              }
                            ],
                            "properties": {
                              "id": {
                                "type": "integer",
                                "description": "An unique identifier assigned by the system",
                                "format": "int64"
                              },
                              "iswc": {
                                "description": "A preferred ISWC assigned by the system"
                              },
                              "iswcEligible": {
                                "type": "boolean",
                                "description": "Indicator of a submitter being Iswc Eligible"
                              },
                              "deleted": {
                                "type": "boolean",
                                "description": "Indicator of a submission being logically deleted on CSINET"
                              },
                              "linkedFrom": {
                                "pattern": "T[0-9]{10}",
                                "type": "string",
                                "description": "The ISWC record that this is linked from"
                              },
                              "linkedTo": {
                                "pattern": "T[0-9]{10}",
                                "type": "string",
                                "description": "The ISWC record that this is linked to"
                              },
                              "rejection": {
                                "required": [
                                  "code",
                                  "message"
                                ],
                                "properties": {
                                  "code": {
                                    "type": "string"
                                  },
                                  "message": {
                                    "type": "string"
                                  }
                                }
                              },
                              "archivedIswc": {
                                "pattern": "T[0-9]{10}",
                                "type": "string",
                                "description": "The Archived ISWC"
                              },
                              "overallParentISWC": {
                                "pattern": "T[0-9]{10}",
                                "type": "string",
                                "description": "The preferred ISWC that is at the top of the chain of ISWCs."
                              }
                            }
                          }
                        },
                        "parentISWC": {
                          "pattern": "T[0-9]{10}",
                          "type": "string",
                          "description": "A preferred ISWC of a parent of this ISWC. Presence of this field indicates that the ISWC merged to the parent."
                        },
                        "linkedISWC": {
                          "type": "array",
                          "items": {
                            "pattern": "T[0-9]{10}",
                            "type": "string"
                          },
                          "description": "All linked preferred ISWCs. Presence of this field indicates that those ISWCs merged to this ISWC."
                        },
                        "overallParentISWC": {
                          "pattern": "T[0-9]{10}",
                          "type": "string",
                          "description": "The preferred ISWC that is at the top of the chain of ISWCs."
                        }
                      },
                      "xml": {
                        "name": "ISWCMetadata"
                      }
                    }
                  ]
                }
              }
            }
          },
          "potentialMatches": {
            "type": "array",
            "items": {
              "allOf": [
                {
                  "properties": {
                    "createdDate": {
                      "type": "string",
                      "description": "Data and time of creation in the system",
                      "format": "date-time"
                    },
                    "lastModifiedDate": {
                      "type": "string",
                      "description": "Data and time of the latest update in the system",
                      "format": "date-time"
                    },
                    "lastModifiedBy": {
                      "type": "string",
                      "description": "Identifier of the last update in the system"
                    }
                  }
                },
                {
                  "required": [
                    "originalTitle",
                    "interestedParties"
                  ],
                  "properties": {
                    "iswc": {
                      "pattern": "T[0-9]{10}",
                      "type": "string"
                    },
                    "agency": {
                      "maxLength": 3,
                      "minLength": 3,
                      "type": "string",
                      "description": "A CISAC code of a submitting agency that allocated this ISWC"
                    },
                    "originalTitle": {
                      "type": "string",
                      "description": "Original title of a musical composition"
                    },
                    "otherTitles": {
                      "type": "array",
                      "items": {
                        "required": [
                          "title",
                          "type"
                        ],
                        "type": "object",
                        "properties": {
                          "title": {
                            "type": "string",
                            "description": "Musical work title"
                          },
                          "type": {
                            "enum": [
                              "CT",
                              "OT",
                              "RT",
                              "AT",
                              "ET",
                              "ST",
                              "TO",
                              "OA",
                              "TE",
                              "FT",
                              "IT",
                              "TT",
                              "PT",
                              "OL",
                              "AL"
                            ],
                            "type": "string",
                            "description": "Musical work title type"
                          }
                        }
                      },
                      "description": "Other titles associated with musical composition (aka alternative titles)"
                    },
                    "interestedParties": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "lastName": {
                            "type": "string"
                          },
                          "nameNumber": {
                            "type": "integer",
                            "format": "int64"
                          },
                          "baseNumber": {
                            "type": "string"
                          },
                          "affiliation": {
                            "type": "string"
                          },
                          "role": {
                            "enum": [
                              "CA",
                              "AR",
                              "SE",
                              "PA",
                              "ES",
                              "AM",
                              "SA",
                              "C",
                              "AD",
                              "A",
                              "E",
                              "AQ",
                              "SR",
                              "TR",
                              "MA",
                              "TA"
                            ],
                            "type": "string",
                            "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                          },
                          "legalEntityType": {
                            "enum": [
                              "N",
                              "L"
                            ],
                            "type": "string"
                          }
                        }
                      },
                      "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                    }
                  }
                },
                {
                  "required": [
                    "iswc",
                    "agency"
                  ],
                  "type": "object",
                  "properties": {
                    "works": {
                      "type": "array",
                      "items": {
                        "required": [
                          "id",
                          "iswc",
                          "deleted"
                        ],
                        "allOf": [
                          {
                            "required": [
                              "agency",
                              "sourcedb",
                              "workcode",
                              "category",
                              "originalTitle",
                              "interestedParties"
                            ],
                            "allOf": [
                              {
                                "required": [
                                  "originalTitle",
                                  "interestedParties"
                                ],
                                "properties": {
                                  "iswc": {
                                    "pattern": "T[0-9]{10}",
                                    "type": "string"
                                  },
                                  "agency": {
                                    "maxLength": 3,
                                    "minLength": 3,
                                    "type": "string",
                                    "description": "A CISAC code of a submitting agency that allocated this ISWC"
                                  },
                                  "originalTitle": {
                                    "type": "string",
                                    "description": "Original title of a musical composition"
                                  },
                                  "otherTitles": {
                                    "type": "array",
                                    "items": {
                                      "required": [
                                        "title",
                                        "type"
                                      ],
                                      "type": "object",
                                      "properties": {
                                        "title": {
                                          "type": "string",
                                          "description": "Musical work title"
                                        },
                                        "type": {
                                          "enum": [
                                            "CT",
                                            "OT",
                                            "RT",
                                            "AT",
                                            "ET",
                                            "ST",
                                            "TO",
                                            "OA",
                                            "TE",
                                            "FT",
                                            "IT",
                                            "TT",
                                            "PT",
                                            "OL",
                                            "AL"
                                          ],
                                          "type": "string",
                                          "description": "Musical work title type"
                                        }
                                      }
                                    },
                                    "description": "Other titles associated with musical composition (aka alternative titles)"
                                  },
                                  "interestedParties": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "name": {
                                          "type": "string"
                                        },
                                        "lastName": {
                                          "type": "string"
                                        },
                                        "nameNumber": {
                                          "type": "integer",
                                          "format": "int64"
                                        },
                                        "baseNumber": {
                                          "type": "string"
                                        },
                                        "affiliation": {
                                          "type": "string"
                                        },
                                        "role": {
                                          "enum": [
                                            "CA",
                                            "AR",
                                            "SE",
                                            "PA",
                                            "ES",
                                            "AM",
                                            "SA",
                                            "C",
                                            "AD",
                                            "A",
                                            "E",
                                            "AQ",
                                            "SR",
                                            "TR",
                                            "MA",
                                            "TA"
                                          ],
                                          "type": "string",
                                          "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                                        },
                                        "legalEntityType": {
                                          "enum": [
                                            "N",
                                            "L"
                                          ],
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                                  }
                                }
                              },
                              {
                                "type": "object"
                              }
                            ],
                            "properties": {
                              "agency": {
                                "maxLength": 3,
                                "minLength": 3,
                                "type": "string"
                              },
                              "sourcedb": {
                                "type": "integer",
                                "format": "int32"
                              },
                              "workcode": {
                                "type": "string"
                              },
                              "category": {
                                "enum": [
                                  "DOM",
                                  "INT"
                                ],
                                "type": "string"
                              },
                              "disambiguation": {
                                "type": "boolean"
                              },
                              "disambiguationReason": {
                                "enum": [
                                  "DIT",
                                  "DIA",
                                  "DIE",
                                  "DIC",
                                  "DIP",
                                  "DIV"
                                ],
                                "type": "string",
                                "description": "Disambiguation Reason Code"
                              },
                              "disambiguateFrom": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "iswc": {
                                      "pattern": "T[0-9]{10}",
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "bvltr": {
                                "enum": [
                                  "Background",
                                  "Logo",
                                  "Theme",
                                  "Visual",
                                  "RolledUpCue"
                                ],
                                "type": "string",
                                "description": "Background, Logo, Theme, Visual or Rolled Up Cue"
                              },
                              "derivedWorkType": {
                                "enum": [
                                  "ModifiedVersion",
                                  "Excerpt",
                                  "Composite"
                                ],
                                "type": "string",
                                "description": "Derived Work Type- if not provided then this isn't a derived work"
                              },
                              "derivedFromIswcs": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "iswc": {
                                      "pattern": "T[0-9]{10}",
                                      "type": "string"
                                    },
                                    "title": {
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "performers": {
                                "type": "array",
                                "items": {
                                  "required": [
                                    "lastName"
                                  ],
                                  "type": "object",
                                  "properties": {
                                    "firstName": {
                                      "maxLength": 50,
                                      "minLength": 1,
                                      "type": "string"
                                    },
                                    "lastName": {
                                      "maxLength": 50,
                                      "minLength": 1,
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "instrumentation": {
                                "type": "array",
                                "items": {
                                  "required": [
                                    "code"
                                  ],
                                  "type": "object",
                                  "properties": {
                                    "code": {
                                      "maxLength": 3,
                                      "minLength": 1,
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "cisnetCreatedDate": {
                                "type": "string",
                                "description": "Date and time when this metadata was created on CISNET",
                                "format": "date-time"
                              },
                              "cisnetLastModifiedDate": {
                                "type": "string",
                                "description": "Date and time when this metadata last modified on CISNET",
                                "format": "date-time"
                              },
                              "additionalIdentifiers": {
                                "type": "object",
                                "properties": {
                                  "isrcs": {
                                    "type": "array",
                                    "items": {
                                      "type": "string"
                                    }
                                  },
                                  "publisherIdentifiers": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "nameNumber": {
                                          "type": "integer",
                                          "format": "int64"
                                        },
                                        "submitterCode": {
                                          "type": "string"
                                        },
                                        "workCode": {
                                          "type": "array",
                                          "items": {
                                            "type": "string"
                                          }
                                        }
                                      }
                                    }
                                  },
                                  "agencyWorkCodes": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "agency": {
                                          "maxLength": 3,
                                          "minLength": 3,
                                          "type": "string"
                                        },
                                        "workCode": {
                                          "maxLength": 20,
                                          "type": "string"
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "Optional list of additional identifiers that can be supplied with the submission."
                              }
                            }
                          },
                          {
                            "properties": {
                              "createdDate": {
                                "type": "string",
                                "description": "Data and time of creation in the system",
                                "format": "date-time"
                              },
                              "lastModifiedDate": {
                                "type": "string",
                                "description": "Data and time of the latest update in the system",
                                "format": "date-time"
                              },
                              "lastModifiedBy": {
                                "type": "string",
                                "description": "Identifier of the last update in the system"
                              }
                            }
                          },
                          {
                            "type": "object"
                          }
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "An unique identifier assigned by the system",
                            "format": "int64"
                          },
                          "iswc": {
                            "description": "A preferred ISWC assigned by the system"
                          },
                          "iswcEligible": {
                            "type": "boolean",
                            "description": "Indicator of a submitter being Iswc Eligible"
                          },
                          "deleted": {
                            "type": "boolean",
                            "description": "Indicator of a submission being logically deleted on CSINET"
                          },
                          "linkedFrom": {
                            "pattern": "T[0-9]{10}",
                            "type": "string",
                            "description": "The ISWC record that this is linked from"
                          },
                          "linkedTo": {
                            "pattern": "T[0-9]{10}",
                            "type": "string",
                            "description": "The ISWC record that this is linked to"
                          },
                          "rejection": {
                            "required": [
                              "code",
                              "message"
                            ],
                            "properties": {
                              "code": {
                                "type": "string"
                              },
                              "message": {
                                "type": "string"
                              }
                            }
                          },
                          "archivedIswc": {
                            "pattern": "T[0-9]{10}",
                            "type": "string",
                            "description": "The Archived ISWC"
                          },
                          "overallParentISWC": {
                            "pattern": "T[0-9]{10}",
                            "type": "string",
                            "description": "The preferred ISWC that is at the top of the chain of ISWCs."
                          }
                        }
                      }
                    },
                    "parentISWC": {
                      "pattern": "T[0-9]{10}",
                      "type": "string",
                      "description": "A preferred ISWC of a parent of this ISWC. Presence of this field indicates that the ISWC merged to the parent."
                    },
                    "linkedISWC": {
                      "type": "array",
                      "items": {
                        "pattern": "T[0-9]{10}",
                        "type": "string"
                      },
                      "description": "All linked preferred ISWCs. Presence of this field indicates that those ISWCs merged to this ISWC."
                    },
                    "overallParentISWC": {
                      "pattern": "T[0-9]{10}",
                      "type": "string",
                      "description": "The preferred ISWC that is at the top of the chain of ISWCs."
                    }
                  },
                  "xml": {
                    "name": "ISWCMetadata"
                  }
                }
              ]
            }
          },
          "multipleAgencyWorkCodes": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "agency": {
                  "maxLength": 3,
                  "minLength": 3,
                  "type": "string"
                },
                "workCode": {
                  "maxLength": 20,
                  "type": "string"
                },
                "rejection": {
                  "required": [
                    "code",
                    "message"
                  ],
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "rejection": {
        "required": [
          "code",
          "message"
        ],
        "properties": {
          "code": {
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        }
      }
    },
    "xml": {
      "name": "Submission"
    }
  },
  "x-apim-inline": true
}
<Batch> <Submission> <submissionId>0</submissionId> <submission> <verifiedSubmission> <id>0</id> <iswc /> <iswcEligible>true</iswcEligible> <deleted>true</deleted> <linkedFrom>string</linkedFrom> <linkedTo>string</linkedTo> <rejection> <code>string</code> <message>string</message> </rejection> <archivedIswc>string</archivedIswc> <overallParentISWC>string</overallParentISWC> <agency>string</agency> <sourcedb>0</sourcedb> <workcode>string</workcode> <category>DOM</category> <disambiguation>true</disambiguation> <disambiguationReason>DIT</disambiguationReason> <disambiguateFrom> <iswc>string</iswc> </disambiguateFrom> <bvltr>Background</bvltr> <derivedWorkType>ModifiedVersion</derivedWorkType> <derivedFromIswcs> <iswc>string</iswc> <title>string</title> </derivedFromIswcs> <performers> <firstName>string</firstName> <lastName>string</lastName> </performers> <instrumentation> <code>string</code> </instrumentation> <cisnetCreatedDate>string</cisnetCreatedDate> <cisnetLastModifiedDate>string</cisnetLastModifiedDate> <additionalIdentifiers> <isrcs>string</isrcs> <publisherIdentifiers> <nameNumber>0</nameNumber> <submitterCode>string</submitterCode> <workCode>string</workCode> </publisherIdentifiers> <agencyWorkCodes> <agency>string</agency> <workCode>string</workCode> </agencyWorkCodes> </additionalIdentifiers> <iswc>string</iswc> <agency>string</agency> <originalTitle>string</originalTitle> <otherTitles> <title>string</title> <type>CT</type> </otherTitles> <interestedParties> <name>string</name> <lastName>string</lastName> <nameNumber>0</nameNumber> <baseNumber>string</baseNumber> <affiliation>string</affiliation> <role>CA</role> <legalEntityType>N</legalEntityType> </interestedParties> <createdDate>string</createdDate> <lastModifiedDate>string</lastModifiedDate> <lastModifiedBy>string</lastModifiedBy> </verifiedSubmission> <linkedIswcs> <linkedReason>0</linkedReason> <iswcMetadata> <createdDate>string</createdDate> <lastModifiedDate>string</lastModifiedDate> <lastModifiedBy>string</lastModifiedBy> <iswc>string</iswc> <agency>string</agency> <originalTitle>string</originalTitle> <otherTitles> <title>string</title> <type>CT</type> </otherTitles> <interestedParties> <name>string</name> <lastName>string</lastName> <nameNumber>0</nameNumber> <baseNumber>string</baseNumber> <affiliation>string</affiliation> <role>CA</role> <legalEntityType>N</legalEntityType> </interestedParties> <works> <id>0</id> <iswc /> <iswcEligible>true</iswcEligible> <deleted>true</deleted> <linkedFrom>string</linkedFrom> <linkedTo>string</linkedTo> <rejection> <code>string</code> <message>string</message> </rejection> <archivedIswc>string</archivedIswc> <overallParentISWC>string</overallParentISWC> <agency>string</agency> <sourcedb>0</sourcedb> <workcode>string</workcode> <category>DOM</category> <disambiguation>true</disambiguation> <disambiguationReason>DIT</disambiguationReason> <disambiguateFrom> <iswc>string</iswc> </disambiguateFrom> <bvltr>Background</bvltr> <derivedWorkType>ModifiedVersion</derivedWorkType> <derivedFromIswcs> <iswc>string</iswc> <title>string</title> </derivedFromIswcs> <performers> <firstName>string</firstName> <lastName>string</lastName> </performers> <instrumentation> <code>string</code> </instrumentation> <cisnetCreatedDate>string</cisnetCreatedDate> <cisnetLastModifiedDate>string</cisnetLastModifiedDate> <additionalIdentifiers> <isrcs>string</isrcs> <publisherIdentifiers> <nameNumber>0</nameNumber> <submitterCode>string</submitterCode> <workCode>string</workCode> </publisherIdentifiers> <agencyWorkCodes> <agency>string</agency> <workCode>string</workCode> </agencyWorkCodes> </additionalIdentifiers> <iswc>string</iswc> <agency>string</agency> <originalTitle>string</originalTitle> <otherTitles> <title>string</title> <type>CT</type> </otherTitles> <interestedParties> <name>string</name> <lastName>string</lastName> <nameNumber>0</nameNumber> <baseNumber>string</baseNumber> <affiliation>string</affiliation> <role>CA</role> <legalEntityType>N</legalEntityType> </interestedParties> <createdDate>string</createdDate> <lastModifiedDate>string</lastModifiedDate> <lastModifiedBy>string</lastModifiedBy> </works> <parentISWC>string</parentISWC> <linkedISWC>string</linkedISWC> <overallParentISWC>string</overallParentISWC> </iswcMetadata> </linkedIswcs> <potentialMatches> <createdDate>string</createdDate> <lastModifiedDate>string</lastModifiedDate> <lastModifiedBy>string</lastModifiedBy> <iswc>string</iswc> <agency>string</agency> <originalTitle>string</originalTitle> <otherTitles> <title>string</title> <type>CT</type> </otherTitles> <interestedParties> <name>string</name> <lastName>string</lastName> <nameNumber>0</nameNumber> <baseNumber>string</baseNumber> <affiliation>string</affiliation> <role>CA</role> <legalEntityType>N</legalEntityType> </interestedParties> <works> <id>0</id> <iswc /> <iswcEligible>true</iswcEligible> <deleted>true</deleted> <linkedFrom>string</linkedFrom> <linkedTo>string</linkedTo> <rejection> <code>string</code> <message>string</message> </rejection> <archivedIswc>string</archivedIswc> <overallParentISWC>string</overallParentISWC> <agency>string</agency> <sourcedb>0</sourcedb> <workcode>string</workcode> <category>DOM</category> <disambiguation>true</disambiguation> <disambiguationReason>DIT</disambiguationReason> <disambiguateFrom> <iswc>string</iswc> </disambiguateFrom> <bvltr>Background</bvltr> <derivedWorkType>ModifiedVersion</derivedWorkType> <derivedFromIswcs> <iswc>string</iswc> <title>string</title> </derivedFromIswcs> <performers> <firstName>string</firstName> <lastName>string</lastName> </performers> <instrumentation> <code>string</code> </instrumentation> <cisnetCreatedDate>string</cisnetCreatedDate> <cisnetLastModifiedDate>string</cisnetLastModifiedDate> <additionalIdentifiers> <isrcs>string</isrcs> <publisherIdentifiers> <nameNumber>0</nameNumber> <submitterCode>string</submitterCode> <workCode>string</workCode> </publisherIdentifiers> <agencyWorkCodes> <agency>string</agency> <workCode>string</workCode> </agencyWorkCodes> </additionalIdentifiers> <iswc>string</iswc> <agency>string</agency> <originalTitle>string</originalTitle> <otherTitles> <title>string</title> <type>CT</type> </otherTitles> <interestedParties> <name>string</name> <lastName>string</lastName> <nameNumber>0</nameNumber> <baseNumber>string</baseNumber> <affiliation>string</affiliation> <role>CA</role> <legalEntityType>N</legalEntityType> </interestedParties> <createdDate>string</createdDate> <lastModifiedDate>string</lastModifiedDate> <lastModifiedBy>string</lastModifiedBy> </works> <parentISWC>string</parentISWC> <linkedISWC>string</linkedISWC> <overallParentISWC>string</overallParentISWC> </potentialMatches> <multipleAgencyWorkCodes> <agency>string</agency> <workCode>string</workCode> <rejection> <code>string</code> <message>string</message> </rejection> </multipleAgencyWorkCodes> </submission> <rejection> <code>string</code> <message>string</message> </rejection> </Submission> </Batch>
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "submissionId": {
        "type": "integer",
        "description": "The value of the submissionID from the request submission.",
        "format": "int32"
      },
      "submission": {
        "type": "object",
        "properties": {
          "verifiedSubmission": {
            "required": [
              "id",
              "iswc",
              "deleted"
            ],
            "allOf": [
              {
                "required": [
                  "agency",
                  "sourcedb",
                  "workcode",
                  "category",
                  "originalTitle",
                  "interestedParties"
                ],
                "allOf": [
                  {
                    "required": [
                      "originalTitle",
                      "interestedParties"
                    ],
                    "properties": {
                      "iswc": {
                        "pattern": "T[0-9]{10}",
                        "type": "string"
                      },
                      "agency": {
                        "maxLength": 3,
                        "minLength": 3,
                        "type": "string",
                        "description": "A CISAC code of a submitting agency that allocated this ISWC"
                      },
                      "originalTitle": {
                        "type": "string",
                        "description": "Original title of a musical composition"
                      },
                      "otherTitles": {
                        "type": "array",
                        "items": {
                          "required": [
                            "title",
                            "type"
                          ],
                          "type": "object",
                          "properties": {
                            "title": {
                              "type": "string",
                              "description": "Musical work title"
                            },
                            "type": {
                              "enum": [
                                "CT",
                                "OT",
                                "RT",
                                "AT",
                                "ET",
                                "ST",
                                "TO",
                                "OA",
                                "TE",
                                "FT",
                                "IT",
                                "TT",
                                "PT",
                                "OL",
                                "AL"
                              ],
                              "type": "string",
                              "description": "Musical work title type"
                            }
                          }
                        },
                        "description": "Other titles associated with musical composition (aka alternative titles)"
                      },
                      "interestedParties": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string"
                            },
                            "lastName": {
                              "type": "string"
                            },
                            "nameNumber": {
                              "type": "integer",
                              "format": "int64"
                            },
                            "baseNumber": {
                              "type": "string"
                            },
                            "affiliation": {
                              "type": "string"
                            },
                            "role": {
                              "enum": [
                                "CA",
                                "AR",
                                "SE",
                                "PA",
                                "ES",
                                "AM",
                                "SA",
                                "C",
                                "AD",
                                "A",
                                "E",
                                "AQ",
                                "SR",
                                "TR",
                                "MA",
                                "TA"
                              ],
                              "type": "string",
                              "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                            },
                            "legalEntityType": {
                              "enum": [
                                "N",
                                "L"
                              ],
                              "type": "string"
                            }
                          }
                        },
                        "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                      }
                    }
                  },
                  {
                    "type": "object"
                  }
                ],
                "properties": {
                  "agency": {
                    "maxLength": 3,
                    "minLength": 3,
                    "type": "string"
                  },
                  "sourcedb": {
                    "type": "integer",
                    "format": "int32"
                  },
                  "workcode": {
                    "type": "string"
                  },
                  "category": {
                    "enum": [
                      "DOM",
                      "INT"
                    ],
                    "type": "string"
                  },
                  "disambiguation": {
                    "type": "boolean"
                  },
                  "disambiguationReason": {
                    "enum": [
                      "DIT",
                      "DIA",
                      "DIE",
                      "DIC",
                      "DIP",
                      "DIV"
                    ],
                    "type": "string",
                    "description": "Disambiguation Reason Code"
                  },
                  "disambiguateFrom": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "iswc": {
                          "pattern": "T[0-9]{10}",
                          "type": "string"
                        }
                      }
                    }
                  },
                  "bvltr": {
                    "enum": [
                      "Background",
                      "Logo",
                      "Theme",
                      "Visual",
                      "RolledUpCue"
                    ],
                    "type": "string",
                    "description": "Background, Logo, Theme, Visual or Rolled Up Cue"
                  },
                  "derivedWorkType": {
                    "enum": [
                      "ModifiedVersion",
                      "Excerpt",
                      "Composite"
                    ],
                    "type": "string",
                    "description": "Derived Work Type- if not provided then this isn't a derived work"
                  },
                  "derivedFromIswcs": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "iswc": {
                          "pattern": "T[0-9]{10}",
                          "type": "string"
                        },
                        "title": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "performers": {
                    "type": "array",
                    "items": {
                      "required": [
                        "lastName"
                      ],
                      "type": "object",
                      "properties": {
                        "firstName": {
                          "maxLength": 50,
                          "minLength": 1,
                          "type": "string"
                        },
                        "lastName": {
                          "maxLength": 50,
                          "minLength": 1,
                          "type": "string"
                        }
                      }
                    }
                  },
                  "instrumentation": {
                    "type": "array",
                    "items": {
                      "required": [
                        "code"
                      ],
                      "type": "object",
                      "properties": {
                        "code": {
                          "maxLength": 3,
                          "minLength": 1,
                          "type": "string"
                        }
                      }
                    }
                  },
                  "cisnetCreatedDate": {
                    "type": "string",
                    "description": "Date and time when this metadata was created on CISNET",
                    "format": "date-time"
                  },
                  "cisnetLastModifiedDate": {
                    "type": "string",
                    "description": "Date and time when this metadata last modified on CISNET",
                    "format": "date-time"
                  },
                  "additionalIdentifiers": {
                    "type": "object",
                    "properties": {
                      "isrcs": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "publisherIdentifiers": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "nameNumber": {
                              "type": "integer",
                              "format": "int64"
                            },
                            "submitterCode": {
                              "type": "string"
                            },
                            "workCode": {
                              "type": "array",
                              "items": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      },
                      "agencyWorkCodes": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "agency": {
                              "maxLength": 3,
                              "minLength": 3,
                              "type": "string"
                            },
                            "workCode": {
                              "maxLength": 20,
                              "type": "string"
                            }
                          }
                        }
                      }
                    },
                    "description": "Optional list of additional identifiers that can be supplied with the submission."
                  }
                }
              },
              {
                "properties": {
                  "createdDate": {
                    "type": "string",
                    "description": "Data and time of creation in the system",
                    "format": "date-time"
                  },
                  "lastModifiedDate": {
                    "type": "string",
                    "description": "Data and time of the latest update in the system",
                    "format": "date-time"
                  },
                  "lastModifiedBy": {
                    "type": "string",
                    "description": "Identifier of the last update in the system"
                  }
                }
              },
              {
                "type": "object"
              }
            ],
            "properties": {
              "id": {
                "type": "integer",
                "description": "An unique identifier assigned by the system",
                "format": "int64"
              },
              "iswc": {
                "description": "A preferred ISWC assigned by the system"
              },
              "iswcEligible": {
                "type": "boolean",
                "description": "Indicator of a submitter being Iswc Eligible"
              },
              "deleted": {
                "type": "boolean",
                "description": "Indicator of a submission being logically deleted on CSINET"
              },
              "linkedFrom": {
                "pattern": "T[0-9]{10}",
                "type": "string",
                "description": "The ISWC record that this is linked from"
              },
              "linkedTo": {
                "pattern": "T[0-9]{10}",
                "type": "string",
                "description": "The ISWC record that this is linked to"
              },
              "rejection": {
                "required": [
                  "code",
                  "message"
                ],
                "properties": {
                  "code": {
                    "type": "string"
                  },
                  "message": {
                    "type": "string"
                  }
                }
              },
              "archivedIswc": {
                "pattern": "T[0-9]{10}",
                "type": "string",
                "description": "The Archived ISWC"
              },
              "overallParentISWC": {
                "pattern": "T[0-9]{10}",
                "type": "string",
                "description": "The preferred ISWC that is at the top of the chain of ISWCs."
              }
            }
          },
          "linkedIswcs": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "linkedReason": {
                  "type": "integer",
                  "format": "int32"
                },
                "iswcMetadata": {
                  "allOf": [
                    {
                      "properties": {
                        "createdDate": {
                          "type": "string",
                          "description": "Data and time of creation in the system",
                          "format": "date-time"
                        },
                        "lastModifiedDate": {
                          "type": "string",
                          "description": "Data and time of the latest update in the system",
                          "format": "date-time"
                        },
                        "lastModifiedBy": {
                          "type": "string",
                          "description": "Identifier of the last update in the system"
                        }
                      }
                    },
                    {
                      "required": [
                        "originalTitle",
                        "interestedParties"
                      ],
                      "properties": {
                        "iswc": {
                          "pattern": "T[0-9]{10}",
                          "type": "string"
                        },
                        "agency": {
                          "maxLength": 3,
                          "minLength": 3,
                          "type": "string",
                          "description": "A CISAC code of a submitting agency that allocated this ISWC"
                        },
                        "originalTitle": {
                          "type": "string",
                          "description": "Original title of a musical composition"
                        },
                        "otherTitles": {
                          "type": "array",
                          "items": {
                            "required": [
                              "title",
                              "type"
                            ],
                            "type": "object",
                            "properties": {
                              "title": {
                                "type": "string",
                                "description": "Musical work title"
                              },
                              "type": {
                                "enum": [
                                  "CT",
                                  "OT",
                                  "RT",
                                  "AT",
                                  "ET",
                                  "ST",
                                  "TO",
                                  "OA",
                                  "TE",
                                  "FT",
                                  "IT",
                                  "TT",
                                  "PT",
                                  "OL",
                                  "AL"
                                ],
                                "type": "string",
                                "description": "Musical work title type"
                              }
                            }
                          },
                          "description": "Other titles associated with musical composition (aka alternative titles)"
                        },
                        "interestedParties": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string"
                              },
                              "lastName": {
                                "type": "string"
                              },
                              "nameNumber": {
                                "type": "integer",
                                "format": "int64"
                              },
                              "baseNumber": {
                                "type": "string"
                              },
                              "affiliation": {
                                "type": "string"
                              },
                              "role": {
                                "enum": [
                                  "CA",
                                  "AR",
                                  "SE",
                                  "PA",
                                  "ES",
                                  "AM",
                                  "SA",
                                  "C",
                                  "AD",
                                  "A",
                                  "E",
                                  "AQ",
                                  "SR",
                                  "TR",
                                  "MA",
                                  "TA"
                                ],
                                "type": "string",
                                "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                              },
                              "legalEntityType": {
                                "enum": [
                                  "N",
                                  "L"
                                ],
                                "type": "string"
                              }
                            }
                          },
                          "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                        }
                      }
                    },
                    {
                      "required": [
                        "iswc",
                        "agency"
                      ],
                      "type": "object",
                      "properties": {
                        "works": {
                          "type": "array",
                          "items": {
                            "required": [
                              "id",
                              "iswc",
                              "deleted"
                            ],
                            "allOf": [
                              {
                                "required": [
                                  "agency",
                                  "sourcedb",
                                  "workcode",
                                  "category",
                                  "originalTitle",
                                  "interestedParties"
                                ],
                                "allOf": [
                                  {
                                    "required": [
                                      "originalTitle",
                                      "interestedParties"
                                    ],
                                    "properties": {
                                      "iswc": {
                                        "pattern": "T[0-9]{10}",
                                        "type": "string"
                                      },
                                      "agency": {
                                        "maxLength": 3,
                                        "minLength": 3,
                                        "type": "string",
                                        "description": "A CISAC code of a submitting agency that allocated this ISWC"
                                      },
                                      "originalTitle": {
                                        "type": "string",
                                        "description": "Original title of a musical composition"
                                      },
                                      "otherTitles": {
                                        "type": "array",
                                        "items": {
                                          "required": [
                                            "title",
                                            "type"
                                          ],
                                          "type": "object",
                                          "properties": {
                                            "title": {
                                              "type": "string",
                                              "description": "Musical work title"
                                            },
                                            "type": {
                                              "enum": [
                                                "CT",
                                                "OT",
                                                "RT",
                                                "AT",
                                                "ET",
                                                "ST",
                                                "TO",
                                                "OA",
                                                "TE",
                                                "FT",
                                                "IT",
                                                "TT",
                                                "PT",
                                                "OL",
                                                "AL"
                                              ],
                                              "type": "string",
                                              "description": "Musical work title type"
                                            }
                                          }
                                        },
                                        "description": "Other titles associated with musical composition (aka alternative titles)"
                                      },
                                      "interestedParties": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "name": {
                                              "type": "string"
                                            },
                                            "lastName": {
                                              "type": "string"
                                            },
                                            "nameNumber": {
                                              "type": "integer",
                                              "format": "int64"
                                            },
                                            "baseNumber": {
                                              "type": "string"
                                            },
                                            "affiliation": {
                                              "type": "string"
                                            },
                                            "role": {
                                              "enum": [
                                                "CA",
                                                "AR",
                                                "SE",
                                                "PA",
                                                "ES",
                                                "AM",
                                                "SA",
                                                "C",
                                                "AD",
                                                "A",
                                                "E",
                                                "AQ",
                                                "SR",
                                                "TR",
                                                "MA",
                                                "TA"
                                              ],
                                              "type": "string",
                                              "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                                            },
                                            "legalEntityType": {
                                              "enum": [
                                                "N",
                                                "L"
                                              ],
                                              "type": "string"
                                            }
                                          }
                                        },
                                        "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                                      }
                                    }
                                  },
                                  {
                                    "type": "object"
                                  }
                                ],
                                "properties": {
                                  "agency": {
                                    "maxLength": 3,
                                    "minLength": 3,
                                    "type": "string"
                                  },
                                  "sourcedb": {
                                    "type": "integer",
                                    "format": "int32"
                                  },
                                  "workcode": {
                                    "type": "string"
                                  },
                                  "category": {
                                    "enum": [
                                      "DOM",
                                      "INT"
                                    ],
                                    "type": "string"
                                  },
                                  "disambiguation": {
                                    "type": "boolean"
                                  },
                                  "disambiguationReason": {
                                    "enum": [
                                      "DIT",
                                      "DIA",
                                      "DIE",
                                      "DIC",
                                      "DIP",
                                      "DIV"
                                    ],
                                    "type": "string",
                                    "description": "Disambiguation Reason Code"
                                  },
                                  "disambiguateFrom": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "iswc": {
                                          "pattern": "T[0-9]{10}",
                                          "type": "string"
                                        }
                                      }
                                    }
                                  },
                                  "bvltr": {
                                    "enum": [
                                      "Background",
                                      "Logo",
                                      "Theme",
                                      "Visual",
                                      "RolledUpCue"
                                    ],
                                    "type": "string",
                                    "description": "Background, Logo, Theme, Visual or Rolled Up Cue"
                                  },
                                  "derivedWorkType": {
                                    "enum": [
                                      "ModifiedVersion",
                                      "Excerpt",
                                      "Composite"
                                    ],
                                    "type": "string",
                                    "description": "Derived Work Type- if not provided then this isn't a derived work"
                                  },
                                  "derivedFromIswcs": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "iswc": {
                                          "pattern": "T[0-9]{10}",
                                          "type": "string"
                                        },
                                        "title": {
                                          "type": "string"
                                        }
                                      }
                                    }
                                  },
                                  "performers": {
                                    "type": "array",
                                    "items": {
                                      "required": [
                                        "lastName"
                                      ],
                                      "type": "object",
                                      "properties": {
                                        "firstName": {
                                          "maxLength": 50,
                                          "minLength": 1,
                                          "type": "string"
                                        },
                                        "lastName": {
                                          "maxLength": 50,
                                          "minLength": 1,
                                          "type": "string"
                                        }
                                      }
                                    }
                                  },
                                  "instrumentation": {
                                    "type": "array",
                                    "items": {
                                      "required": [
                                        "code"
                                      ],
                                      "type": "object",
                                      "properties": {
                                        "code": {
                                          "maxLength": 3,
                                          "minLength": 1,
                                          "type": "string"
                                        }
                                      }
                                    }
                                  },
                                  "cisnetCreatedDate": {
                                    "type": "string",
                                    "description": "Date and time when this metadata was created on CISNET",
                                    "format": "date-time"
                                  },
                                  "cisnetLastModifiedDate": {
                                    "type": "string",
                                    "description": "Date and time when this metadata last modified on CISNET",
                                    "format": "date-time"
                                  },
                                  "additionalIdentifiers": {
                                    "type": "object",
                                    "properties": {
                                      "isrcs": {
                                        "type": "array",
                                        "items": {
                                          "type": "string"
                                        }
                                      },
                                      "publisherIdentifiers": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "nameNumber": {
                                              "type": "integer",
                                              "format": "int64"
                                            },
                                            "submitterCode": {
                                              "type": "string"
                                            },
                                            "workCode": {
                                              "type": "array",
                                              "items": {
                                                "type": "string"
                                              }
                                            }
                                          }
                                        }
                                      },
                                      "agencyWorkCodes": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "agency": {
                                              "maxLength": 3,
                                              "minLength": 3,
                                              "type": "string"
                                            },
                                            "workCode": {
                                              "maxLength": 20,
                                              "type": "string"
                                            }
                                          }
                                        }
                                      }
                                    },
                                    "description": "Optional list of additional identifiers that can be supplied with the submission."
                                  }
                                }
                              },
                              {
                                "properties": {
                                  "createdDate": {
                                    "type": "string",
                                    "description": "Data and time of creation in the system",
                                    "format": "date-time"
                                  },
                                  "lastModifiedDate": {
                                    "type": "string",
                                    "description": "Data and time of the latest update in the system",
                                    "format": "date-time"
                                  },
                                  "lastModifiedBy": {
                                    "type": "string",
                                    "description": "Identifier of the last update in the system"
                                  }
                                }
                              },
                              {
                                "type": "object"
                              }
                            ],
                            "properties": {
                              "id": {
                                "type": "integer",
                                "description": "An unique identifier assigned by the system",
                                "format": "int64"
                              },
                              "iswc": {
                                "description": "A preferred ISWC assigned by the system"
                              },
                              "iswcEligible": {
                                "type": "boolean",
                                "description": "Indicator of a submitter being Iswc Eligible"
                              },
                              "deleted": {
                                "type": "boolean",
                                "description": "Indicator of a submission being logically deleted on CSINET"
                              },
                              "linkedFrom": {
                                "pattern": "T[0-9]{10}",
                                "type": "string",
                                "description": "The ISWC record that this is linked from"
                              },
                              "linkedTo": {
                                "pattern": "T[0-9]{10}",
                                "type": "string",
                                "description": "The ISWC record that this is linked to"
                              },
                              "rejection": {
                                "required": [
                                  "code",
                                  "message"
                                ],
                                "properties": {
                                  "code": {
                                    "type": "string"
                                  },
                                  "message": {
                                    "type": "string"
                                  }
                                }
                              },
                              "archivedIswc": {
                                "pattern": "T[0-9]{10}",
                                "type": "string",
                                "description": "The Archived ISWC"
                              },
                              "overallParentISWC": {
                                "pattern": "T[0-9]{10}",
                                "type": "string",
                                "description": "The preferred ISWC that is at the top of the chain of ISWCs."
                              }
                            }
                          }
                        },
                        "parentISWC": {
                          "pattern": "T[0-9]{10}",
                          "type": "string",
                          "description": "A preferred ISWC of a parent of this ISWC. Presence of this field indicates that the ISWC merged to the parent."
                        },
                        "linkedISWC": {
                          "type": "array",
                          "items": {
                            "pattern": "T[0-9]{10}",
                            "type": "string"
                          },
                          "description": "All linked preferred ISWCs. Presence of this field indicates that those ISWCs merged to this ISWC."
                        },
                        "overallParentISWC": {
                          "pattern": "T[0-9]{10}",
                          "type": "string",
                          "description": "The preferred ISWC that is at the top of the chain of ISWCs."
                        }
                      },
                      "xml": {
                        "name": "ISWCMetadata"
                      }
                    }
                  ]
                }
              }
            }
          },
          "potentialMatches": {
            "type": "array",
            "items": {
              "allOf": [
                {
                  "properties": {
                    "createdDate": {
                      "type": "string",
                      "description": "Data and time of creation in the system",
                      "format": "date-time"
                    },
                    "lastModifiedDate": {
                      "type": "string",
                      "description": "Data and time of the latest update in the system",
                      "format": "date-time"
                    },
                    "lastModifiedBy": {
                      "type": "string",
                      "description": "Identifier of the last update in the system"
                    }
                  }
                },
                {
                  "required": [
                    "originalTitle",
                    "interestedParties"
                  ],
                  "properties": {
                    "iswc": {
                      "pattern": "T[0-9]{10}",
                      "type": "string"
                    },
                    "agency": {
                      "maxLength": 3,
                      "minLength": 3,
                      "type": "string",
                      "description": "A CISAC code of a submitting agency that allocated this ISWC"
                    },
                    "originalTitle": {
                      "type": "string",
                      "description": "Original title of a musical composition"
                    },
                    "otherTitles": {
                      "type": "array",
                      "items": {
                        "required": [
                          "title",
                          "type"
                        ],
                        "type": "object",
                        "properties": {
                          "title": {
                            "type": "string",
                            "description": "Musical work title"
                          },
                          "type": {
                            "enum": [
                              "CT",
                              "OT",
                              "RT",
                              "AT",
                              "ET",
                              "ST",
                              "TO",
                              "OA",
                              "TE",
                              "FT",
                              "IT",
                              "TT",
                              "PT",
                              "OL",
                              "AL"
                            ],
                            "type": "string",
                            "description": "Musical work title type"
                          }
                        }
                      },
                      "description": "Other titles associated with musical composition (aka alternative titles)"
                    },
                    "interestedParties": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "lastName": {
                            "type": "string"
                          },
                          "nameNumber": {
                            "type": "integer",
                            "format": "int64"
                          },
                          "baseNumber": {
                            "type": "string"
                          },
                          "affiliation": {
                            "type": "string"
                          },
                          "role": {
                            "enum": [
                              "CA",
                              "AR",
                              "SE",
                              "PA",
                              "ES",
                              "AM",
                              "SA",
                              "C",
                              "AD",
                              "A",
                              "E",
                              "AQ",
                              "SR",
                              "TR",
                              "MA",
                              "TA"
                            ],
                            "type": "string",
                            "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                          },
                          "legalEntityType": {
                            "enum": [
                              "N",
                              "L"
                            ],
                            "type": "string"
                          }
                        }
                      },
                      "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                    }
                  }
                },
                {
                  "required": [
                    "iswc",
                    "agency"
                  ],
                  "type": "object",
                  "properties": {
                    "works": {
                      "type": "array",
                      "items": {
                        "required": [
                          "id",
                          "iswc",
                          "deleted"
                        ],
                        "allOf": [
                          {
                            "required": [
                              "agency",
                              "sourcedb",
                              "workcode",
                              "category",
                              "originalTitle",
                              "interestedParties"
                            ],
                            "allOf": [
                              {
                                "required": [
                                  "originalTitle",
                                  "interestedParties"
                                ],
                                "properties": {
                                  "iswc": {
                                    "pattern": "T[0-9]{10}",
                                    "type": "string"
                                  },
                                  "agency": {
                                    "maxLength": 3,
                                    "minLength": 3,
                                    "type": "string",
                                    "description": "A CISAC code of a submitting agency that allocated this ISWC"
                                  },
                                  "originalTitle": {
                                    "type": "string",
                                    "description": "Original title of a musical composition"
                                  },
                                  "otherTitles": {
                                    "type": "array",
                                    "items": {
                                      "required": [
                                        "title",
                                        "type"
                                      ],
                                      "type": "object",
                                      "properties": {
                                        "title": {
                                          "type": "string",
                                          "description": "Musical work title"
                                        },
                                        "type": {
                                          "enum": [
                                            "CT",
                                            "OT",
                                            "RT",
                                            "AT",
                                            "ET",
                                            "ST",
                                            "TO",
                                            "OA",
                                            "TE",
                                            "FT",
                                            "IT",
                                            "TT",
                                            "PT",
                                            "OL",
                                            "AL"
                                          ],
                                          "type": "string",
                                          "description": "Musical work title type"
                                        }
                                      }
                                    },
                                    "description": "Other titles associated with musical composition (aka alternative titles)"
                                  },
                                  "interestedParties": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "name": {
                                          "type": "string"
                                        },
                                        "lastName": {
                                          "type": "string"
                                        },
                                        "nameNumber": {
                                          "type": "integer",
                                          "format": "int64"
                                        },
                                        "baseNumber": {
                                          "type": "string"
                                        },
                                        "affiliation": {
                                          "type": "string"
                                        },
                                        "role": {
                                          "enum": [
                                            "CA",
                                            "AR",
                                            "SE",
                                            "PA",
                                            "ES",
                                            "AM",
                                            "SA",
                                            "C",
                                            "AD",
                                            "A",
                                            "E",
                                            "AQ",
                                            "SR",
                                            "TR",
                                            "MA",
                                            "TA"
                                          ],
                                          "type": "string",
                                          "description": "The role will be rolled up to the corresponding CISAC Role as per the following mapping: C(C,A,CA), MA(AR,SR), TA(AD,SA,TR) E(E,AM)"
                                        },
                                        "legalEntityType": {
                                          "enum": [
                                            "N",
                                            "L"
                                          ],
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "description": "Interested party associated with musical composition, such as :composers, lyricist, translator, original and sub publishers"
                                  }
                                }
                              },
                              {
                                "type": "object"
                              }
                            ],
                            "properties": {
                              "agency": {
                                "maxLength": 3,
                                "minLength": 3,
                                "type": "string"
                              },
                              "sourcedb": {
                                "type": "integer",
                                "format": "int32"
                              },
                              "workcode": {
                                "type": "string"
                              },
                              "category": {
                                "enum": [
                                  "DOM",
                                  "INT"
                                ],
                                "type": "string"
                              },
                              "disambiguation": {
                                "type": "boolean"
                              },
                              "disambiguationReason": {
                                "enum": [
                                  "DIT",
                                  "DIA",
                                  "DIE",
                                  "DIC",
                                  "DIP",
                                  "DIV"
                                ],
                                "type": "string",
                                "description": "Disambiguation Reason Code"
                              },
                              "disambiguateFrom": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "iswc": {
                                      "pattern": "T[0-9]{10}",
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "bvltr": {
                                "enum": [
                                  "Background",
                                  "Logo",
                                  "Theme",
                                  "Visual",
                                  "RolledUpCue"
                                ],
                                "type": "string",
                                "description": "Background, Logo, Theme, Visual or Rolled Up Cue"
                              },
                              "derivedWorkType": {
                                "enum": [
                                  "ModifiedVersion",
                                  "Excerpt",
                                  "Composite"
                                ],
                                "type": "string",
                                "description": "Derived Work Type- if not provided then this isn't a derived work"
                              },
                              "derivedFromIswcs": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "iswc": {
                                      "pattern": "T[0-9]{10}",
                                      "type": "string"
                                    },
                                    "title": {
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "performers": {
                                "type": "array",
                                "items": {
                                  "required": [
                                    "lastName"
                                  ],
                                  "type": "object",
                                  "properties": {
                                    "firstName": {
                                      "maxLength": 50,
                                      "minLength": 1,
                                      "type": "string"
                                    },
                                    "lastName": {
                                      "maxLength": 50,
                                      "minLength": 1,
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "instrumentation": {
                                "type": "array",
                                "items": {
                                  "required": [
                                    "code"
                                  ],
                                  "type": "object",
                                  "properties": {
                                    "code": {
                                      "maxLength": 3,
                                      "minLength": 1,
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "cisnetCreatedDate": {
                                "type": "string",
                                "description": "Date and time when this metadata was created on CISNET",
                                "format": "date-time"
                              },
                              "cisnetLastModifiedDate": {
                                "type": "string",
                                "description": "Date and time when this metadata last modified on CISNET",
                                "format": "date-time"
                              },
                              "additionalIdentifiers": {
                                "type": "object",
                                "properties": {
                                  "isrcs": {
                                    "type": "array",
                                    "items": {
                                      "type": "string"
                                    }
                                  },
                                  "publisherIdentifiers": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "nameNumber": {
                                          "type": "integer",
                                          "format": "int64"
                                        },
                                        "submitterCode": {
                                          "type": "string"
                                        },
                                        "workCode": {
                                          "type": "array",
                                          "items": {
                                            "type": "string"
                                          }
                                        }
                                      }
                                    }
                                  },
                                  "agencyWorkCodes": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "agency": {
                                          "maxLength": 3,
                                          "minLength": 3,
                                          "type": "string"
                                        },
                                        "workCode": {
                                          "maxLength": 20,
                                          "type": "string"
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "Optional list of additional identifiers that can be supplied with the submission."
                              }
                            }
                          },
                          {
                            "properties": {
                              "createdDate": {
                                "type": "string",
                                "description": "Data and time of creation in the system",
                                "format": "date-time"
                              },
                              "lastModifiedDate": {
                                "type": "string",
                                "description": "Data and time of the latest update in the system",
                                "format": "date-time"
                              },
                              "lastModifiedBy": {
                                "type": "string",
                                "description": "Identifier of the last update in the system"
                              }
                            }
                          },
                          {
                            "type": "object"
                          }
                        ],
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "An unique identifier assigned by the system",
                            "format": "int64"
                          },
                          "iswc": {
                            "description": "A preferred ISWC assigned by the system"
                          },
                          "iswcEligible": {
                            "type": "boolean",
                            "description": "Indicator of a submitter being Iswc Eligible"
                          },
                          "deleted": {
                            "type": "boolean",
                            "description": "Indicator of a submission being logically deleted on CSINET"
                          },
                          "linkedFrom": {
                            "pattern": "T[0-9]{10}",
                            "type": "string",
                            "description": "The ISWC record that this is linked from"
                          },
                          "linkedTo": {
                            "pattern": "T[0-9]{10}",
                            "type": "string",
                            "description": "The ISWC record that this is linked to"
                          },
                          "rejection": {
                            "required": [
                              "code",
                              "message"
                            ],
                            "properties": {
                              "code": {
                                "type": "string"
                              },
                              "message": {
                                "type": "string"
                              }
                            }
                          },
                          "archivedIswc": {
                            "pattern": "T[0-9]{10}",
                            "type": "string",
                            "description": "The Archived ISWC"
                          },
                          "overallParentISWC": {
                            "pattern": "T[0-9]{10}",
                            "type": "string",
                            "description": "The preferred ISWC that is at the top of the chain of ISWCs."
                          }
                        }
                      }
                    },
                    "parentISWC": {
                      "pattern": "T[0-9]{10}",
                      "type": "string",
                      "description": "A preferred ISWC of a parent of this ISWC. Presence of this field indicates that the ISWC merged to the parent."
                    },
                    "linkedISWC": {
                      "type": "array",
                      "items": {
                        "pattern": "T[0-9]{10}",
                        "type": "string"
                      },
                      "description": "All linked preferred ISWCs. Presence of this field indicates that those ISWCs merged to this ISWC."
                    },
                    "overallParentISWC": {
                      "pattern": "T[0-9]{10}",
                      "type": "string",
                      "description": "The preferred ISWC that is at the top of the chain of ISWCs."
                    }
                  },
                  "xml": {
                    "name": "ISWCMetadata"
                  }
                }
              ]
            }
          },
          "multipleAgencyWorkCodes": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "agency": {
                  "maxLength": 3,
                  "minLength": 3,
                  "type": "string"
                },
                "workCode": {
                  "maxLength": 20,
                  "type": "string"
                },
                "rejection": {
                  "required": [
                    "code",
                    "message"
                  ],
                  "properties": {
                    "code": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "rejection": {
        "required": [
          "code",
          "message"
        ],
        "properties": {
          "code": {
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        }
      }
    },
    "xml": {
      "name": "Submission"
    }
  },
  "xml": {
    "name": "Batch",
    "wrapped": true
  },
  "x-apim-inline": true
}

400 Bad Request

Input malformed

422 Unprocessable Entity

Input validation error

Code samples

@ECHO OFF

curl -v -X POST "https://cisaciswcuat.azure-api.net/submission/batch"
-H "Content-Type: application/json"
-H "Ocp-Apim-Subscription-Key: {subscription key}"

--data-ascii "{body}" 
using System;
using System.Net.Http.Headers;
using System.Text;
using System.Net.Http;
using System.Web;

namespace CSHttpClientSample
{
    static class Program
    {
        static void Main()
        {
            MakeRequest();
            Console.WriteLine("Hit ENTER to exit...");
            Console.ReadLine();
        }
        
        static async void MakeRequest()
        {
            var client = new HttpClient();
            var queryString = HttpUtility.ParseQueryString(string.Empty);

            // Request headers
            client.DefaultRequestHeaders.Add("Ocp-Apim-Subscription-Key", "{subscription key}");

            var uri = "https://cisaciswcuat.azure-api.net/submission/batch?" + queryString;

            HttpResponseMessage response;

            // Request body
            byte[] byteData = Encoding.UTF8.GetBytes("{body}");

            using (var content = new ByteArrayContent(byteData))
            {
               content.Headers.ContentType = new MediaTypeHeaderValue("< your content type, i.e. application/json >");
               response = await client.PostAsync(uri, content);
            }

        }
    }
}	
// // This sample uses the Apache HTTP client from HTTP Components (http://hc.apache.org/httpcomponents-client-ga/)
import java.net.URI;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;

public class JavaSample 
{
    public static void main(String[] args) 
    {
        HttpClient httpclient = HttpClients.createDefault();

        try
        {
            URIBuilder builder = new URIBuilder("https://cisaciswcuat.azure-api.net/submission/batch");


            URI uri = builder.build();
            HttpPost request = new HttpPost(uri);
            request.setHeader("Content-Type", "application/json");
            request.setHeader("Ocp-Apim-Subscription-Key", "{subscription key}");


            // Request body
            StringEntity reqEntity = new StringEntity("{body}");
            request.setEntity(reqEntity);

            HttpResponse response = httpclient.execute(request);
            HttpEntity entity = response.getEntity();

            if (entity != null) 
            {
                System.out.println(EntityUtils.toString(entity));
            }
        }
        catch (Exception e)
        {
            System.out.println(e.getMessage());
        }
    }
}

<!DOCTYPE html>
<html>
<head>
    <title>JSSample</title>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>
<body>

<script type="text/javascript">
    $(function() {
        var params = {
            // Request parameters
        };
      
        $.ajax({
            url: "https://cisaciswcuat.azure-api.net/submission/batch?" + $.param(params),
            beforeSend: function(xhrObj){
                // Request headers
                xhrObj.setRequestHeader("Content-Type","application/json");
                xhrObj.setRequestHeader("Ocp-Apim-Subscription-Key","{subscription key}");
            },
            type: "POST",
            // Request body
            data: "{body}",
        })
        .done(function(data) {
            alert("success");
        })
        .fail(function() {
            alert("error");
        });
    });
</script>
</body>
</html>
#import <Foundation/Foundation.h>

int main(int argc, const char * argv[])
{
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    
    NSString* path = @"https://cisaciswcuat.azure-api.net/submission/batch";
    NSArray* array = @[
                         // Request parameters
                         @"entities=true",
                      ];
    
    NSString* string = [array componentsJoinedByString:@"&"];
    path = [path stringByAppendingFormat:@"?%@", string];

    NSLog(@"%@", path);

    NSMutableURLRequest* _request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:path]];
    [_request setHTTPMethod:@"POST"];
    // Request headers
    [_request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    [_request setValue:@"{subscription key}" forHTTPHeaderField:@"Ocp-Apim-Subscription-Key"];
    // Request body
    [_request setHTTPBody:[@"{body}" dataUsingEncoding:NSUTF8StringEncoding]];
    
    NSURLResponse *response = nil;
    NSError *error = nil;
    NSData* _connectionData = [NSURLConnection sendSynchronousRequest:_request returningResponse:&response error:&error];

    if (nil != error)
    {
        NSLog(@"Error: %@", error);
    }
    else
    {
        NSError* error = nil;
        NSMutableDictionary* json = nil;
        NSString* dataString = [[NSString alloc] initWithData:_connectionData encoding:NSUTF8StringEncoding];
        NSLog(@"%@", dataString);
        
        if (nil != _connectionData)
        {
            json = [NSJSONSerialization JSONObjectWithData:_connectionData options:NSJSONReadingMutableContainers error:&error];
        }
        
        if (error || !json)
        {
            NSLog(@"Could not parse loaded json with error:%@", error);
        }
        
        NSLog(@"%@", json);
        _connectionData = nil;
    }
    
    [pool drain];

    return 0;
}
<?php
// This sample uses the Apache HTTP client from HTTP Components (http://hc.apache.org/httpcomponents-client-ga/)
require_once 'HTTP/Request2.php';

$request = new Http_Request2('https://cisaciswcuat.azure-api.net/submission/batch');
$url = $request->getUrl();

$headers = array(
    // Request headers
    'Content-Type' => 'application/json',
    'Ocp-Apim-Subscription-Key' => '{subscription key}',
);

$request->setHeader($headers);

$parameters = array(
    // Request parameters
);

$url->setQueryVariables($parameters);

$request->setMethod(HTTP_Request2::METHOD_POST);

// Request body
$request->setBody("{body}");

try
{
    $response = $request->send();
    echo $response->getBody();
}
catch (HttpException $ex)
{
    echo $ex;
}

?>
########### Python 2.7 #############
import httplib, urllib, base64

headers = {
    # Request headers
    'Content-Type': 'application/json',
    'Ocp-Apim-Subscription-Key': '{subscription key}',
}

params = urllib.urlencode({
})

try:
    conn = httplib.HTTPSConnection('cisaciswcuat.azure-api.net')
    conn.request("POST", "/submission/batch?%s" % params, "{body}", headers)
    response = conn.getresponse()
    data = response.read()
    print(data)
    conn.close()
except Exception as e:
    print("[Errno {0}] {1}".format(e.errno, e.strerror))

####################################

########### Python 3.2 #############
import http.client, urllib.request, urllib.parse, urllib.error, base64

headers = {
    # Request headers
    'Content-Type': 'application/json',
    'Ocp-Apim-Subscription-Key': '{subscription key}',
}

params = urllib.parse.urlencode({
})

try:
    conn = http.client.HTTPSConnection('cisaciswcuat.azure-api.net')
    conn.request("POST", "/submission/batch?%s" % params, "{body}", headers)
    response = conn.getresponse()
    data = response.read()
    print(data)
    conn.close()
except Exception as e:
    print("[Errno {0}] {1}".format(e.errno, e.strerror))

####################################
require 'net/http'

uri = URI('https://cisaciswcuat.azure-api.net/submission/batch')


request = Net::HTTP::Post.new(uri.request_uri)
# Request headers
request['Content-Type'] = 'application/json'
# Request headers
request['Ocp-Apim-Subscription-Key'] = '{subscription key}'
# Request body
request.body = "{body}"

response = Net::HTTP.start(uri.host, uri.port, :use_ssl => uri.scheme == 'https') do |http|
    http.request(request)
end

puts response.body