{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/convertkit/main/json-schema/get_creator_profile_response.json", "title": "Get Creator Profile Response", "x-tag": "Accounts", "type": "object", "properties": { "profile": { "type": "object", "properties": { "name": { "type": "string" }, "byline": { "type": "string" }, "bio": { "type": "string" }, "image_url": { "type": "string" }, "profile_url": { "type": "string" } }, "required": [ "name", "byline", "bio", "image_url", "profile_url" ] } }, "required": [ "profile" ] }