{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/tours-and-activities-link-schema.json", "title": "Link", "description": "Link schema from Tours and Activities", "type": "object", "properties": { "href": { "type": "string", "format": "uri", "example": "https://example.com/resource" }, "methods": { "type": "array", "items": { "type": "string", "enum": [ "GET", "PUT", "DELETE", "POST", "PATCH" ] } } }, "example": { "href": "string" } }