public void Edit_Instrument_Property()
        {
            const string identifierType = "Figi";
            const string figi           = "BBG000BF4KL1";

            //    Create the property value
            var propertyValue = new PropertyValue(labelValue: "Construction");
            var propertyKey   = $"Instrument/{TestDataUtilities.TutorialScope}/CustomSector";

            //    Add it to the instrument
            _instrumentsApi.UpsertInstrumentsProperties(new List <UpsertInstrumentPropertyRequest>
            {
                new UpsertInstrumentPropertyRequest(
                    identifierType: identifierType,
                    identifier: figi,
                    properties: new List <Property>
                {
                    new Property(propertyKey, propertyValue)
                }
                    )
            });

            //    Get the instrument with value
            Instrument instrument = _instrumentsApi.GetInstrument(
                identifierType: identifierType,
                identifier: figi,
                propertyKeys: new List <string> {
                propertyKey
            }
                );

            Assert.That(
                instrument.Properties.FirstOrDefault(p => p.Key == propertyKey && p.Value.LabelValue.Equals("Construction")),
                Is.Not.Null, $"Cannot find property {propertyKey} with value {propertyValue.LabelValue}");
        }