{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api.bolt.com/schemas/profile-creation-data", "title": "profile-creation-data", "allOf": [ { "type": "object", "required": [ "create_account" ], "properties": { "create_account": { "type": "boolean", "description": "Whether or not an account should be created.", "example": true } } }, { "$ref": "#/components/schemas/profile" } ] }