"Creates a user and account records. Returns an account access token for the app that initiated the request. The app should save this token for later, and should wait for the user to confirm their account by clicking a link in their email inbox.",
"Statuses posted to the given account. Public (for public statuses only), or user token + `read:statuses` (for private statuses the user is authorized to see)",
"Text that will be reviewed by moderators if registrations require manual approval"
},
username:%Schema{type::string,description:"The desired username for the account"},
email:%Schema{
type::string,
nullable:true,
description:
"The email address to be used for login. Required when `account_activation_required` is enabled.",
format::email
},
password:%Schema{
type::string,
description:"The password to be used for login",
format::password
},
agreement:%Schema{
allOf:[BooleanLike],
description:
"Whether the user agrees to the local rules, terms, and policies. These should be presented to the user in order to allow them to consent before setting this parameter to TRUE."
},
locale:%Schema{
type::string,
nullable:true,
description:"The language of the confirmation email that will be sent"