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
  • XML/JSON over HTTPS or SFTP: MedGEO supports flexible schema with XML or JSON where we can configure the integration engine to format the data based on the schema defined by the partner.
  • RPA: MedGEO uses robotic process automation to interface directly with EHR systems through their UI in the absence of APIs. This is not our preferred option and we would do it only if there is no other choice.
Supported Fields
  • Tray Location Fields:
    • Device Id
    • Version Model Number
    • Description
    • size
    • Model Number
    • Manufacturer
    • location
    • configurations
    • Asset Type
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.