Objects are instances of a class. The class definition includes declaration of the properties that will be present in an object of that class.
So, if you need an additional property in an Appointment object, you need to modify the class definition to add the new property, Owner. Note that if you do this, all Appointment objects will have the new Owner property once the class definition is changed.
If modification to the class definition is unacceptable, you have the option of deriving a new class as a subclass of Appointment which includes the Owner property (perhaps called OwnedAppointment). Then only objects created from the new subclass will have
the Owner property.