HATEOAS links for navigating related resources.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Links", "title": "Links", "type": "object", "description": "HATEOAS links for navigating related resources.", "properties": { "self": { "type": "object", "description": "A link to this resource.", "properties": { "href": { "type": "string", "description": "The URL of this resource." }, "type": { "type": "string", "description": "The media type." } } } }, "additionalProperties": { "type": "object", "properties": { "href": { "type": "string", "description": "The URL of the linked resource." }, "type": { "type": "string", "description": "The media type." } } } }