Hypermedia Link with Type
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/link-with-type", "title": "Link With Type", "description": "Hypermedia Link with Type", "type": "object", "properties": { "href": { "type": "string" }, "type": { "type": "string" } }, "required": [ "href", "type" ] }