MedGEO integrates the information gathered about trays with the rest of the healthcare systems. Information about instrument tray movement within and between facilities can be retrieved from MedGEO through REST API calls
Communication Protocol |
|
Supported Fields |
|
JSON Schema Example for Tray Integration | |
JSON Data Example:
{ "deviceId": "D123456", "versionModelNumber": "VM2024", "description": "Advanced Surgical Kit", "size": "Large", "modelNumber": "MNSK3024", "manufacturer": "MedEquip Inc.", "location": "OR Room 5", "configurations": "Standard Setup", "assetType": "Reusable" } This JSON format provides a template for transmitting tray location data within MedGEO's system. It can be adjusted to meet specific partner requirements and system configurations. |
XML Schema Example for Tray Integration | |
XML Data Example:
<Tray> <DeviceId>D123456</DeviceId> <VersionModelNumber>VM2024</VersionModelNumber> <Description>Advanced Surgical Kit</Description> <Size>Large</Size> <ModelNumber>MNSK3024</ModelNumber> <Manufacturer>MedEquip Inc.</Manufacturer> <Location>OR Room 5</Location> <Configurations>Standard Setup</Configurations> <AssetType>Reusable</AssetType> </Tray> This XML schema outlines how tray data is structured and transmitted within the MedGEO system. The schema is designed to be flexible, accommodating various tray configurations and details as required by different healthcare facilities. |