Skip to main content

Device Profiles

A Device Profile is a comprehensive blueprint that defines how a medical device operates, communicates, and integrates within the Medibound ecosystem. It serves as the foundation for device management, data collection, and system integration.

What is a Device Profile?

A Device Profile is a structured representation that includes:

  • Device specifications and capabilities
  • Communication protocols and interfaces
  • Data formats and schemas
  • Security requirements
  • Operational parameters
  • Compliance certifications

Device Profile Components

Schema

{
"dataSchema": {
"measurements": {
"tidalVolume": {
"type": "float",
"unit": "ml",
"range": [0, 2000],
"samplingRate": "100ms"
},
"respiratoryRate": {
"type": "integer",
"unit": "breaths/min",
"range": [0, 60],
"samplingRate": "1s"
}
},
"alarms": {
"highPressure": {
"type": "boolean",
"priority": "high",
"threshold": 40
}
}
}
}