Stryker · Schema

Stryker Medical Device

Schema representing a Stryker medical device or implant product.

Medical DevicesHealthcare TechnologyFortune 500Medical EquipmentOrthopedicsSurgical Equipment

Properties

Name Type Description
id string Unique product identifier or catalog number
name string Product name
description string Product description and clinical application
category string Product category
division string Stryker business division
procedureType array Surgical or clinical procedures this device supports
clearanceType string Regulatory clearance type
technologyType string Technology type
compatibleSystems array Compatible Stryker systems or platforms
clinicalFeatures array Key clinical features and benefits
url string Product page URL on stryker.com
View JSON Schema on GitHub

JSON Schema

stryker-medical-device-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://stryker.com/schemas/medical-device",
  "title": "Stryker Medical Device",
  "description": "Schema representing a Stryker medical device or implant product.",
  "type": "object",
  "required": ["id", "name", "category", "division"],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique product identifier or catalog number",
      "example": "STR-MAKO-KNE-001"
    },
    "name": {
      "type": "string",
      "description": "Product name",
      "example": "Mako Total Knee"
    },
    "description": {
      "type": "string",
      "description": "Product description and clinical application"
    },
    "category": {
      "type": "string",
      "description": "Product category",
      "enum": [
        "Orthopedic Implant",
        "Robotic System",
        "Surgical Instrument",
        "Endoscopy",
        "Neurovascular",
        "Spine Implant",
        "EMS Equipment",
        "Connected Care Platform",
        "Hospital Equipment"
      ]
    },
    "division": {
      "type": "string",
      "description": "Stryker business division",
      "enum": [
        "Orthopaedics",
        "MedSurg",
        "Neurotechnology",
        "Spine",
        "Endoscopy",
        "Instruments",
        "Emergency Medical Services",
        "Digital"
      ]
    },
    "procedureType": {
      "type": "array",
      "description": "Surgical or clinical procedures this device supports",
      "items": {
        "type": "string"
      },
      "example": ["Total Knee Arthroplasty", "Partial Knee Arthroplasty"]
    },
    "clearanceType": {
      "type": "string",
      "description": "Regulatory clearance type",
      "enum": ["FDA 510(k)", "FDA PMA", "CE Mark", "Multiple"]
    },
    "technologyType": {
      "type": "string",
      "description": "Technology type",
      "enum": ["Robotic", "Conventional", "Navigation-Assisted", "IoT", "Software", "Implant", "Instrument"]
    },
    "compatibleSystems": {
      "type": "array",
      "description": "Compatible Stryker systems or platforms",
      "items": {
        "type": "string"
      }
    },
    "clinicalFeatures": {
      "type": "array",
      "description": "Key clinical features and benefits",
      "items": {
        "type": "string"
      }
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Product page URL on stryker.com"
    }
  }
}