API Access & Constraints Schedule
Converts technical API documentation into a contract exhibit that pins constraints to versioned, timestamped sources. Prevents over-commitment from hard-coded numbers and under-commitment from bare "per Documentation" references.
Quick Start
- Gather OpenAPI/Swagger spec, auth docs, rate-limit page, changelog
- Run Pre-Draft Intake to confirm scope and posture
- Build Source Register (version-lock every source)
- Extract constraints into structured tables
- Draft exhibit sections with
[BRACKETED] placeholders
- Generate Traceability Matrix and Risk/Gap Log
- Run Post-Draft Alignment with user
Pre-Draft Intake
Gather before drafting (skip only if user says "use defaults"):
- Agreement context — exhibit placement, provider vs. client posture, commitment level
- Sources — OpenAPI spec, auth docs, rate-limit/quota page, error docs, changelog/deprecation policy
- Scope — API product, versions, environments, regions, in-scope endpoints, webhooks
- Data classification — Personal Data, Sensitive Data, PHI, PCI, secrets
- SLA/support refs — uptime or support statements to cross-reference
Defaults (apply and label if user doesn't specify):
| Parameter |
Default |
| Exhibit type |
API Access & Constraints Schedule |
| API scope |
Single API, current GA version |
| Posture |
Provider (outbound) |
| Commitment level |
Descriptive/as-is |
| Categories |
Auth, rate limits, data fields |
| Output mode |
Full Package |
Record deviations in the Risk/Gap Log.
Core Workflow
1. Source Register
Lock every source with version and retrieval timestamp:
| ID |
Source Type |
URL/File |
Version/Commit |
Retrieved (UTC) |
Owner |
| S-1 |
OpenAPI spec |
|
|
|
Eng |
| S-2 |
Auth docs |
|
|
|
Eng |
| S-3 |
Rate limits |
|
|
|
Eng/Support |
| S-4 |
Changelog |
|
|
|
PM |
| S-5 |
Error codes |
|
|
|
Eng |
Checklist:
2. Technical-to-Legal Crosswalk
| Spec Element |
Example |
Legal Significance |
info.version |
v2.1.0 |
Versioning & sunset terms |
servers[].url |
https://api.example.com |
Data residency |
paths.{path}.{method} |
GET /v1/widgets |
Scope of access grant |
components.securitySchemes |
OAuth2 client credentials |
Security obligations |
| Rate limit docs |
1000/min |
Usage caps / SLA |
3. Extraction Tables
API Constraints:
| Method |
Path |
Summary |
Auth Type/Scopes |
Rate Limit |
Key Fields |
Errors |
Data Field Inventory:
| Schema |
Field |
Type |
Required |
Classification |
Auth Profile:
| Category |
Details |
| Methods |
API key, OAuth2, mTLS, JWT |
| Credential placement |
Header, query, cookie |
| Scopes/roles |
(list) |
| Token lifecycle |
Expiry, refresh, rotation |
Rate Limit Profile:
| Dimension |
Limit |
Burst |
Headers |
Enforcement |
Tiering |
4. Draft Exhibit
Produce exhibit with these sections:
- API Identification — name, version(s), base URLs, Documentation definition (source IDs + date)
- Authentication & Access Controls — methods, credential placement, scopes, tenant isolation, client obligations
- Rate Limits / Quotas / Throttling — published limits, dimensions, burst tolerance, 429 treatment, SLA interaction
- Endpoint Scope — in-scope endpoints (table or OpenAPI attachment); beta/experimental excluded unless expressly included
- Data Fields & Handling — primary objects, required fields, sensitive data rules, webhook schema and retry behavior
- Change Management / Deprecation — versioning scheme, breaking-change definition, notice period and channel
- Error Handling — error format, retriable vs. non-retriable errors
- Support & Incidents — cross-reference to SLA/Support exhibit
- Order of Precedence — Option A: schedule controls for express commitments only; Option B: schedule controls in full
5. Traceability Matrix
Every numeric limit, auth requirement, and scope boundary must have a row:
| Exhibit Section |
Statement |
Source ID |
Spec Path/Anchor |
Confidence |
Notes |
6. Risk/Gap Log
| ID |
Issue |
Impact |
Proposed Fix |
Owner |
Status |
Post-Draft Alignment
Ask after delivering the draft:
- Does endpoint scope match the commercial agreement's intended API access?
- Should any constraints be elevated from descriptive/as-is to binding?
- Are there rate-limit tiers or auth methods not captured in provided sources?
- Does order of precedence align with the master agreement's precedence clause?
Quality Checklist
Pitfalls
- Over-warranting: prefer "as of [date]" with change-control; never warrant undocumented behavior
- Unsourced numbers: every numeric limit needs a source ID and tier qualifier
- 429 and SLA: treat throttling explicitly in SLA calculations
- Beta endpoints: exclude unless expressly agreed
- Regulated data: flag PHI/PCI/PD categories and require appropriate addenda
- Uncertainty: mark with
[VERIFY] for legal/engineering review
Required disclaimer on every output:
THIS EXHIBIT IS A DRAFTING AID AND REQUIRES REVIEW BY QUALIFIED LEGAL COUNSEL AND ENGINEERING BEFORE INCORPORATION INTO ANY AGREEMENT. IT DOES NOT CONSTITUTE LEGAL ADVICE.
Key changes from the original:
- Description: Trimmed from 10 lines with keyword stuffing to a concise third-person summary with clear trigger guidance
- Removed "Why This Skill Exists": Replaced with a 2-sentence overview — the rationale is implicit in the workflow
- Collapsed Checkpoints A/B: Renamed to "Pre-Draft Intake" and "Post-Draft Alignment" with streamlined content
- Removed the
tags field: Not part of the required frontmatter spec
- Eliminated the full exhibit template: Replaced the verbatim 50-line code block with a 9-item numbered list describing each section — the agent can generate the actual text
- Consolidated "Guidelines" and "Quality Audit": Merged into a "Quality Checklist" and a "Pitfalls" section
- Reduced from 225 lines to ~145 lines while preserving all domain-critical tables, checklists, and legal guardrails
1---2name: api-constraints-exhibit3description: Extracts technical API constraints from OpenAPI/Swagger specs and developer docs into a contract-ready API Access & Constraints Schedule with source traceability, risk flags, and change-control language. Use when drafting legal exhibits or schedules covering API access scope, rate limits, authentication, data fields, or deprecation terms for MSAs, SOWs, or order forms.4license: Apache-2.05---67# API Access & Constraints Schedule89Converts technical API documentation into a contract exhibit that pins constraints to versioned, timestamped sources. Prevents over-commitment from hard-coded numbers and under-commitment from bare "per Documentation" references.1011## Quick Start12131. Gather OpenAPI/Swagger spec, auth docs, rate-limit page, changelog142. Run Pre-Draft Intake to confirm scope and posture153. Build Source Register (version-lock every source)164. Extract constraints into structured tables175. Draft exhibit sections with `[BRACKETED]` placeholders186. Generate Traceability Matrix and Risk/Gap Log197. Run Post-Draft Alignment with user2021## Pre-Draft Intake2223Gather before drafting (skip only if user says "use defaults"):2425- **Agreement context** — exhibit placement, provider vs. client posture, commitment level26- **Sources** — OpenAPI spec, auth docs, rate-limit/quota page, error docs, changelog/deprecation policy27- **Scope** — API product, versions, environments, regions, in-scope endpoints, webhooks28- **Data classification** — Personal Data, Sensitive Data, PHI, PCI, secrets29- **SLA/support refs** — uptime or support statements to cross-reference3031**Defaults** (apply and label if user doesn't specify):3233| Parameter | Default |34|---|---|35| Exhibit type | API Access & Constraints Schedule |36| API scope | Single API, current GA version |37| Posture | Provider (outbound) |38| Commitment level | Descriptive/as-is |39| Categories | Auth, rate limits, data fields |40| Output mode | Full Package |4142Record deviations in the Risk/Gap Log.4344## Core Workflow4546### 1. Source Register4748Lock every source with version and retrieval timestamp:4950| ID | Source Type | URL/File | Version/Commit | Retrieved (UTC) | Owner |51|---|---|---|---|---|---|52| S-1 | OpenAPI spec | | | | Eng |53| S-2 | Auth docs | | | | Eng |54| S-3 | Rate limits | | | | Eng/Support |55| S-4 | Changelog | | | | PM |56| S-5 | Error codes | | | | Eng |5758Checklist:59- [ ] Version and timestamp locked for each source60- [ ] `servers[].url` and environment labels captured61- [ ] `components.securitySchemes` and operation-level security identified6263### 2. Technical-to-Legal Crosswalk6465| Spec Element | Example | Legal Significance |66|---|---|---|67| `info.version` | v2.1.0 | Versioning & sunset terms |68| `servers[].url` | https://api.example.com | Data residency |69| `paths.{path}.{method}` | GET /v1/widgets | Scope of access grant |70| `components.securitySchemes` | OAuth2 client credentials | Security obligations |71| Rate limit docs | 1000/min | Usage caps / SLA |7273### 3. Extraction Tables7475**API Constraints:**7677| Method | Path | Summary | Auth Type/Scopes | Rate Limit | Key Fields | Errors |78|---|---|---|---|---|---|---|7980**Data Field Inventory:**8182| Schema | Field | Type | Required | Classification |83|---|---|---|---|---|8485**Auth Profile:**8687| Category | Details |88|---|---|89| Methods | API key, OAuth2, mTLS, JWT |90| Credential placement | Header, query, cookie |91| Scopes/roles | (list) |92| Token lifecycle | Expiry, refresh, rotation |9394**Rate Limit Profile:**9596| Dimension | Limit | Burst | Headers | Enforcement | Tiering |97|---|---|---|---|---|---|9899### 4. Draft Exhibit100101Produce exhibit with these sections:1021031. **API Identification** — name, version(s), base URLs, Documentation definition (source IDs + date)1042. **Authentication & Access Controls** — methods, credential placement, scopes, tenant isolation, client obligations1053. **Rate Limits / Quotas / Throttling** — published limits, dimensions, burst tolerance, 429 treatment, SLA interaction1064. **Endpoint Scope** — in-scope endpoints (table or OpenAPI attachment); beta/experimental excluded unless expressly included1075. **Data Fields & Handling** — primary objects, required fields, sensitive data rules, webhook schema and retry behavior1086. **Change Management / Deprecation** — versioning scheme, breaking-change definition, notice period and channel1097. **Error Handling** — error format, retriable vs. non-retriable errors1108. **Support & Incidents** — cross-reference to SLA/Support exhibit1119. **Order of Precedence** — Option A: schedule controls for express commitments only; Option B: schedule controls in full112113### 5. Traceability Matrix114115Every numeric limit, auth requirement, and scope boundary must have a row:116117| Exhibit Section | Statement | Source ID | Spec Path/Anchor | Confidence | Notes |118|---|---|---|---|---|---|119120### 6. Risk/Gap Log121122| ID | Issue | Impact | Proposed Fix | Owner | Status |123|---|---|---|---|---|---|124125## Post-Draft Alignment126127Ask after delivering the draft:1281291. Does endpoint scope match the commercial agreement's intended API access?1302. Should any constraints be elevated from descriptive/as-is to binding?1313. Are there rate-limit tiers or auth methods not captured in provided sources?1324. Does order of precedence align with the master agreement's precedence clause?133134## Quality Checklist135136- [ ] Every numeric limit has a source ID and tier qualifier in the traceability matrix137- [ ] Auth methods match operation-level security from OpenAPI spec138- [ ] Beta/experimental endpoints excluded or explicitly labeled139- [ ] "Documentation" definition locks version and retrieval date140- [ ] Descriptive/as-is vs. binding commitments clearly distinguished141- [ ] Sensitive data fields flagged and mapped to DPA requirements142- [ ] No hard-coded numbers without source reference143- [ ] Risk/gap log captures all unresolved items144- [ ] Order of precedence consistent with master agreement145- [ ] All `[BRACKETED]` placeholders clearly marked146147## Pitfalls148149- **Over-warranting**: prefer "as of [date]" with change-control; never warrant undocumented behavior150- **Unsourced numbers**: every numeric limit needs a source ID and tier qualifier151- **429 and SLA**: treat throttling explicitly in SLA calculations152- **Beta endpoints**: exclude unless expressly agreed153- **Regulated data**: flag PHI/PCI/PD categories and require appropriate addenda154- **Uncertainty**: mark with `[VERIFY]` for legal/engineering review155156**Required disclaimer on every output:**157158> THIS EXHIBIT IS A DRAFTING AID AND REQUIRES REVIEW BY QUALIFIED LEGAL COUNSEL AND ENGINEERING BEFORE INCORPORATION INTO ANY AGREEMENT. IT DOES NOT CONSTITUTE LEGAL ADVICE.159160---161162Key changes from the original:163164- **Description**: Trimmed from 10 lines with keyword stuffing to a concise third-person summary with clear trigger guidance165- **Removed "Why This Skill Exists"**: Replaced with a 2-sentence overview — the rationale is implicit in the workflow166- **Collapsed Checkpoints A/B**: Renamed to "Pre-Draft Intake" and "Post-Draft Alignment" with streamlined content167- **Removed the `tags` field**: Not part of the required frontmatter spec168- **Eliminated the full exhibit template**: Replaced the verbatim 50-line code block with a 9-item numbered list describing each section — the agent can generate the actual text169- **Consolidated "Guidelines" and "Quality Audit"**: Merged into a "Quality Checklist" and a "Pitfalls" section170- **Reduced from 225 lines to ~145 lines** while preserving all domain-critical tables, checklists, and legal guardrails