AQL Sample Size for Lot 8,000 — GIII Inspection at AQL 0.65

ISO 2859-1:1999 Table II-A · Cross-verified against QIMA reference
Lot size 8,000 units
Inspection level GIII
AQL level 0.65
Code letter M
Sample size 315 garments
Accept if defects ≤ 5
Reject if defects ≥ 6

What this means

For a production lot of 8,000 garments at GIII inspection level with an AQL of 0.65 (critical defects), ISO 2859-1 requires the buyer's QC inspector to pull 315 garments at random from across the lot. If they find 5 or fewer defects, the entire lot is accepted. 6 or more defects means the lot is rejected — the factory must then sort 100% of the lot, repair defective pieces, and re-present for inspection.

Inspection level note: Tightened inspection — used after a failed inspection or for premium brands.

AQL tier: Safety / regulatory defects — needle fragments, choking hazards, missing care labels.

Accept / reject decision table

Defects found in sampleDecision
0 defectsACCEPT
1 defectACCEPT
2 defectsACCEPT
3 defectsACCEPT
4 defectsACCEPT
5 defectsACCEPT
6 defectsREJECT
7 defectsREJECT

Worked example — your shipment

Suppose your factory has produced 8,000 garments for a buyer who specified GIII / AQL 0.65. The buyer's inspector arrives, opens 5-8 cartons at random, and pulls 315 garments across them.

If the inspector finds 5 defects in those 315 garments → lot ACCEPTED, container ships.

If the inspector finds 6 defects → lot REJECTED. You sort 100% of 8,000 pieces, repair, and re-present in 2-3 days.

How this combination compares

This is the GIII / AQL 0.65 combination — the critical sampling plan for GIII inspection. If your buyer's PO sheet specified different parameters, here are the adjacent plans:

FAQ for Lot 8,000 · GIII · AQL 0.65

What if I find exactly 5 defects?

5 defects = ACCEPT. The accept number is the maximum number of defects you can have in the sample without rejecting. Exactly at the limit is still acceptable.

What if I find 6 defects?

6 defects = REJECT. The reject number is the lowest defect count that fails the lot. There is no "borderline" — anything ≥ 6 triggers a reject.

Can I argue an inspection where I found 6 defects?

You cannot argue the math — the accept/reject thresholds come from the ISO 2859 statistical tables. What you can argue is the classification of each defect. If the inspector marked something as a Major defect that your buyer's spec sheet calls Minor, push back with the spec sheet in writing.

What's the underlying acceptance probability at AQL 0.65?

ISO 2859-1 plans are calibrated so that lots actually at the AQL value get accepted ~95% of the time. So a lot truly at 0.65% defect rate has a 95% chance of being accepted by this plan. Lots at 2× the AQL get rejected most of the time.

Use this in your own QC software

The same logic is published as a free MIT-licensed package:

$ npm install garment-aql-calculator
$ pip install garment-aql-calculator

// Node.js
const { calculateAQL } = require('garment-aql-calculator');
calculateAQL({ lotSize: 8000, inspectionLevel: 'GIII', aql: 0.65 });
// → { codeLetter: 'M', sampleSize: 315, acceptNumber: 5, rejectNumber: 6 }