Timken · Schema

Timken Bearing

Schema for a Timken engineered bearing product specification

BearingsIndustrialManufacturingMotion ControlFortune 1000

Properties

Name Type Description
partNumber string Timken part number for the bearing
type string Bearing type classification
boreDiameter number Bore diameter in millimeters
outsideDiameter number Outside diameter in millimeters
width number Bearing width or height in millimeters
dynamicLoadRating number Dynamic load rating (C) in kilonewtons (kN)
staticLoadRating number Static load rating (C0) in kilonewtons (kN)
speedRating object Speed ratings for the bearing
material string Primary material (e.g., steel, ceramic, stainless)
series string Timken product series designation
applications array Typical application areas
cadAvailable boolean Whether CAD drawings are available for download
weight number Bearing weight in kilograms
View JSON Schema on GitHub

JSON Schema

timken-bearing-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/timken/main/json-schema/timken-bearing-schema.json",
  "title": "Timken Bearing",
  "description": "Schema for a Timken engineered bearing product specification",
  "type": "object",
  "properties": {
    "partNumber": {
      "type": "string",
      "description": "Timken part number for the bearing"
    },
    "type": {
      "type": "string",
      "enum": [
        "Tapered Roller Bearing",
        "Cylindrical Roller Bearing",
        "Ball Bearing",
        "Spherical Roller Bearing",
        "Thrust Bearing",
        "Plain Bearing",
        "Housed Unit",
        "Precision Bearing"
      ],
      "description": "Bearing type classification"
    },
    "boreDiameter": {
      "type": "number",
      "description": "Bore diameter in millimeters"
    },
    "outsideDiameter": {
      "type": "number",
      "description": "Outside diameter in millimeters"
    },
    "width": {
      "type": "number",
      "description": "Bearing width or height in millimeters"
    },
    "dynamicLoadRating": {
      "type": "number",
      "description": "Dynamic load rating (C) in kilonewtons (kN)"
    },
    "staticLoadRating": {
      "type": "number",
      "description": "Static load rating (C0) in kilonewtons (kN)"
    },
    "speedRating": {
      "type": "object",
      "description": "Speed ratings for the bearing",
      "properties": {
        "greaseRpm": {
          "type": "integer",
          "description": "Maximum speed with grease lubrication (RPM)"
        },
        "oilRpm": {
          "type": "integer",
          "description": "Maximum speed with oil lubrication (RPM)"
        }
      }
    },
    "material": {
      "type": "string",
      "description": "Primary material (e.g., steel, ceramic, stainless)"
    },
    "series": {
      "type": "string",
      "description": "Timken product series designation"
    },
    "applications": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Typical application areas"
    },
    "cadAvailable": {
      "type": "boolean",
      "description": "Whether CAD drawings are available for download"
    },
    "weight": {
      "type": "number",
      "description": "Bearing weight in kilograms"
    }
  },
  "required": ["partNumber", "type"]
}