{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Link", "title": "Link", "type": "object", "required": [ "title", "url" ], "properties": { "title": { "type": "string", "minLength": 1 }, "url": { "type": "string", "format": "uri" }, "description": { "type": "string", "minLength": 1 } } }