{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ShortURL", "title": "ShortURL", "type": "object", "properties": { "short_url": { "type": "string" }, "full_url": { "type": "string" } }, "required": [ "short_url", "full_url" ] }