{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Update Organization",
  "description": "Update mutable settings on an organization. The identifier is fixed at creation and cannot be changed.",
  "type": "object",
  "required": ["name"],
  "properties": {
    "name": {
      "type": "string",
      "title": "Organization Name",
      "description": "Display name shown in the UI and CLI. 1–255 characters.",
      "minLength": 1,
      "maxLength": 255,
      "examples": ["Acme Corporation", "My Startup", "Engineering Team"]
    }
  }
}
