K&M Tire
K&M Tire API response format, parts_kmt MongoDB schema, and tire-specific fields.
K&M Tire Data Structure
K&M Manufacturing provides tire data through their own REST API, separate from DIS. Tire data is stored in the parts_kmt MongoDB collection.
MongoDB Collection
| Collection | Documents | Type |
|---|---|---|
parts_kmt | ~7,091 | Tires |
K&M API Response Format
{
"partNumber": "KMT-10x16.5",
"description": "10x16.5 NHS Skid Steer Tire",
"listPrice": 189.99,
"tireSize": "10x16.5",
"plyRating": "10PR",
"treadPattern": "R4",
"loadIndex": "130",
"speedRating": "A8",
"rimDiameter": 16.5,
"category": "Skid Steer Tires"
}Tire-Specific Fields
K&M tires include fields that standard parts don't have:
| Field | Description | Example |
|---|---|---|
tireSize | Standard tire size notation | 10x16.5 |
plyRating | Ply rating / load range | 10PR |
treadPattern | Tread type code | R4 |
loadIndex | Load capacity index | 130 |
speedRating | Speed rating code | A8 |
rimDiameter | Rim diameter in inches | 16.5 |
Index Separation
K&M tires are indexed separately from DIS parts:
parts_current→ DIS parts only (~2,581 docs)tires_current→ K&M tires only (~7,091 docs)
See Search Index Improvement Plan for the index separation proposal.
Related
- Vendor Data Overview — Unified IndexedPart interface
- Search Service — How the search index is structured