"""
SonyFinancialMetadata type represents the Sony Financial Metadata 
for a Vendor or Subaccount.
This is typically things like the Financial Label of Record (aka FLoR),
Repertoire Owner etc. For each of those things there is a name and a company code.
The SonyFinancialMetadata type corresponds to the GRAS Registration panel on 
the OA Vendor page: https://oa.theorchard.com/cont_mgmt/view_vendor.php?vendor_id=25824
It is read from ows-sony-metadata endpoints:
'/label_fields/vendor/<vendor_id>'
'/label_fields/subaccount/<subaccount_id>'
from repo: https://github.com/theorchard/ows-sony-metadata
"""
type SonyFinancialMetadata {
    financialLabelCode: String
    financialLabelName: String
    grasImprintCode: String
    grasImprintName: String
    repertoireOwnerCode: String
    repertoireOwnerName: String
    sapProfitCenterCode: String
    sapProfitCenterName: String
}
