{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/link", "title": "Link", "type": "object", "description": "A link to a resource related to this object.", "properties": { "href": { "type": "string", "format": "uri", "example": "https://www.example.com" }, "name": { "type": "string", "example": "Example Title" } }, "additionalProperties": false }