open-agreements 0.7.6 → 0.7.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/content/templates/openagreements-due-diligence-request-list/template.docx +0 -0
- package/content/templates/openagreements-due-diligence-request-list/template.md +1 -1
- package/dist/core/fill-pipeline.d.ts.map +1 -1
- package/dist/core/fill-pipeline.js +0 -8
- package/dist/core/fill-pipeline.js.map +1 -1
- package/dist/core/unified-pipeline.d.ts.map +1 -1
- package/dist/core/unified-pipeline.js +4 -6
- package/dist/core/unified-pipeline.js.map +1 -1
- package/gemini-extension.json +1 -1
- package/node_modules/@xmldom/xmldom/CHANGELOG.md +939 -0
- package/node_modules/@xmldom/xmldom/LICENSE +8 -0
- package/node_modules/@xmldom/xmldom/SECURITY.md +50 -0
- package/node_modules/@xmldom/xmldom/index.d.ts +1664 -0
- package/node_modules/@xmldom/xmldom/lib/.eslintrc.yml +3 -0
- package/node_modules/@xmldom/xmldom/lib/conventions.js +429 -0
- package/node_modules/@xmldom/xmldom/lib/dom-parser.js +586 -0
- package/node_modules/@xmldom/xmldom/lib/dom.js +3192 -0
- package/node_modules/@xmldom/xmldom/lib/entities.js +2171 -0
- package/node_modules/@xmldom/xmldom/lib/errors.js +202 -0
- package/node_modules/@xmldom/xmldom/lib/grammar.js +533 -0
- package/node_modules/@xmldom/xmldom/lib/index.js +41 -0
- package/node_modules/@xmldom/xmldom/lib/sax.js +929 -0
- package/node_modules/@xmldom/xmldom/package.json +74 -0
- package/node_modules/@xmldom/xmldom/readme.md +364 -0
- package/node_modules/core-util-is/LICENSE +19 -0
- package/node_modules/core-util-is/README.md +3 -0
- package/node_modules/core-util-is/lib/util.js +107 -0
- package/node_modules/core-util-is/package.json +38 -0
- package/node_modules/immediate/LICENSE.txt +20 -0
- package/node_modules/immediate/README.md +93 -0
- package/node_modules/immediate/dist/immediate.js +75 -0
- package/node_modules/immediate/dist/immediate.min.js +1 -0
- package/node_modules/immediate/lib/browser.js +69 -0
- package/node_modules/immediate/lib/index.js +73 -0
- package/node_modules/immediate/package.json +42 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +29 -0
- package/node_modules/isarray/.npmignore +1 -0
- package/node_modules/isarray/.travis.yml +4 -0
- package/node_modules/isarray/Makefile +6 -0
- package/node_modules/isarray/README.md +60 -0
- package/node_modules/isarray/component.json +19 -0
- package/node_modules/isarray/index.js +5 -0
- package/node_modules/isarray/package.json +45 -0
- package/node_modules/isarray/test.js +20 -0
- package/node_modules/jszip/.codeclimate.yml +16 -0
- package/node_modules/jszip/.editorconfig +8 -0
- package/node_modules/jszip/.eslintrc.js +43 -0
- package/node_modules/jszip/.github/workflows/pr.yaml +58 -0
- package/node_modules/jszip/.jekyll-metadata +0 -0
- package/node_modules/jszip/.travis.yml +17 -0
- package/node_modules/jszip/CHANGES.md +204 -0
- package/node_modules/jszip/LICENSE.markdown +651 -0
- package/node_modules/jszip/README.markdown +33 -0
- package/node_modules/jszip/deps.js +37 -0
- package/node_modules/jszip/dist/jszip.js +11577 -0
- package/node_modules/jszip/dist/jszip.min.js +13 -0
- package/node_modules/jszip/graph.svg +601 -0
- package/node_modules/jszip/index.d.ts +330 -0
- package/node_modules/jszip/lib/base64.js +106 -0
- package/node_modules/jszip/lib/compressedObject.js +74 -0
- package/node_modules/jszip/lib/compressions.js +14 -0
- package/node_modules/jszip/lib/crc32.js +77 -0
- package/node_modules/jszip/lib/defaults.js +11 -0
- package/node_modules/jszip/lib/external.js +18 -0
- package/node_modules/jszip/lib/flate.js +85 -0
- package/node_modules/jszip/lib/generate/ZipFileWorker.js +539 -0
- package/node_modules/jszip/lib/generate/index.js +57 -0
- package/node_modules/jszip/lib/index.js +55 -0
- package/node_modules/jszip/lib/license_header.js +11 -0
- package/node_modules/jszip/lib/load.js +88 -0
- package/node_modules/jszip/lib/nodejs/NodejsStreamInputAdapter.js +74 -0
- package/node_modules/jszip/lib/nodejs/NodejsStreamOutputAdapter.js +42 -0
- package/node_modules/jszip/lib/nodejsUtils.js +57 -0
- package/node_modules/jszip/lib/object.js +384 -0
- package/node_modules/jszip/lib/readable-stream-browser.js +10 -0
- package/node_modules/jszip/lib/reader/ArrayReader.js +57 -0
- package/node_modules/jszip/lib/reader/DataReader.js +116 -0
- package/node_modules/jszip/lib/reader/NodeBufferReader.js +19 -0
- package/node_modules/jszip/lib/reader/StringReader.js +38 -0
- package/node_modules/jszip/lib/reader/Uint8ArrayReader.js +22 -0
- package/node_modules/jszip/lib/reader/readerFor.js +28 -0
- package/node_modules/jszip/lib/signature.js +7 -0
- package/node_modules/jszip/lib/stream/ConvertWorker.js +26 -0
- package/node_modules/jszip/lib/stream/Crc32Probe.js +24 -0
- package/node_modules/jszip/lib/stream/DataLengthProbe.js +29 -0
- package/node_modules/jszip/lib/stream/DataWorker.js +116 -0
- package/node_modules/jszip/lib/stream/GenericWorker.js +263 -0
- package/node_modules/jszip/lib/stream/StreamHelper.js +214 -0
- package/node_modules/jszip/lib/support.js +38 -0
- package/node_modules/jszip/lib/utf8.js +275 -0
- package/node_modules/jszip/lib/utils.js +501 -0
- package/node_modules/jszip/lib/zipEntries.js +261 -0
- package/node_modules/jszip/lib/zipEntry.js +293 -0
- package/node_modules/jszip/lib/zipObject.js +133 -0
- package/node_modules/jszip/package.json +67 -0
- package/node_modules/jszip/sponsors.md +21 -0
- package/node_modules/jszip/tsconfig.json +101 -0
- package/node_modules/jszip/vendor/FileSaver.js +247 -0
- package/node_modules/lie/README.md +62 -0
- package/node_modules/lie/dist/lie.js +350 -0
- package/node_modules/lie/dist/lie.min.js +1 -0
- package/node_modules/lie/dist/lie.polyfill.js +358 -0
- package/node_modules/lie/dist/lie.polyfill.min.js +1 -0
- package/node_modules/lie/lib/browser.js +273 -0
- package/node_modules/lie/lib/index.js +298 -0
- package/node_modules/lie/license.md +7 -0
- package/node_modules/lie/lie.d.ts +244 -0
- package/node_modules/lie/package.json +69 -0
- package/node_modules/lie/polyfill.js +4 -0
- package/node_modules/pako/LICENSE +21 -0
- package/node_modules/pako/README.md +191 -0
- package/node_modules/pako/dist/pako.js +6818 -0
- package/node_modules/pako/dist/pako.min.js +1 -0
- package/node_modules/pako/dist/pako_deflate.js +3997 -0
- package/node_modules/pako/dist/pako_deflate.min.js +1 -0
- package/node_modules/pako/dist/pako_inflate.js +3300 -0
- package/node_modules/pako/dist/pako_inflate.min.js +1 -0
- package/node_modules/pako/index.js +14 -0
- package/node_modules/pako/lib/deflate.js +400 -0
- package/node_modules/pako/lib/inflate.js +423 -0
- package/node_modules/pako/lib/utils/common.js +105 -0
- package/node_modules/pako/lib/utils/strings.js +187 -0
- package/node_modules/pako/lib/zlib/README +59 -0
- package/node_modules/pako/lib/zlib/adler32.js +51 -0
- package/node_modules/pako/lib/zlib/constants.js +68 -0
- package/node_modules/pako/lib/zlib/crc32.js +59 -0
- package/node_modules/pako/lib/zlib/deflate.js +1874 -0
- package/node_modules/pako/lib/zlib/gzheader.js +58 -0
- package/node_modules/pako/lib/zlib/inffast.js +345 -0
- package/node_modules/pako/lib/zlib/inflate.js +1556 -0
- package/node_modules/pako/lib/zlib/inftrees.js +343 -0
- package/node_modules/pako/lib/zlib/messages.js +32 -0
- package/node_modules/pako/lib/zlib/trees.js +1222 -0
- package/node_modules/pako/lib/zlib/zstream.js +47 -0
- package/node_modules/pako/package.json +44 -0
- package/node_modules/process-nextick-args/index.js +45 -0
- package/node_modules/process-nextick-args/license.md +19 -0
- package/node_modules/process-nextick-args/package.json +25 -0
- package/node_modules/process-nextick-args/readme.md +18 -0
- package/node_modules/readable-stream/.travis.yml +34 -0
- package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/readable-stream/README.md +58 -0
- package/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/readable-stream/lib/_stream_writable.js +685 -0
- package/node_modules/readable-stream/lib/internal/streams/BufferList.js +78 -0
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +84 -0
- package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/readable-stream/package.json +52 -0
- package/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/setimmediate/LICENSE.txt +20 -0
- package/node_modules/setimmediate/package.json +30 -0
- package/node_modules/setimmediate/setImmediate.js +186 -0
- package/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/string_decoder/README.md +47 -0
- package/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/string_decoder/package.json +31 -0
- package/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/util-deprecate/package.json +27 -0
- package/package.json +1 -1
- package/skills/client-email/SKILL.md +8 -6
- package/skills/employment-contract/SKILL.md +23 -6
- package/skills/non-compete-contract-explainer/content/alabama.md +251 -0
- package/skills/non-compete-contract-explainer/content/alaska.md +160 -0
- package/skills/non-compete-contract-explainer/content/american-samoa.md +187 -0
- package/skills/non-compete-contract-explainer/content/arizona.md +293 -0
- package/skills/non-compete-contract-explainer/content/arkansas.md +235 -0
- package/skills/non-compete-contract-explainer/content/california.md +270 -0
- package/skills/non-compete-contract-explainer/content/cnmi.md +168 -0
- package/skills/non-compete-contract-explainer/content/colorado.md +277 -0
- package/skills/non-compete-contract-explainer/content/connecticut.md +220 -0
- package/skills/non-compete-contract-explainer/content/delaware.md +222 -0
- package/skills/non-compete-contract-explainer/content/district-of-columbia.md +263 -0
- package/skills/non-compete-contract-explainer/content/florida.md +267 -0
- package/skills/non-compete-contract-explainer/content/georgia.md +323 -0
- package/skills/non-compete-contract-explainer/content/guam.md +180 -0
- package/skills/non-compete-contract-explainer/content/hawaii.md +236 -0
- package/skills/non-compete-contract-explainer/content/idaho.md +258 -0
- package/skills/non-compete-contract-explainer/content/illinois.md +266 -0
- package/skills/non-compete-contract-explainer/content/india.md +269 -0
- package/skills/non-compete-contract-explainer/content/indiana.md +253 -0
- package/skills/non-compete-contract-explainer/content/iowa.md +232 -0
- package/skills/non-compete-contract-explainer/content/kansas.md +227 -0
- package/skills/non-compete-contract-explainer/content/kentucky.md +201 -0
- package/skills/non-compete-contract-explainer/content/louisiana.md +272 -0
- package/skills/non-compete-contract-explainer/content/maine.md +178 -0
- package/skills/non-compete-contract-explainer/content/maryland.md +244 -0
- package/skills/non-compete-contract-explainer/content/massachusetts.md +272 -0
- package/skills/non-compete-contract-explainer/content/michigan.md +222 -0
- package/skills/non-compete-contract-explainer/content/minnesota.md +171 -0
- package/skills/non-compete-contract-explainer/content/mississippi.md +237 -0
- package/skills/non-compete-contract-explainer/content/missouri.md +219 -0
- package/skills/non-compete-contract-explainer/content/montana.md +202 -0
- package/skills/non-compete-contract-explainer/content/nebraska.md +206 -0
- package/skills/non-compete-contract-explainer/content/nevada.md +278 -0
- package/skills/non-compete-contract-explainer/content/new-hampshire.md +233 -0
- package/skills/non-compete-contract-explainer/content/new-jersey.md +277 -0
- package/skills/non-compete-contract-explainer/content/new-mexico.md +244 -0
- package/skills/non-compete-contract-explainer/content/new-york.md +226 -0
- package/skills/non-compete-contract-explainer/content/north-carolina.md +346 -0
- package/skills/non-compete-contract-explainer/content/north-dakota.md +187 -0
- package/skills/non-compete-contract-explainer/content/ohio.md +207 -0
- package/skills/non-compete-contract-explainer/content/oklahoma.md +196 -0
- package/skills/non-compete-contract-explainer/content/oregon.md +359 -0
- package/skills/non-compete-contract-explainer/content/pennsylvania.md +254 -0
- package/skills/non-compete-contract-explainer/content/philippines.md +211 -0
- package/skills/non-compete-contract-explainer/content/puerto-rico.md +163 -0
- package/skills/non-compete-contract-explainer/content/rhode-island.md +171 -0
- package/skills/non-compete-contract-explainer/content/singapore.md +229 -0
- package/skills/non-compete-contract-explainer/content/south-carolina.md +226 -0
- package/skills/non-compete-contract-explainer/content/south-dakota.md +222 -0
- package/skills/non-compete-contract-explainer/content/tennessee.md +251 -0
- package/skills/non-compete-contract-explainer/content/texas.md +297 -0
- package/skills/non-compete-contract-explainer/content/us-virgin-islands.md +193 -0
- package/skills/non-compete-contract-explainer/content/utah.md +250 -0
- package/skills/non-compete-contract-explainer/content/vermont.md +193 -0
- package/skills/non-compete-contract-explainer/content/virginia.md +213 -0
- package/skills/non-compete-contract-explainer/content/washington.md +296 -0
- package/skills/non-compete-contract-explainer/content/west-virginia.md +187 -0
- package/skills/non-compete-contract-explainer/content/wisconsin.md +293 -0
- package/skills/non-compete-contract-explainer/content/wyoming.md +55 -45
- package/skills/non-compete-contract-explainer/manifest.json +523 -1
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
---
|
|
2
|
+
jurisdiction: "American Samoa"
|
|
3
|
+
slug: american-samoa
|
|
4
|
+
countryCode: US
|
|
5
|
+
snapshotAsOf: "2026-06-08"
|
|
6
|
+
lastReviewed: "2026-06-03"
|
|
7
|
+
canonicalUrl: https://openagreements.org/legal/non-compete/american-samoa
|
|
8
|
+
license: CC BY 4.0
|
|
9
|
+
stale: false
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
> [!IMPORTANT]
|
|
13
|
+
> **Informational only — not legal advice.** This is a snapshot of an OpenAgreements practice note,
|
|
14
|
+
> provided for general information. It is not legal advice, does not create an attorney-client
|
|
15
|
+
> relationship, and is not a substitute for a licensed attorney in the relevant jurisdiction.
|
|
16
|
+
> Laws change; verify against the canonical version before relying on it.
|
|
17
|
+
>
|
|
18
|
+
> **Canonical:** https://openagreements.org/legal/non-compete/american-samoa · **Snapshot as of:** 2026-06-08 · License: CC BY 4.0 · © UseJunior
|
|
19
|
+
|
|
20
|
+
# Non-Competes in American Samoa[^about]
|
|
21
|
+
|
|
22
|
+
American Samoa has no non-compete statute and no on-point case law; its High Court would gap-fill through the imported common law of A.S.C.A. § 1.0201 and the Restatement reasonableness test, while local public policy and a tiny island economy make aggressive covenants hard to enforce.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## At a glance
|
|
26
|
+
|
|
27
|
+
| Question | American Samoa |
|
|
28
|
+
| --- | --- |
|
|
29
|
+
| **Are non-competes enforceable?** | Unsettled |
|
|
30
|
+
| **Bottom line** | No non-compete statute and no on-point case law; a court would likely apply the Restatement reasonableness test, with local public policy disfavoring broad restraints. |
|
|
31
|
+
| **Main law or case** | A.S.C.A. § 1.0201 (imported common law); Restatement (Second) of Contracts § 188 |
|
|
32
|
+
| **Can a court narrow it?** | Unsettled |
|
|
33
|
+
| **Applies to contractors?** | Unclear |
|
|
34
|
+
| **Restriction extended during a breach?** | Silent — no statute or case law |
|
|
35
|
+
| **Maximum length set by law** | No statutory limit |
|
|
36
|
+
|
|
37
|
+
## Are employee non-compete agreements enforceable in American Samoa? {#employee-noncompetes}
|
|
38
|
+
|
|
39
|
+
**Short answer.** Probably sometimes, but the law is genuinely unsettled. American Samoa has no statute that governs employee non-competes and no High Court decision that has squarely enforced or struck one down. A covenant would be judged under the common law the High Court imports through A.S.C.A. § 1.0201 [^asca-1-0201], which in practice means the Restatement reasonableness framework.
|
|
40
|
+
|
|
41
|
+
American Samoa is an unincorporated U.S. territory with no federal district court, so an employment-covenant dispute is decided in the first instance by the High Court of American Samoa applying territorial law. It is not a per se ban jurisdiction like California or North Dakota, and it has no statutory-reasonableness regime either. The starting point is the reception statute: A.S.C.A. § 1.0201 makes effective *so much of the common law of England as is suitable to conditions in American Samoa* [^asca-1-0201], and the High Court has long read that to import modern U.S. common law and the Restatements.
|
|
42
|
+
|
|
43
|
+
For in-house counsel, the practical consequence is that almost every operating rule below is a *prediction* rather than a holding. There is no code section to cite and no controlling non-compete case, so a covenant that would survive comfortably in a blue-pencil state carries real first-impression risk here.
|
|
44
|
+
|
|
45
|
+
## What test would the High Court of American Samoa apply to a non-compete? {#governing-test}
|
|
46
|
+
|
|
47
|
+
**Short answer.** The High Court would most likely apply the reasonableness framework of the Restatement (Second) of Contracts § 188, imported through A.S.C.A. § 1.0201. It has said it should ordinarily follow the Restatement when it construes the common law [^tung-restatement], and that the common law of contracts applies in American Samoa unless a territorial statute or local conditions displace it [^ilalio-common-law].
|
|
48
|
+
|
|
49
|
+
Two local decisions anchor that prediction. In *Tung v. Ah Sam*, the High Court adopted the Restatement as its default tool for defining the common law [^tung-restatement], and in *Development Bank of American Samoa v. Ilalio* it confirmed that imported contract doctrine governs ordinary contract disputes [^ilalio-common-law]. Restatement § 188 asks whether a restraint is greater than necessary to protect a legitimate interest and whether the employer's need is outweighed by hardship to the worker and injury to the public.
|
|
50
|
+
|
|
51
|
+
"In defining the common law, and where not bound otherwise by prior decision of this Court, it is ordinarily appropriate that the Restatement of the Law be followed in order to more nearly effect uniformity of decision."[^tung-restatement]
|
|
52
|
+
|
|
53
|
+
American Samoa is not hostile to restraints as a category. In *Lindgren v. Betham*, the High Court enforced a restrictive covenant in a lease and framed the governing principle as enforcement subject to an equity and public-policy override [^lindgren-covenant]. Translated to employment, an employer would have to show a genuine protectable interest and a scope no broader than necessary, knowing that equity and public policy supply the limits.
|
|
54
|
+
|
|
55
|
+
"When presented with a violation of a restrictive covenant, courts are obligated to enforce the covenant unless the complaining party can show that enforcement would be inequitable or contrary to public policy."[^lindgren-covenant]
|
|
56
|
+
|
|
57
|
+
## Does any American Samoa statute address non-competes? {#statutory-silence}
|
|
58
|
+
|
|
59
|
+
**Short answer.** No. The American Samoa Code Annotated has no chapter on restrictive covenants, employee mobility, or trade secrets, and the restraint-of-trade language that does appear in the code sits in sector-specific statutes, not in any employment provision [^asca-20-0401]. The nearest labor provision is a right-to-work rule about union membership, not competition [^asca-32-0104].
|
|
60
|
+
|
|
61
|
+
The statute titled *Illegal trade restraints*, A.S.C.A. § 20.0401, regulates only the transportation of passengers and freight by water — deferred rebates and discriminatory shipping contracts [^asca-20-0401]. The territory's other competition provisions are similarly narrow — for example, a separate section bars restraint of trade in the business of insurance. None is a general restraint-of-trade or employment-covenant statute, so none supplies a rule for a worker's covenant.
|
|
62
|
+
|
|
63
|
+
Title 32's labor chapter confirms the silence. A.S.C.A. § 32.0104 makes it unlawful to condition employment on union membership or dues [^asca-32-0104]; it governs union-security arrangements, not post-employment competition. This legislative vacuum is itself load-bearing: with no statute either authorizing or banning non-competes, the entire question falls to the High Court's imported common law.
|
|
64
|
+
|
|
65
|
+
## What consideration supports a non-compete, and what is the employment baseline? {#consideration}
|
|
66
|
+
|
|
67
|
+
**Short answer.** There is no American Samoa authority on what consideration supports a non-compete or on whether continued employment alone suffices. The baseline is at-will employment [^palelei-atwill], and a covenant extracted through an unfair bargaining process is exposed to the High Court's unconscionability doctrine [^ilalio-unconscionability].
|
|
68
|
+
|
|
69
|
+
American Samoa presumes at-will employment unless the parties contract otherwise. *Palelei v. Star-Kist Samoa, Inc.* states that without a fixed term or a contractual restriction on discharge, employment is at will [^palelei-atwill], and *Velega v. Legislature of American Samoa* repeats that the presumption yields only to an express or implied contractual provision [^velega-atwill].
|
|
70
|
+
|
|
71
|
+
"In American Samoa, employment is presumed to be at will, and the employee can be fired without just or good cause, unless there exists an express or implied contractual provision restricting the employer's rights to terminate the employee."[^velega-atwill]
|
|
72
|
+
|
|
73
|
+
What the local cases do *not* settle is whether merely keeping an at-will job is enough to support a covenant signed after hiring. The High Court has, however, signaled skepticism of one-sided bargains: *Ilalio* will refuse to enforce a contract where both its substance and the bargaining process are unconscionable [^ilalio-unconscionability], and *Atofau v. Tuufuli* holds that a bare gratuity cannot be turned into consideration by a later promise [^atofau-consideration].
|
|
74
|
+
|
|
75
|
+
> [!CAUTION]
|
|
76
|
+
> **Drafting note.**
|
|
77
|
+
>
|
|
78
|
+
> Because no American Samoa case blesses continued employment as consideration, give a mid-stream covenant its own distinct consideration — a signing bonus, a raise, or a guaranteed term — rather than relying on continued at-will employment. A covenant imposed on a lower-paid worker without new consideration is the fact pattern most exposed to an unconscionability defense [^ilalio-unconscionability][^atofau-consideration].
|
|
79
|
+
|
|
80
|
+
## Will the High Court narrow an overbroad covenant, or void it? {#court-narrowing}
|
|
81
|
+
|
|
82
|
+
**Short answer.** The High Court may be open to narrowing it, but no American Samoa case has narrowed an employment covenant. On reconsideration of a defective-lease dispute, the court held that a court can excise illegal portions of a contract and enforce the remainder, or modify an illegal term to conform to law — citing a non-compete case as its authority [^samoa-aviation-excise].
|
|
83
|
+
|
|
84
|
+
In *American Samoa Gov't v. Samoa Aviation, Inc.*, the High Court refused to void a defective lease and instead endorsed broad equitable power to sever or modify unlawful terms [^samoa-aviation-excise]. Tellingly, it anchored that power in *Alston Studios*, a federal covenant-not-to-compete case — which suggests the court might be receptive to reforming an overbroad employment restraint rather than discarding it.
|
|
85
|
+
|
|
86
|
+
"Finally, it is well settled that a court can excise the illegal portions of a contract and enforce the remainder, with or without other compensating adjustments in the contractual obligations of the parties; or may modify an illegal term to make it conform to the law."[^samoa-aviation-excise]
|
|
87
|
+
|
|
88
|
+
That tendency is reinforced by *Ilalio*'s reliance on Restatement § 208, which lets a court enforce the remainder of a contract or limit an unconscionable term rather than strike everything [^ilalio-partial]. Still, reformation here is a prediction: no American Samoa decision has blue-penciled an employee non-compete, so an employer should draft to a defensible scope rather than count on judicial rescue.
|
|
89
|
+
|
|
90
|
+
## Does the restricted period toll or extend if the employee breaches? {#tolling}
|
|
91
|
+
|
|
92
|
+
**Short answer.** American Samoa law is silent. No statute or High Court decision addresses whether a non-compete clock pauses during a breach, during litigation, or during an injunction application — and the deep-research record finds no local authority on either contractual or equitable tolling. The prudent assumption is that a court will not pause the clock unless the contract says so, so any extension-on-breach must be drafted expressly [^asca-1-0201-tolling].
|
|
93
|
+
|
|
94
|
+
Because the territory imports common-law contract principles through A.S.C.A. § 1.0201 [^asca-1-0201-tolling], a clearly drafted contractual tolling clause — extending the restricted period for any time the employee is in breach — preserves the employer's best argument, though no American Samoa authority confirms such a clause will be enforced. Judicial or equitable tolling is a weaker bet still: there is no local authority granting it, and nothing suggests the High Court would rewrite a covenant to add time a party did not bargain for.
|
|
95
|
+
|
|
96
|
+
> [!CAUTION]
|
|
97
|
+
> **Drafting note.**
|
|
98
|
+
>
|
|
99
|
+
> Do not assume the High Court will equitably extend a covenant while litigation runs. Write the tolling mechanism into the agreement expressly, keep the base term short enough to be reasonable on its own, and treat tolling as an open question of first impression in the territory [^asca-1-0201-tolling].
|
|
100
|
+
|
|
101
|
+
## What remedies can an employer obtain for a breach? {#remedies}
|
|
102
|
+
|
|
103
|
+
**Short answer.** Injunctive relief is available but hard-won. American Samoa's injunction statutes require a substantial likelihood of success plus great or irreparable injury for a preliminary injunction [^asca-43-1301], and a permanent injunction issues only after trial and only where money damages are inadequate [^asca-43-1302].
|
|
104
|
+
|
|
105
|
+
The statutory standard is exacting, and the case law enforces it. In *Drabble v. Mikaele*, the High Court restated the two-part preliminary-injunction test — substantial likelihood of success and great or irreparable harm before trial [^drabble-standard].
|
|
106
|
+
|
|
107
|
+
"For a preliminary injunction to issue, the applicant must show a substantial likelihood that he will prevail at trial on the merits and obtain a permanent injunction, and that he will suffer great or irreparable harm before a full and final trial can be fairly held on the requested permanent injunction."[^drabble-standard]
|
|
108
|
+
|
|
109
|
+
Two further limits matter for a covenant plaintiff. The High Court will not issue an injunction that merely punishes a breach: in *Leaana v. Laban* it refused relief that would serve no purpose but punishment [^leaana-punishment]. And *Thompson v. Toluao* makes inadequacy of a legal remedy the defining prerequisite of an injunction [^thompson-inadequacy], so an employer whose loss is quantifiable as money damages may be left to those damages alone.
|
|
110
|
+
|
|
111
|
+
"Punishment is not the purpose behind injunctive relief."[^leaana-punishment]
|
|
112
|
+
|
|
113
|
+
Damages are correspondingly constrained. *Moea'i v. Reid* declined to apply a wage statute's punitive-damages provision to a contractual wage claim above the statutory minimum [^moeai-punitive], a reminder that territorial punitive damages are creatures of specific statutes; the local non-compete corpus identifies no special damages remedy, so a covenant plaintiff should expect to prove ordinary compensatory damages.
|
|
114
|
+
|
|
115
|
+
## How are confidentiality clauses, non-solicits, physician, and sale-of-business covenants treated? {#other-covenants}
|
|
116
|
+
|
|
117
|
+
**Short answer.** There is no American Samoa authority drawing distinct rules for non-solicitation, confidentiality, physician, or sale-of-business covenants. Each would be analyzed under the same imported reasonableness framework, with trade-secret confidentiality recognized in a limited agency-records regulation [^asac-24-0109] and sale-of-business covenants likely treated more leniently than employee restraints.
|
|
118
|
+
|
|
119
|
+
American Samoa has not adopted the Uniform Trade Secrets Act. The closest territorial recognition of trade secrets is narrow: an administrative-code provision shields trade secrets in environmental-agency records from public disclosure [^asac-24-0109]. There is no general trade-secret statute and no authority on employee confidentiality covenants, so the enforceability of an NDA remains a common-law prediction. A non-solicitation or confidentiality clause that operates as a *de facto* bar on competing would be analyzed as a non-compete under the same Restatement § 188 reasonableness test.
|
|
120
|
+
|
|
121
|
+
A physician or other scarce-professional covenant is likely to be especially vulnerable. Under Restatement § 188's injury-to-the-public prong, removing a single doctor, technician, or other scarce professional from a remote island economy is a strong public-interest argument against enforcement — the kind of *likely injury to the public* that the High Court's equity-and-public-policy override in *Lindgren* could weigh heavily [^lindgren-covenant-2]. Sale-of-business covenants, where bargaining power is more even and goodwill is being purchased, would likely be enforced more readily than an employee restraint.
|
|
122
|
+
|
|
123
|
+
## Why might enforcement be harder in American Samoa than on the mainland? {#island-economy-public-policy}
|
|
124
|
+
|
|
125
|
+
**Short answer.** Two territorial features cut against aggressive covenants: a public policy that prioritizes the Samoan way of life [^tavai-policy], and a tiny island economy in which a territory-wide restraint can amount to banishment from the worker's profession. A.S.C.A. § 1.0201 imports only common law *suitable to conditions in American Samoa*, and § 1.0202 preserves Samoan custom [^asca-1-0202].
|
|
126
|
+
|
|
127
|
+
The High Court has described the protection of the Samoan way of life as its primary responsibility [^tavai-policy], and § 1.0202 preserves the customs of the Samoan people where they do not conflict with law [^asca-1-0202]. Those commitments give a worker a territory-specific public-policy argument: a covenant that meaningfully limits a local person's ability to earn a livelihood may be *unsuitable to conditions* in the territory in a way the suitability and custom provisions invite a court to weigh.
|
|
128
|
+
|
|
129
|
+
Geography compounds the point. American Samoa is roughly 76 square miles, so a territory-wide non-compete does not merely limit where a worker competes — it can force the worker to leave the territory entirely. Under the Restatement reasonableness test the High Court would import, that scale makes overbreadth and undue-hardship objections far easier to sustain than a comparable restraint in a large mainland market.
|
|
130
|
+
|
|
131
|
+
## What recent developments should employers monitor? {#recent-developments}
|
|
132
|
+
|
|
133
|
+
**Short answer.** As of June 3, 2026, nothing has displaced the imported-common-law framework. American Samoa's Fono has not enacted a non-compete statute, so A.S.C.A. § 1.0201 gap-filling still controls [^asca-1-0201-current], and the vacated federal FTC Non-Compete Rule supplies no operative territorial rule.
|
|
134
|
+
|
|
135
|
+
Two background developments matter only for monitoring. The FTC's 2024 Non-Compete Rule was struck down in litigation and the agency has abandoned it, so there is no federal ban to apply in American Samoa. And no targeted non-compete enactment was located in the public Fono legislative materials reviewed for this note. The framework therefore remains entirely judicial, which means the most reliable signal of change would be a first High Court decision on an employee non-compete rather than a statute [^asca-1-0201-current].
|
|
136
|
+
|
|
137
|
+
The practical takeaway is stability layered on uncertainty: the rules will not move by legislation soon, but because no court has yet decided an employee non-compete, the first case to reach the High Court could set the baseline in either direction.
|
|
138
|
+
|
|
139
|
+
[^about]: By Steven Obiajulu, J.D. Published by [openagreements.org](https://openagreements.org) · Maintained by [UseJunior](https://usejunior.com). Last reviewed 2026-06-03. License: CC BY 4.0. Steven Obiajulu, J.D. is admitted in New York, not American Samoa. This article synthesizes American Samoa primary law and is not legal advice from a American Samoa-admitted attorney. This article is for informational purposes only and does not create an attorney-client relationship.
|
|
140
|
+
|
|
141
|
+
[^asca-1-0201]: **A.S.C.A. § 1.0201 — Laws applicable in American Samoa** — "so much of the common law of England as is suitable to conditions in American Samoa and not inconsistent with this section." *A.S.C.A. § 1.0201.* <https://asbar.org/code-annotated/1-0201-laws-applicable-in-american-samoa/>
|
|
142
|
+
|
|
143
|
+
[^tung-restatement]: **Tung v. Ah Sam** — "In defining the common law, and where not bound otherwise by prior decision of this Court, it is ordinarily appropriate that the Restatement of the Law be followed in order to more nearly effect uniformity of decision." *Tung v. Ah Sam, 4 A.S.R. 764 (Trial Div. 1971).* <https://asbar.org/case-law/ah-sam-tung-v/>
|
|
144
|
+
|
|
145
|
+
[^ilalio-common-law]: **Development Bank of American Samoa v. Ilalio** — "The common law of contracts applies in American Samoa unless it conflicts with a territorial statute or is unsuitable to local conditions." *Development Bank of American Samoa v. Ilalio, 5 A.S.R.2d 1 (Trial Div. 1987).* <https://asbar.org/case-law/development-bank-v-ilalio/>
|
|
146
|
+
|
|
147
|
+
[^lindgren-covenant]: **Lindgren v. Betham** — "When presented with a violation of a restrictive covenant, courts are obligated to enforce the covenant unless the complaining party can show that enforcement would be inequitable or contrary to public policy." *Lindgren v. Betham, 20 A.S.R.2d 98 (App. Div. 1992).* <https://asbar.org/case-law/lindgren-v-betham/>
|
|
148
|
+
|
|
149
|
+
[^asca-20-0401]: **A.S.C.A. § 20.0401 — Illegal trade restraints** — "No person may directly or indirectly, in respect to the transportation by water of passengers or freight between a port or landing of American Samoa or between islands of American Samoa or between a port of American Samoa and a port of another country:" *A.S.C.A. § 20.0401.* <https://asbar.org/code-annotated/20-0401-illegal-trade-restraints/>
|
|
150
|
+
|
|
151
|
+
[^asca-32-0104]: **A.S.C.A. § 32.0104 — Unlawful acts of employer** — "It is unlawful for any employer to: (1) require an employee, as a condition or employment or of continuance of employment, to be or become or remain a member or affiliate of a labor organization;" *A.S.C.A. § 32.0104.* <https://asbar.org/code-annotated/32-0104-unlawful-acts-of-employer/>
|
|
152
|
+
|
|
153
|
+
[^palelei-atwill]: **Palelei v. Star-Kist Samoa, Inc.** — "If the parties to an employment contract have neither fixed a definite term of employment nor created any contractual obstacle to the right of discretionary discharge, then the contract is for employment at will and the employer may discharge the employee without incurring liability." *Palelei v. Star-Kist Samoa, Inc., 5 A.S.R.2d 162 (Trial Div. 1987).* <https://asbar.org/case-law/5asr2d162/>
|
|
154
|
+
|
|
155
|
+
[^ilalio-unconscionability]: **Development Bank of American Samoa v. Ilalio** — "A contract is ordinarily rendered unenforceable on the ground of unconscionability only when both its substance and the bargaining process leading up to it are unconscionable." *Development Bank of American Samoa v. Ilalio, 5 A.S.R.2d 1 (Trial Div. 1987).* <https://asbar.org/case-law/development-bank-v-ilalio/>
|
|
156
|
+
|
|
157
|
+
[^velega-atwill]: **Velega v. Legislature of American Samoa** — "In American Samoa, employment is presumed to be at will, and the employee can be fired without just or good cause, unless there exists an express or implied contractual provision restricting the employer's rights to terminate the employee." *Velega v. Legislature of American Samoa, 4 A.S.R.3d 145 (Trial Div. 2000).* <https://asbar.org/case-law/4asr3d145/>
|
|
158
|
+
|
|
159
|
+
[^atofau-consideration]: **Atofau v. Tuufuli** — "Gratuity cannot be turned into consideration by subsequent promise to pay therefor so as to make valid contract, and promise to give land after receipt of gratuity is not enforceable." *Atofau v. Tuufuli, 2 A.S.R. 414 (1948).* <https://asbar.org/case-law/atofau-v-tuufuli/>
|
|
160
|
+
|
|
161
|
+
[^samoa-aviation-excise]: **American Samoa Gov't v. Samoa Aviation, Inc.** — "Finally, it is well settled that a court can excise the illegal portions of a contract and enforce the remainder, with or without other compensating adjustments in the contractual obligations of the parties; or may modify an illegal term to make it conform to the law." *American Samoa Gov't v. Samoa Aviation, Inc., 13 A.S.R.2d 65 (Trial Div. 1989) (on motions for new trial and modification).* <https://asbar.org/case-law/american-samoa-govt-v-samoa-aviation-inc-d96/>
|
|
162
|
+
|
|
163
|
+
[^ilalio-partial]: **Development Bank of American Samoa v. Ilalio** — "A contract is ordinarily rendered unenforceable on the ground of unconscionability only when both its substance and the bargaining process leading up to it are unconscionable." *Development Bank of American Samoa v. Ilalio, 5 A.S.R.2d 1 (Trial Div. 1987).* <https://asbar.org/case-law/development-bank-v-ilalio/>
|
|
164
|
+
|
|
165
|
+
[^asca-1-0201-tolling]: **A.S.C.A. § 1.0201 — Laws applicable in American Samoa** — "so much of the common law of England as is suitable to conditions in American Samoa and not inconsistent with this section." *A.S.C.A. § 1.0201.* <https://asbar.org/code-annotated/1-0201-laws-applicable-in-american-samoa/>
|
|
166
|
+
|
|
167
|
+
[^asca-43-1301]: **A.S.C.A. § 43.1301 — Injunctions: Definitions** — "there is a substantial likelihood that the applicant will prevail at trial on the merits and that a permanent injunction will be issued against the opposing party; and (2) great or irreparable injury will result to the applicant before a full and final trial can be fairly held on whether a permanent injunction should issue." *A.S.C.A. § 43.1301(j).* <https://asbar.org/code-annotated/43-1301-definitions/>
|
|
168
|
+
|
|
169
|
+
[^asca-43-1302]: **A.S.C.A. § 43.1302 — Issuance of permanent injunction** — "A permanent injunction may be issued by a court having subject matter jurisdiction of the case and personal jurisdiction of the opposing party only after a full and final trial on the merits of the applicant's claim and determination that a judgment for money damages will inadequately remedy the complained of wrong." *A.S.C.A. § 43.1302.* <https://asbar.org/code-annotated/43-1302-issuance-of-permanent-injunction/>
|
|
170
|
+
|
|
171
|
+
[^drabble-standard]: **Drabble v. Mikaele** — "For a preliminary injunction to issue, the applicant must show a substantial likelihood that he will prevail at trial on the merits and obtain a permanent injunction, and that he will suffer great or irreparable harm before a full and final trial can be fairly held on the requested permanent injunction." *Drabble v. Mikaele (Land & Titles Div. 2004).* <https://asbar.org/case-law/drabble-v-mikaele/>
|
|
172
|
+
|
|
173
|
+
[^leaana-punishment]: **Leaana v. Laban** — "Punishment is not the purpose behind injunctive relief." *Leaana v. Laban, 12 A.S.R.2d 93 (Land & Titles Div. 1989).* <https://asbar.org/case-law/laban-leaana-v/>
|
|
174
|
+
|
|
175
|
+
[^thompson-inadequacy]: **Thompson v. Toluao** — "As an equitable remedy, the most distinguishing prerequisite of permanent injunctive relief is the inadequacy of a remedy at law, usually money damages." *Thompson v. Toluao, 24 A.S.R.2d 127 (Land & Titles Div. 1993).* <https://asbar.org/case-law/24asr2d127/>
|
|
176
|
+
|
|
177
|
+
[^moeai-punitive]: **Moea'i v. Reid** — "this provision does not apply to an action for breach of contract where, although the employee has not been paid, his contractual wage was higher than the statutory minimum." *Moea'i v. Reid, 9 A.S.R.2d 48 (Trial Div. 1988).* <https://asbar.org/case-law/9asr2d48/>
|
|
178
|
+
|
|
179
|
+
[^asac-24-0109]: **A.S.A.C. § 24.0109 — Confidentiality of records (trade secrets)** — "would otherwise tend to affect adversely the competitive position of such person by revealing trade secrets, the Commission shall consider such record, report, information, or particular portion thereof confidential." *A.S.A.C. § 24.0109.* <https://asbar.org/code-annotated/24-0109-confidentiality-of-records-exceptions-in-government-usage/>
|
|
180
|
+
|
|
181
|
+
[^lindgren-covenant-2]: **Lindgren v. Betham** — "When presented with a violation of a restrictive covenant, courts are obligated to enforce the covenant unless the complaining party can show that enforcement would be inequitable or contrary to public policy." *Lindgren v. Betham, 20 A.S.R.2d 98 (App. Div. 1992).* <https://asbar.org/case-law/lindgren-v-betham/>
|
|
182
|
+
|
|
183
|
+
[^tavai-policy]: **Tavai v. Silao** — "the protection of the Samoan way of life is the court's primary responsibility." *Tavai v. Silao, 2 A.S.R.2d 1 (Land & Titles Div. 1981).* <https://asbar.org/case-law/2asr2d1/>
|
|
184
|
+
|
|
185
|
+
[^asca-1-0202]: **A.S.C.A. § 1.0202 — Preservation of Samoan customs** — "The customs of the Samoan people not in conflict with the laws of American Samoa or the laws of the United States concerning American Samoa shall be preserved." *A.S.C.A. § 1.0202.* <https://asbar.org/code-annotated/1-0202-preservation-of-samoan-customs/>
|
|
186
|
+
|
|
187
|
+
[^asca-1-0201-current]: **A.S.C.A. § 1.0201 — Laws applicable in American Samoa** — "so much of the common law of England as is suitable to conditions in American Samoa and not inconsistent with this section." *A.S.C.A. § 1.0201.* <https://asbar.org/code-annotated/1-0201-laws-applicable-in-american-samoa/>
|
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
---
|
|
2
|
+
jurisdiction: "Arizona"
|
|
3
|
+
slug: arizona
|
|
4
|
+
countryCode: US
|
|
5
|
+
snapshotAsOf: "2026-06-08"
|
|
6
|
+
lastReviewed: "2026-06-03"
|
|
7
|
+
canonicalUrl: https://openagreements.org/legal/non-compete/arizona
|
|
8
|
+
license: CC BY 4.0
|
|
9
|
+
stale: false
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
> [!IMPORTANT]
|
|
13
|
+
> **Informational only — not legal advice.** This is a snapshot of an OpenAgreements practice note,
|
|
14
|
+
> provided for general information. It is not legal advice, does not create an attorney-client
|
|
15
|
+
> relationship, and is not a substitute for a licensed attorney in the relevant jurisdiction.
|
|
16
|
+
> Laws change; verify against the canonical version before relying on it.
|
|
17
|
+
>
|
|
18
|
+
> **Canonical:** https://openagreements.org/legal/non-compete/arizona · **Snapshot as of:** 2026-06-08 · License: CC BY 4.0 · © UseJunior
|
|
19
|
+
|
|
20
|
+
# Non-Competes in Arizona[^about]
|
|
21
|
+
|
|
22
|
+
A question-by-question summary of Arizona non-compete law, including the common-law reasonableness test, the strict no-rewrite (blue-pencil) rule, physician covenants under Valley Medical Specialists v. Farber, the broadcast-employee ban in A.R.S. § 23-494, continued-employment consideration, confidentiality covenants treated as de facto non-competes, the Arizona Uniform Trade Secrets Act, sale-of-business covenants, tolling, attorney fees, and the failed HB 2361 statewide-ban bill.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## At a glance
|
|
26
|
+
|
|
27
|
+
| Question | Arizona |
|
|
28
|
+
| --- | --- |
|
|
29
|
+
| **Are non-competes enforceable?** | Allowed if reasonable |
|
|
30
|
+
| **Bottom line** | Arizona has no general non-compete statute; an employee covenant is enforceable under common law only if reasonable and no broader than necessary to protect a legitimate business interest. |
|
|
31
|
+
| **Main law or case** | common law (Valley Medical Specialists v. Farber, 982 P.2d 1277 (Ariz. 1999)) |
|
|
32
|
+
| **Main exceptions** | Broadcast-employee ban (A.R.S. § 23-494); physicians enforceable only under heightened scrutiny |
|
|
33
|
+
| **Can a court narrow it?** | Only strikes wording |
|
|
34
|
+
| **Applies to contractors?** | Unclear |
|
|
35
|
+
| **Restriction extended during a breach?** | Not addressed |
|
|
36
|
+
| **Maximum length set by law** | No statutory limit |
|
|
37
|
+
|
|
38
|
+
## Are employee non-compete agreements enforceable in Arizona? {#enforceability}
|
|
39
|
+
|
|
40
|
+
**Short answer.** Sometimes. Arizona has no general statute banning or governing employee non-competes, so the question is decided under common law: a covenant not to compete is enforceable only if it is reasonable. Arizona courts treat these restraints as disfavored[^q1-amex-disfavored] and will refuse to enforce one that sweeps further than the employer's legitimate interest requires [^q1-farber-reasonableness].
|
|
41
|
+
|
|
42
|
+
Unlike California, North Dakota, or Oklahoma, Arizona does not void employee non-competes by statute. The governing framework comes from the Arizona Supreme Court's decision in *Valley Medical Specialists v. Farber* and a line of Court of Appeals cases applying a fact-intensive reasonableness analysis.
|
|
43
|
+
|
|
44
|
+
"A restriction is unreasonable and thus will not be enforced: (1) if the restraint is greater than necessary to protect the employer's legitimate interest; or (2) if that interest is outweighed by the hardship to the employee and the likely injury to the public."[^q1-farber-reasonableness]
|
|
45
|
+
|
|
46
|
+
Because the analysis turns on the facts of each restraint, an employer cannot assume a covenant is enforceable just because the employee signed it. The sections below walk through the reasonableness test, the unusually strict rule against judicial rewriting, and the profession- and context-specific rules.
|
|
47
|
+
|
|
48
|
+
## What makes a non-compete reasonable under Arizona law? {#reasonableness-test}
|
|
49
|
+
|
|
50
|
+
**Short answer.** A restraint that is no broader than necessary to protect a legitimate business interest. The employer must identify a protectable interest — such as trade secrets, confidential information, or customer goodwill — and the restriction's duration, geography, and scope of prohibited activity must be tailored to that interest. The employee's hardship is one of the factors weighed in the analysis [^q2-amex-reasonable][^q2-amex-hardship].
|
|
51
|
+
|
|
52
|
+
The threshold question is always whether the employer has an interest worth protecting. Without one, the covenant fails no matter how narrowly it is drawn.
|
|
53
|
+
|
|
54
|
+
"A restrictive covenant - whether a covenant not to compete or an anti-piracy agreement - is enforceable as long as it is no broader than necessary to protect the employer's legitimate business interest."[^q2-hilb-protectable]
|
|
55
|
+
|
|
56
|
+
In *Hilb, Rogal & Hamilton Co. of Arizona v. McKinney*, the Court of Appeals refused to enforce an anti-piracy covenant because the employer had no protectable interest in the particular account at issue.
|
|
57
|
+
|
|
58
|
+
"We hold that HRH had no protectable interest in the Bell Ford account."[^q2-hilb-holding]
|
|
59
|
+
|
|
60
|
+
Even where an interest exists, reasonableness is measured against the burden on the employee.
|
|
61
|
+
|
|
62
|
+
"Hardship to the employee, however, is one of the factors to be considered in determining reasonableness."[^q2-amex-hardship]
|
|
63
|
+
|
|
64
|
+
## Will an Arizona court narrow or rewrite an overbroad non-compete? {#court-narrowing}
|
|
65
|
+
|
|
66
|
+
**Short answer.** No — not by rewriting it. Arizona follows a strict blue-pencil rule: a court may eliminate a grammatically severable unreasonable term, but it may not add language or rewrite the covenant to make it reasonable. If the unreasonable portion is not severable, the whole restraint falls [^q3-varsity-bluepencil][^q3-bryceland-severable].
|
|
67
|
+
|
|
68
|
+
This is the single most important drafting fact about Arizona non-competes. In *Varsity Gold, Inc. v. Porzio*, the Court of Appeals reversed a trial court that had narrowed an overbroad covenant to save it.
|
|
69
|
+
|
|
70
|
+
"The court explained that, while Arizona courts may ‘blue pencil’ a restrictive covenant by eliminating grammatically sever-able, unreasonable terms, the court cannot add provisions or rewrite them."[^q3-varsity-bluepencil]
|
|
71
|
+
|
|
72
|
+
"In summary, we decide that the trial court erred by rewriting the restrictive covenant to render it reasonable and enforceable."[^q3-varsity-norewrite]
|
|
73
|
+
|
|
74
|
+
Where the unreasonable language cannot be cleanly struck, the covenant is unenforceable as a whole. In *Bryceland v. Northey*, the court found the restraint unreasonably broad and not severable.
|
|
75
|
+
|
|
76
|
+
"Neither the contract itself nor other evidence in the record indicates that this unreasonable portion of the contract was severable."[^q3-bryceland-severable]
|
|
77
|
+
|
|
78
|
+
> [!CAUTION]
|
|
79
|
+
> **Drafting note.**
|
|
80
|
+
>
|
|
81
|
+
> Because an Arizona court will strike — not narrow — an overbroad covenant, draft duration, geography, and prohibited activity to the minimum the legitimate business interest actually requires, and use distinct, grammatically severable clauses so a single defect does not void the entire restraint. An overbroad covenant is more likely to fall entirely than to be trimmed by the court [^q3-varsity-bluepencil][^q3-bryceland-severable].
|
|
82
|
+
|
|
83
|
+
## What non-compete rules apply to physicians in Arizona? {#physician-rules}
|
|
84
|
+
|
|
85
|
+
**Short answer.** Physician non-competes are not categorically void, but they face heightened scrutiny. In *Farber*, the Arizona Supreme Court held that physician covenants must be strictly construed for reasonableness because of the public interest in patients' ability to choose their doctor, and it refused to enforce the covenant before it on public-policy grounds [^q4-farber-strict][^q4-farber-publicpolicy].
|
|
86
|
+
|
|
87
|
+
A reasonable physician covenant can still be enforced. The Court of Appeals in *Phoenix Orthopaedic Surgeons, Ltd. v. Peairs* rejected the argument that all physician non-competes are void as against public policy.
|
|
88
|
+
|
|
89
|
+
"We reject, however, Dr. Peairs' suggestion that all such covenants not to compete are unenforceable as against public policy."[^q4-phoenix-notvoid]
|
|
90
|
+
|
|
91
|
+
But *Farber* makes clear that the public's interest weighs heavily, and that close calls go against enforcement.
|
|
92
|
+
|
|
93
|
+
"In light of the great public policy interest involved in covenants not to compete between physicians, each agreement will be strictly construed for reasonableness."[^q4-farber-strict]
|
|
94
|
+
|
|
95
|
+
> [!NOTE]
|
|
96
|
+
> **Practice note.**
|
|
97
|
+
>
|
|
98
|
+
> Treat a physician non-compete as enforceable only when it is narrowly tailored. Even a covenant that protects a real interest can fail if the restriction on the physician's practice harms patient access; in *Farber* the public-policy interest outweighed the employer's protectable interest [^q4-farber-publicpolicy][^q4-farber-strict].
|
|
99
|
+
|
|
100
|
+
## Can Arizona broadcast employees be required to sign non-competes? {#broadcast-employees}
|
|
101
|
+
|
|
102
|
+
**Short answer.** No. Arizona has one statutory non-compete ban, and it covers broadcast employees. Under A.R.S. § 23-494, it is unlawful for a television or radio station or network to require a current or prospective employee to agree to a noncompete clause as a condition of employment [^q5-ars-23-494-prohibition].
|
|
103
|
+
|
|
104
|
+
This is a categorical prohibition, not a reasonableness test. The statute defines both who is covered and what counts as a prohibited clause.
|
|
105
|
+
|
|
106
|
+
"As a condition of employment, it is unlawful for a broadcast employer to require a current or prospective employee to agree to a noncompete clause."[^q5-ars-23-494-prohibition]
|
|
107
|
+
|
|
108
|
+
"‘Noncompete clause’ means a clause in an employment contract with a broadcast employer that prohibits an employee from working in a specific geographic area for a specific period of time after leaving employment with the broadcast employer."[^q5-ars-23-494-definition]
|
|
109
|
+
|
|
110
|
+
## Is continued employment enough consideration for an Arizona non-compete? {#consideration}
|
|
111
|
+
|
|
112
|
+
**Short answer.** Yes. Arizona follows the majority rule that continued at-will employment is sufficient consideration to support a covenant, even one signed after employment has already begun. An employer does not have to give a raise, bonus, or promotion to satisfy consideration for a mid-employment covenant — though the covenant still must clear Arizona's reasonableness and no-rewrite rules to be enforceable [^q6-mattison-consideration].
|
|
113
|
+
|
|
114
|
+
The leading statement is in *Mattison v. Johnston*, where the Court of Appeals upheld a covenant signed during an at-will relationship.
|
|
115
|
+
|
|
116
|
+
"Although there is authority to the contrary, most jurisdictions which have considered the issue have found that continued employment is sufficient consideration to support a restrictive covenant executed after employment has commenced even where employment continues to be on an at-will basis."[^q6-mattison-consideration]
|
|
117
|
+
|
|
118
|
+
A federal court applying Arizona law reached the same result in *Compass Bank v. Hartley*.
|
|
119
|
+
|
|
120
|
+
"In addition, the promise of continued employment validates a covenant executed after the employment relationship has commenced, even where it continues to be on an at-will basis."[^q6-compass-continued]
|
|
121
|
+
|
|
122
|
+
## Are confidentiality and non-solicitation covenants treated as non-competes in Arizona? {#nonsolicitation-confidentiality}
|
|
123
|
+
|
|
124
|
+
**Short answer.** They can be. Arizona looks at the functional effect of a restraint, not its label. A confidentiality or non-solicitation covenant that is broad enough to operate as a practical bar on competition is analyzed as a non-compete and judged for reasonableness. In *Orca Communications Unlimited, LLC v. Noder*, the Court of Appeals held that an unlimited confidentiality covenant was unenforceable as the equivalent of a geographically unrestricted non-compete [^q7-orca-defacto].
|
|
125
|
+
|
|
126
|
+
The risk is greatest where a confidentiality clause has no time or geographic limit and reaches information that is not a trade secret.
|
|
127
|
+
|
|
128
|
+
"Thus, the trial court did not err in finding that the confidentiality covenant is unenforceable as the equivalent of a geographically unrestricted non-competition agreement."[^q7-orca-defacto]
|
|
129
|
+
|
|
130
|
+
> [!CAUTION]
|
|
131
|
+
> **Drafting note.**
|
|
132
|
+
>
|
|
133
|
+
> Scope confidentiality and non-solicitation covenants to actual trade secrets and confidential information, with reasonable limits, rather than broadly restricting a former employee's use of general skills or knowledge. An open-ended confidentiality clause can be struck as a disguised non-compete and is subject to the same strict no-rewrite rule [^q7-orca-defacto][^q7-hilb-antipiracy].
|
|
134
|
+
|
|
135
|
+
## How does the Arizona Uniform Trade Secrets Act interact with non-competes? {#trade-secrets}
|
|
136
|
+
|
|
137
|
+
**Short answer.** The Arizona Uniform Trade Secrets Act (AUTSA), A.R.S. §§ 44-401 to 44-407, protects trade secrets independently of any covenant, so an employer often has a remedy even without an enforceable non-compete. AUTSA displaces conflicting common-law claims for trade-secret misappropriation, but it expressly preserves contractual remedies and other civil remedies not based on misappropriation [^q8-ars-44-407-displacement][^q8-ars-44-407-contract].
|
|
138
|
+
|
|
139
|
+
AUTSA defines a trade secret by the familiar two-part test of independent economic value plus reasonable secrecy efforts.
|
|
140
|
+
|
|
141
|
+
"‘Trade secret’ means information, including a formula, pattern, compilation, program, device, method, technique or process, that both: (a) Derives independent economic value, actual or potential, from not being generally known to, and not being readily ascertainable by proper means by, other persons who can obtain economic value from its disclosure or use. (b) Is the subject of efforts that are reasonable under the circumstances to maintain its secrecy."[^q8-ars-44-401-definition]
|
|
142
|
+
|
|
143
|
+
Crucially, the Arizona Supreme Court held in the *Orca* appeal that AUTSA does not wipe out common-law claims based on confidential information that does not rise to the level of a trade secret.
|
|
144
|
+
|
|
145
|
+
"We hold that AUTSA does not displace common-law claims based on alleged misappropriation of confidential information that is not a trade secret."[^q8-orca2014-nondisplacement]
|
|
146
|
+
|
|
147
|
+
A misappropriation claim has a three-year limitations period.
|
|
148
|
+
|
|
149
|
+
"An action for misappropriation must be brought within three years after the misappropriation is discovered or by the exercise of reasonable diligence should have been discovered."[^q8-ars-44-406-sol]
|
|
150
|
+
|
|
151
|
+
## Are sale-of-business non-competes treated differently in Arizona? {#sale-of-business}
|
|
152
|
+
|
|
153
|
+
**Short answer.** Yes, somewhat more leniently. A covenant given as part of the sale of a business protects the goodwill the buyer paid for, so Arizona courts will ordinarily uphold one that is limited in time and geographic scope. The covenant still must be reasonable and cannot bar the seller from all business whatsoever [^q9-gann-validity][^q9-gann-goodwill].
|
|
154
|
+
|
|
155
|
+
In *Gann v. Morris*, the Court of Appeals explained why sale-of-business covenants get more latitude than employment covenants.
|
|
156
|
+
|
|
157
|
+
"Where limited as to time and space, the covenant is ordinarily valid unless it is to refrain from all business whatsoever."[^q9-gann-validity]
|
|
158
|
+
|
|
159
|
+
"The sale of such a business necessarily includes the sale of good will and the purchaser has the right to assure himself as best he can of the transfer of the good will."[^q9-gann-goodwill]
|
|
160
|
+
|
|
161
|
+
More latitude is not a free pass. In *Berkadia Real Estate Advisors LLC v. Wadlund* (D. Ariz. 2024), a federal court applying Arizona law refused to enforce a sale-of-business covenant whose activity, geographic, and duration limits swept further than the goodwill the buyer had acquired.
|
|
162
|
+
|
|
163
|
+
"The Court finds that the scope of activity, the geographic scope, and the duration of the TCRA restrictive covenants, singularly and in combination, are unreasonable."[^q9-berkadia-unreasonable]
|
|
164
|
+
|
|
165
|
+
> [!CAUTION]
|
|
166
|
+
> **Drafting note.**
|
|
167
|
+
>
|
|
168
|
+
> Tie a sale-of-business covenant's geography, duration, and scope of restricted activity to the goodwill actually being transferred. In *Berkadia* a nationwide covenant binding a seller who had only ever worked in Tucson was struck as unreasonable, and Arizona's no-rewrite rule meant the court would not pare it back [^q9-berkadia-unreasonable][^q9-gann-validity].
|
|
169
|
+
|
|
170
|
+
## Does an Arizona non-compete period extend while the employee is in breach or litigation is pending? {#tolling}
|
|
171
|
+
|
|
172
|
+
**Short answer.** Arizona law does not squarely answer this. No Arizona appellate decision appears to have decided whether a non-compete period tolls — pauses and extends — while the former employee is violating the covenant or while enforcement litigation is pending. Because Arizona judges covenants for reasonableness and will not rewrite an overbroad term, a contractual extension-on-breach clause is best analyzed as part of the covenant's overall duration and drafted conservatively [^q10-farber-reasonableness][^q10-varsity-norewrite].
|
|
173
|
+
|
|
174
|
+
The uncertainty is structural. Arizona has no statute on point and no controlling case directly addressing judicial or contractual tolling of restrictive covenants. Two general rules shape the risk. First, the covenant's total effective duration — including any extension — is measured for reasonableness [^q10-farber-reasonableness]. Second, because an Arizona court will strike rather than narrow an unreasonable term, an aggressive extension clause that makes the effective period unreasonable risks taking the covenant down with it rather than being trimmed [^q10-varsity-norewrite].
|
|
175
|
+
|
|
176
|
+
> [!CAUTION]
|
|
177
|
+
> **Drafting note.**
|
|
178
|
+
>
|
|
179
|
+
> If you include a clause extending the restricted period for the time the employee is in breach, draft the base period and the extension so that the combined duration is still reasonable on its own terms. Under Arizona's strict no-rewrite rule, a court that finds the extended period unreasonable is more likely to void the covenant than to shorten it [^q10-varsity-norewrite][^q10-farber-reasonableness].
|
|
180
|
+
|
|
181
|
+
## Can a non-signatory enforce a forum-selection clause in an Arizona contract dispute? {#non-signatory-forum-clause}
|
|
182
|
+
|
|
183
|
+
**Short answer.** Generally no, based only on a close relationship to a party. In 2025 the Arizona Supreme Court declined to adopt the closely-related-party doctrine for forum-selection clauses, holding that the provisions of the contract control. A person or company that did not sign the contract — an affiliate, a founder, or a related entity — cannot enforce its forum-selection clause against a signatory merely because it is closely related to a party [^q11-henderson-forum].
|
|
184
|
+
|
|
185
|
+
This matters for covenant disputes, where a party often tries to invoke a contract's forum-selection clause for the benefit of someone who never signed the agreement.
|
|
186
|
+
|
|
187
|
+
"We decline to adopt that doctrine with regard to forum selection clauses, holding that the provisions of the contract control and that other established doctrines providing non-signatories with benefits under a contract are ample."[^q11-henderson-forum]
|
|
188
|
+
|
|
189
|
+
## Can an employer use another state's law to make an Arizona non-compete easier to enforce? {#out-of-state-law}
|
|
190
|
+
|
|
191
|
+
**Short answer.** Often not, when Arizona has the strongest connection to the employment. A federal court in Arizona declined to apply a Washington choice-of-law clause that would have imported Washington's more employer-friendly approach to non-competes, reasoning that doing so would be contrary to a fundamental policy of Arizona law [^qcol-pathway-policy][^qcol-pathway-187].
|
|
192
|
+
|
|
193
|
+
In *Pathway Medical Technologies, Inc. v. Nelson*, the employer's agreement selected Washington law, which is friendlier to non-competes — including allowing courts to rewrite an overbroad covenant. Applying the Restatement (Second) of Conflict of Laws § 187, the court treated that as an attempt to escape Arizona's policy.
|
|
194
|
+
|
|
195
|
+
"Arizona law does not approve of broad non-compete provisions."[^qcol-pathway-policy]
|
|
196
|
+
|
|
197
|
+
"the Agreement's choice of Washington law likely is not enforceable under Restatement section 187(2)(b)."[^qcol-pathway-187]
|
|
198
|
+
|
|
199
|
+
> [!CAUTION]
|
|
200
|
+
> **Drafting note.**
|
|
201
|
+
>
|
|
202
|
+
> Do not rely on a sister-state choice-of-law clause to obtain a more lenient non-compete rule or judicial reformation for an Arizona-centered employment relationship. Where Arizona has the most significant relationship, a court may apply Arizona law — including its strict no-rewrite rule — regardless of the contract's chosen law [^qcol-pathway-187][^qcol-pathway-policy].
|
|
203
|
+
|
|
204
|
+
## Who pays attorney fees in an Arizona non-compete lawsuit? {#attorney-fees}
|
|
205
|
+
|
|
206
|
+
**Short answer.** Either side can be ordered to. A non-compete dispute arises out of a contract, so A.R.S. § 12-341.01 lets the court award reasonable attorney fees to the successful party. The award is discretionary, but the fee-shifting risk runs both ways: an employer that loses an overreaching enforcement action can be ordered to pay the former employee's fees [^q12-ars-12-341-fees].
|
|
207
|
+
|
|
208
|
+
"In any contested action arising out of a contract, express or implied, the court may award the successful party reasonable attorney fees."[^q12-ars-12-341-fees]
|
|
209
|
+
|
|
210
|
+
## What are the recent developments in Arizona non-compete law? {#recent-developments}
|
|
211
|
+
|
|
212
|
+
**Short answer.** Arizona remains a common-law reasonableness state, and recent efforts to change that by statute have not been enacted. In 2026, HB 2361 proposed adding a new statute, A.R.S. § 23-207, to bar any public or private employer from requiring a noncompete clause; a near-identical 2025 bill, HB 2589, proposed the same ban. Neither has become law, so Arizona still has no general non-compete statute outside the broadcast-employee context [^q13-hb2361][^q13-hb2589].
|
|
213
|
+
|
|
214
|
+
Both bills used the same operative language, which would have replaced Arizona's case-by-case reasonableness analysis with a flat prohibition for most employees.
|
|
215
|
+
|
|
216
|
+
"As a condition of employment, it is unlawful for a public or private employer to require a current or prospective employee to agree to a noncompete clause."[^q13-hb2361]
|
|
217
|
+
|
|
218
|
+
Key developments:
|
|
219
|
+
|
|
220
|
+
-
|
|
221
|
+
-
|
|
222
|
+
|
|
223
|
+
Because neither ban has become law, an Arizona non-compete is still governed by the reasonableness and strict no-rewrite rules described above, not by any statutory ban outside the broadcast-employee context.
|
|
224
|
+
|
|
225
|
+
[^about]: By Steven Obiajulu, J.D. Published by [openagreements.org](https://openagreements.org) · Maintained by [UseJunior](https://usejunior.com). Last reviewed 2026-06-03. License: CC BY 4.0. Steven Obiajulu, J.D. is admitted in New York, not Arizona. This article synthesizes Arizona primary law and is not legal advice from a Arizona-admitted attorney. This article is for informational purposes only and does not create an attorney-client relationship.
|
|
226
|
+
|
|
227
|
+
[^q1-amex-disfavored]: **Amex Distributing Co. v. Mascari** — "Restrictive covenants which tend to prevent an employee from pursuing a similar vocation after termination of employment are disfavored." *Amex Distributing Co. v. Mascari, 150 Ariz. 510, 724 P.2d 596 (Ct. App. 1986).* <https://www.courtlistener.com/opinion/1211495/amex-distributing-co-inc-v-mascari/#:~:text=Restrictive%20covenants%20which%20tend%20to,termination%20of%20employment%20are%20disfavored.>
|
|
228
|
+
|
|
229
|
+
[^q1-farber-reasonableness]: **Valley Medical Specialists v. Farber** — "A restriction is unreasonable and thus will not be enforced: (1) if the restraint is greater than necessary to protect the employer's legitimate interest; or (2) if that interest is outweighed by the hardship to the employee and the likely injury to the public." *Valley Medical Specialists v. Farber, 194 Ariz. 363, 982 P.2d 1277 (1999).* <https://www.courtlistener.com/opinion/1253291/valley-medical-specialists-v-farber/#:~:text=A%20restriction%20is%20unreasonable%20and,likely%20injury%20to%20the%20public.>
|
|
230
|
+
|
|
231
|
+
[^q2-amex-reasonable]: **Amex Distributing Co. v. Mascari** — "Reasonable restraints-those no broader than the employer's legitimately protectable interests-will be enforced in Arizona." *Amex Distributing Co. v. Mascari, 150 Ariz. 510, 724 P.2d 596 (Ct. App. 1986).* <https://www.courtlistener.com/opinion/1211495/amex-distributing-co-inc-v-mascari/#:~:text=Reasonable%20restraints%2Dthose%20no%20broader%20than,interests%2Dwill%20be%20enforced%20in%20Arizona.>
|
|
232
|
+
|
|
233
|
+
[^q2-amex-hardship]: **Amex Distributing Co. v. Mascari** — "Hardship to the employee, however, is one of the factors to be considered in determining reasonableness." *Amex Distributing Co. v. Mascari, 150 Ariz. 510, 724 P.2d 596 (Ct. App. 1986).* <https://www.courtlistener.com/opinion/1211495/amex-distributing-co-inc-v-mascari/#:~:text=Hardship%20to%20the%20employee%2C%20however%2C,be%20considered%20in%20determining%20reasonableness.>
|
|
234
|
+
|
|
235
|
+
[^q2-hilb-protectable]: **Hilb, Rogal & Hamilton Co. of Arizona v. McKinney** — "A restrictive covenant - whether a covenant not to compete or an anti-piracy agreement - is enforceable as long as it is no broader than necessary to protect the employer's legitimate business interest." *Hilb, Rogal & Hamilton Co. of Arizona v. McKinney, 190 Ariz. 213, 946 P.2d 464 (Ct. App. 1997).* <https://www.courtlistener.com/opinion/1124526/hilb-rogal-hamilton-co-of-arizona-inc-v-mckinney/#:~:text=A%20restrictive%20covenant%20%2D%20whether,the%20employer's%20legitimate%20business%20interest.>
|
|
236
|
+
|
|
237
|
+
[^q2-hilb-holding]: **Hilb, Rogal & Hamilton Co. of Arizona v. McKinney** — "We hold that HRH had no protectable interest in the Bell Ford account." *Hilb, Rogal & Hamilton Co. of Arizona v. McKinney, 190 Ariz. 213, 946 P.2d 464 (Ct. App. 1997).* <https://www.courtlistener.com/opinion/1124526/hilb-rogal-hamilton-co-of-arizona-inc-v-mckinney/#:~:text=We%20hold%20that%20HRH%20had,in%20the%20Bell%20Ford%20account.>
|
|
238
|
+
|
|
239
|
+
[^q3-varsity-bluepencil]: **Varsity Gold, Inc. v. Porzio** — "The court explained that, while Arizona courts may ‘blue pencil’ a restrictive covenant by eliminating grammatically sever-able, unreasonable terms, the court cannot add provisions or rewrite them." *Varsity Gold, Inc. v. Porzio, 202 Ariz. 355, 45 P.3d 352 (Ct. App. 2002).* <https://www.courtlistener.com/opinion/2638678/varsity-gold-inc-v-porzio/#:~:text=The%20court%20explained%20that%2C%20while,add%20provisions%20or%20rewrite%20them.>
|
|
240
|
+
|
|
241
|
+
[^q3-bryceland-severable]: **Bryceland v. Northey** — "Neither the contract itself nor other evidence in the record indicates that this unreasonable portion of the contract was severable." *Bryceland v. Northey, 160 Ariz. 213, 772 P.2d 36 (Ct. App. 1989).* <https://www.courtlistener.com/opinion/1414072/bryceland-v-northey/#:~:text=Neither%20the%20contract%20itself%20nor,of%20the%20contract%20was%20severable.>
|
|
242
|
+
|
|
243
|
+
[^q3-varsity-norewrite]: **Varsity Gold, Inc. v. Porzio** — "In summary, we decide that the trial court erred by rewriting the restrictive covenant to render it reasonable and enforceable." *Varsity Gold, Inc. v. Porzio, 202 Ariz. 355, 45 P.3d 352 (Ct. App. 2002).* <https://www.courtlistener.com/opinion/2638678/varsity-gold-inc-v-porzio/#:~:text=In%20summary%2C%20we%20decide%20that,render%20it%20reasonable%20and%20enforceable.>
|
|
244
|
+
|
|
245
|
+
[^q4-farber-strict]: **Valley Medical Specialists v. Farber** — "In light of the great public policy interest involved in covenants not to compete between physicians, each agreement will be strictly construed for reasonableness." *Valley Medical Specialists v. Farber, 194 Ariz. 363, 982 P.2d 1277 (1999).* <https://www.courtlistener.com/opinion/1253291/valley-medical-specialists-v-farber/#:~:text=In%20light%20of%20the%20great,be%20strictly%20construed%20for%20reasonableness.>
|
|
246
|
+
|
|
247
|
+
[^q4-farber-publicpolicy]: **Valley Medical Specialists v. Farber** — "Public policy concerns in this case outweigh Valley Medical's protectable interests in enforcing the agreement." *Valley Medical Specialists v. Farber, 194 Ariz. 363, 982 P.2d 1277 (1999).* <https://www.courtlistener.com/opinion/1253291/valley-medical-specialists-v-farber/#:~:text=Public%20policy%20concerns%20in%20this,interests%20in%20enforcing%20the%20agreement.>
|
|
248
|
+
|
|
249
|
+
[^q4-phoenix-notvoid]: **Phoenix Orthopaedic Surgeons, Ltd. v. Peairs** — "We reject, however, Dr. Peairs' suggestion that all such covenants not to compete are unenforceable as against public policy." *Phoenix Orthopaedic Surgeons, Ltd. v. Peairs, 164 Ariz. 54, 790 P.2d 752 (Ct. App. 1989).* <https://www.courtlistener.com/opinion/1425574/phoenix-orthopaedic-surgeons-ltd-v-peairs/#:~:text=We%20reject%2C%20however%2C%20Dr.%20Peairs',unenforceable%20as%20against%20public%20policy.>
|
|
250
|
+
|
|
251
|
+
[^q5-ars-23-494-prohibition]: **A.R.S. § 23-494** — "As a condition of employment, it is unlawful for a broadcast employer to require a current or prospective employee to agree to a noncompete clause." *A.R.S. § 23-494(A).* <https://www.azleg.gov/ars/23/00494.htm>
|
|
252
|
+
|
|
253
|
+
[^q5-ars-23-494-definition]: **A.R.S. § 23-494** — "‘Noncompete clause’ means a clause in an employment contract with a broadcast employer that prohibits an employee from working in a specific geographic area for a specific period of time after leaving employment with the broadcast employer." *A.R.S. § 23-494(B)(2).* <https://www.azleg.gov/ars/23/00494.htm>
|
|
254
|
+
|
|
255
|
+
[^q6-mattison-consideration]: **Mattison v. Johnston** — "Although there is authority to the contrary, most jurisdictions which have considered the issue have found that continued employment is sufficient consideration to support a restrictive covenant executed after employment has commenced even where employment continues to be on an at-will basis." *Mattison v. Johnston, 152 Ariz. 109, 730 P.2d 286 (Ct. App. 1986).* <https://www.courtlistener.com/opinion/1118936/mattison-v-johnston/#:~:text=Although%20there%20is%20authority%20to,be%20on%20an%20at%2Dwill%20basis.>
|
|
256
|
+
|
|
257
|
+
[^q6-compass-continued]: **Compass Bank v. Hartley** — "In addition, the promise of continued employment validates a covenant executed after the employment relationship has commenced, even where it continues to be on an at-will basis." *Compass Bank v. Hartley, 430 F. Supp. 2d 989 (D. Ariz. 2006).* <https://www.courtlistener.com/opinion/2317852/compass-bank-v-hartley/#:~:text=In%20addition%2C%20the%20promise%20of,be%20on%20an%20at%2Dwill%20basis.>
|
|
258
|
+
|
|
259
|
+
[^q7-orca-defacto]: **Orca Communications Unlimited, LLC v. Noder** — "Thus, the trial court did not err in finding that the confidentiality covenant is unenforceable as the equivalent of a geographically unrestricted non-competition agreement." *Orca Communications Unlimited, LLC v. Noder, 233 Ariz. 411 (Ct. App. 2013).* <https://www.courtlistener.com/opinion/6604207/orca-communications-unlimited-llc-v-noder/#:~:text=Thus%2C%20the%20trial%20court%20did,a%20geographically%20unrestricted%20non%2Dcompetition%20agreement.>
|
|
260
|
+
|
|
261
|
+
[^q7-hilb-antipiracy]: **Hilb, Rogal & Hamilton Co. of Arizona v. McKinney** — "A restrictive covenant - whether a covenant not to compete or an anti-piracy agreement - is enforceable as long as it is no broader than necessary to protect the employer's legitimate business interest." *Hilb, Rogal & Hamilton Co. of Arizona v. McKinney, 190 Ariz. 213, 946 P.2d 464 (Ct. App. 1997).* <https://www.courtlistener.com/opinion/1124526/hilb-rogal-hamilton-co-of-arizona-inc-v-mckinney/#:~:text=A%20restrictive%20covenant%20%2D%20whether,the%20employer's%20legitimate%20business%20interest.>
|
|
262
|
+
|
|
263
|
+
[^q8-ars-44-407-displacement]: **A.R.S. § 44-407** — "Except as provided in subsection B, this chapter displaces conflicting tort, restitutionary and other laws of this state providing civil remedies for misappropriation of a trade secret." *A.R.S. § 44-407(A).* <https://www.azleg.gov/ars/44/00407.htm>
|
|
264
|
+
|
|
265
|
+
[^q8-ars-44-407-contract]: **A.R.S. § 44-407** — "Contractual remedies, whether or not based on misappropriation of a trade secret." *A.R.S. § 44-407(B)(1).* <https://www.azleg.gov/ars/44/00407.htm>
|
|
266
|
+
|
|
267
|
+
[^q8-ars-44-401-definition]: **A.R.S. § 44-401** — "‘Trade secret’ means information, including a formula, pattern, compilation, program, device, method, technique or process, that both: (a) Derives independent economic value, actual or potential, from not being generally known to, and not being readily ascertainable by proper means by, other persons who can obtain economic value from its disclosure or use. (b) Is the subject of efforts that are reasonable under the circumstances to maintain its secrecy." *A.R.S. § 44-401(4).* <https://www.azleg.gov/ars/44/00401.htm>
|
|
268
|
+
|
|
269
|
+
[^q8-orca2014-nondisplacement]: **Orca Communications Unlimited, LLC v. Noder** — "We hold that AUTSA does not displace common-law claims based on alleged misappropriation of confidential information that is not a trade secret." *Orca Communications Unlimited, LLC v. Noder, 236 Ariz. 180, 337 P.3d 545 (2014).* <https://www.courtlistener.com/opinion/2752976/orca-communications-v-ann-noder-et-virpitch-public/#:~:text=We%20hold%20that%20AUTSA%20does,is%20not%20a%20trade%20secret.>
|
|
270
|
+
|
|
271
|
+
[^q8-ars-44-406-sol]: **A.R.S. § 44-406** — "An action for misappropriation must be brought within three years after the misappropriation is discovered or by the exercise of reasonable diligence should have been discovered." *A.R.S. § 44-406.* <https://www.azleg.gov/ars/44/00406.htm>
|
|
272
|
+
|
|
273
|
+
[^q9-gann-validity]: **Gann v. Morris** — "Where limited as to time and space, the covenant is ordinarily valid unless it is to refrain from all business whatsoever." *Gann v. Morris, 122 Ariz. 517, 596 P.2d 43 (Ct. App. 1979).* <https://www.courtlistener.com/opinion/1362794/gann-v-morris/#:~:text=Where%20limited%20as%20to%20time,refrain%20from%20all%20business%20whatsoever.>
|
|
274
|
+
|
|
275
|
+
[^q9-gann-goodwill]: **Gann v. Morris** — "The sale of such a business necessarily includes the sale of good will and the purchaser has the right to assure himself as best he can of the transfer of the good will." *Gann v. Morris, 122 Ariz. 517, 596 P.2d 43 (Ct. App. 1979).* <https://www.courtlistener.com/opinion/1362794/gann-v-morris/#:~:text=The%20sale%20of%20such%20a,transfer%20of%20the%20good%20will.>
|
|
276
|
+
|
|
277
|
+
[^q9-berkadia-unreasonable]: **Berkadia Real Estate Advisors LLC v. Wadlund** — "The Court finds that the scope of activity, the geographic scope, and the duration of the TCRA restrictive covenants, singularly and in combination, are unreasonable." *Berkadia Real Estate Advisors LLC v. Wadlund, No. CV-22-00049-TUC-CKJ, 2024 WL 4125533 (D. Ariz. June 27, 2024).* <https://www.govinfo.gov/app/details/USCOURTS-azd-4_22-cv-00049/USCOURTS-azd-4_22-cv-00049-10>
|
|
278
|
+
|
|
279
|
+
[^q10-farber-reasonableness]: **Valley Medical Specialists v. Farber** — "A restriction is unreasonable and thus will not be enforced: (1) if the restraint is greater than necessary to protect the employer's legitimate interest; or (2) if that interest is outweighed by the hardship to the employee and the likely injury to the public." *Valley Medical Specialists v. Farber, 194 Ariz. 363, 982 P.2d 1277 (1999).* <https://www.courtlistener.com/opinion/1253291/valley-medical-specialists-v-farber/#:~:text=A%20restriction%20is%20unreasonable%20and,likely%20injury%20to%20the%20public.>
|
|
280
|
+
|
|
281
|
+
[^q10-varsity-norewrite]: **Varsity Gold, Inc. v. Porzio** — "The court explained that, while Arizona courts may ‘blue pencil’ a restrictive covenant by eliminating grammatically sever-able, unreasonable terms, the court cannot add provisions or rewrite them." *Varsity Gold, Inc. v. Porzio, 202 Ariz. 355, 45 P.3d 352 (Ct. App. 2002).* <https://www.courtlistener.com/opinion/2638678/varsity-gold-inc-v-porzio/#:~:text=The%20court%20explained%20that%2C%20while,add%20provisions%20or%20rewrite%20them.>
|
|
282
|
+
|
|
283
|
+
[^q11-henderson-forum]: **Henderson v. Moskowitz** — "We decline to adopt that doctrine with regard to forum selection clauses, holding that the provisions of the contract control and that other established doctrines providing non-signatories with benefits under a contract are ample." *Henderson v. Moskowitz (Ariz. Nov. 28, 2025).* <https://www.courtlistener.com/opinion/10743771/henderson-v-hon-moskowitzsullivan/#:~:text=We%20decline%20to%20adopt%20that,under%20a%20contract%20are%20ample.>
|
|
284
|
+
|
|
285
|
+
[^qcol-pathway-policy]: **Pathway Medical Technologies, Inc. v. Nelson** — "Arizona law does not approve of broad non-compete provisions." *Pathway Medical Technologies, Inc. v. Nelson, No. CV11-0857-PHX-DGC, 2011 WL 4543928 (D. Ariz. Sept. 30, 2011).* <https://scholar.google.com/scholar_case?case=17995886739076358627>
|
|
286
|
+
|
|
287
|
+
[^qcol-pathway-187]: **Pathway Medical Technologies, Inc. v. Nelson** — "the Agreement's choice of Washington law likely is not enforceable under Restatement section 187(2)(b)." *Pathway Medical Technologies, Inc. v. Nelson, No. CV11-0857-PHX-DGC, 2011 WL 4543928 (D. Ariz. Sept. 30, 2011).* <https://scholar.google.com/scholar_case?case=17995886739076358627>
|
|
288
|
+
|
|
289
|
+
[^q12-ars-12-341-fees]: **A.R.S. § 12-341.01** — "In any contested action arising out of a contract, express or implied, the court may award the successful party reasonable attorney fees." *A.R.S. § 12-341.01(A).* <https://www.azleg.gov/ars/12/00341-01.htm>
|
|
290
|
+
|
|
291
|
+
[^q13-hb2361]: **Arizona HB 2361 (2026)** — "As a condition of employment, it is unlawful for a public or private employer to require a current or prospective employee to agree to a noncompete clause." *Ariz. H.B. 2361, 57th Leg., 2d Reg. Sess. (2026).* <https://www.azleg.gov/legtext/57leg/2R/bills/HB2361P.htm>
|
|
292
|
+
|
|
293
|
+
[^q13-hb2589]: **Arizona HB 2589 (2025)** — "As a condition of employment, it is unlawful for a public or private employer to require a current or prospective employee to agree to a noncompete clause." *Ariz. H.B. 2589, 57th Leg., 1st Reg. Sess. (2025).* <https://www.azleg.gov/legtext/57leg/1R/bills/HB2589P.htm>
|