{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/urban-outfitters/refs/heads/main/json-schema/affiliate-api-affiliate-link-create-schema.json", "title": "AffiliateLinkCreate", "description": "Request to create an affiliate link", "type": "object", "properties": { "targetUrl": { "type": "string", "description": "The Urban Outfitters URL to create an affiliate link for", "example": "https://www.urbanoutfitters.com/shop/prod-12345" }, "affiliateId": { "type": "string", "description": "Affiliate account identifier", "example": "aff-abc123" } }, "required": [ "targetUrl", "affiliateId" ] }