{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OrganizationCreate", "title": "OrganizationCreate", "properties": { "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Name", "description": "The name of the organization." }, "privileged_tools": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "title": "Privileged Tools", "description": "Whether the organization has access to privileged tools.", "default": false } }, "additionalProperties": false, "type": "object" }