{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/birdeye/refs/heads/main/json-schema/update-custom-card-request.json", "title": "Update Custom Card Request", "type": "object", "properties": { "cardId": { "type": "number" }, "title": { "type": "string" }, "description": { "type": "string" }, "imageURL": { "type": "string" }, "imagePosition": { "type": "string" }, "isVisible": { "type": "number" }, "isPinOnTop": { "type": "number" }, "clickURL": { "type": "string" }, "linkText": { "type": "string" }, "type": { "type": "string" } }, "required": [ "cardId", "title" ] }