{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CreateOrgOption", "description": "CreateOrgOption options for creating an organization", "type": "object", "required": [ "username" ], "properties": { "description": { "type": "string", "x-go-name": "Description" }, "email": { "type": "string", "x-go-name": "Email" }, "full_name": { "type": "string", "x-go-name": "FullName" }, "location": { "type": "string", "x-go-name": "Location" }, "repo_admin_change_team_access": { "type": "boolean", "x-go-name": "RepoAdminChangeTeamAccess" }, "username": { "type": "string", "x-go-name": "UserName" }, "visibility": { "description": "possible values are `public` (default), `limited` or `private`", "type": "string", "enum": [ "public", "limited", "private" ], "x-go-name": "Visibility" }, "website": { "type": "string", "x-go-name": "Website" } }, "x-go-package": "forgejo.org/modules/structs" }