How do I do something like this:
"groups":{
"href":"https://api.mydomain.com/account/abC132/groups",
"items":[
]
}
I have it:
groups:
type: array
properties:
href:
type: string
items:
type: object
name: division
properties:
href:
type: string
id:
type: string
But the swagger editor does not recognize href by the properties for the group.
source
share