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