I have a swagger object, and everything is working great. I have now come to the point that I need to add something like:
components:
schemas:
MyObj:
type: object
properties:
myExistingProperties.....
newProperty:
type: object
$ref: my.sf.package.MyNewClass
My question is how can I reference a concrete object from swagger yml?
Thanks, Brian