B10 Export Documentation

MD Logic export will be in the following format.

Upon requesting details on a patient you will be sent an email that contains a direct link to download the requested data.

Upon clicking on this link you will be directed to a page where you can download a zip file. This zip file will contain all the documents in the requested patient's record.

Included in this export file there will be a file with the name "manifest.json"

This file will be a standard JSON File that follows the following schema


{
  "title": "Root Schema",
  "type": "array",
  "default": [],
  "items": {
    "title": "A Schema",
    "type": "object",
    "required": [
      "Descripton",
      "FileName",
      "FileType",
      "DateCreated"
    ],
    "properties": {
      "Descripton": {
        "title": "The Descripton Schema",
        "type": "string",
        "examples": [
          "MRI Spine",
          "MRI Hip",
          "Registration Form",
          "Progress Notes"
        ]
      },
      "FileName": {
        "title": "The FileName Schema",
        "type": "string",
        "examples": [
          "testFile_51.pdf",
          "testFile_3304.pdf",
          "testFile_3305.doc",
          "testFile_3305.xml",
          "testFile_3305.jpg"
        ]
      },
      "FileType": {
        "title": "The FileType Schema",
        "type": "string",
        "examples": [
          "Word",
          "PDF",
          "CCDA",
          "JPEG"
        ]
      },
      "DateCreated": {
        "title": "The DateCreated Schema",
        "type": "string",
        "examples": [
          "8/25/2020",
          "8/24/2020",
          "8/20/2020"
        ]
      }
    },
    "examples": []
  },
  "examples": []
}

 

 

If you need a full export of all, please contact mdlogic support. As this can be an extremely large amount of data, special arrangements will need to be made to deliver the data.

You will recive a collection of  ZipFiles, each of these is structurally identical to the individual patient export.

Allong with the zip files you will provided with a manifest file. This manifest file includes demographic information about each patient along with information as to which zip file belongs to each patient. It will follow the schema below.


{
  "title": "Root Schema",
  "type": "array",
  "default": [],
  "items": {
    "title": "A Schema",
    "type": "object",
    "required": [
      "FirstName",
      "LastName",
      "MiddleName",
      "Suffix",
      "Address",
      "Address2",
      "City",
      "State",
      "Zip",
      "Gender",
      "DOB",
      "PatientFileName"
    ],
    "properties": {
      "FirstName": {
        "type": "string",
        "examples": [
          "John",
          "Jane",
        ]
      },
      "LastName": {
        "title": "The LastName Schema",
        "type": "string",
        "examples": [
          "Doe"
        ]
      },
      "MiddleName": {
        "title": "The MiddleName Schema",
        "type": "string",
        "examples": [
          "Q",
          "James"
        ]
      },
      "Suffix": {
        "title": "The Suffix Schema",
        "type": "string",
        "examples": [
          "Jr",
          "Sr",
          "III"
        ]
      },
      "Address1": {
        "title": "The Address1 Schema",
        "type": "string",
        "examples": [
          "143 Main Street"
        ]
      },
      "Address2": {
        "title": "The Address2 Schema",
        "type": "string",
        "examples": [
          "Suite 100"
        ]
      },
      "City": {
        "title": "The City Schema",
        "type": "string",
        "examples": [
          "Atlanta",
          "Houston"
        ]
      },
      "State": {
        "title": "The State Schema",
        "type": "string",
        "examples": [
          "GA",
          "TX",
          "NY"
        ]
      },
      "Zip": {
        "title": "The Zip Schema",
        "type": "string",
        "examples": [
          "30097"
        ]
      },
      "DOB": {
        "title": "The DOB Schema",
        "type": "string",
        "examples": [
          "01/01/1980"
        ]
      },
      "PatientFileName": {
        "title": "The PatientFileName Schema",
        "type": "string",
        "examples": [
          "5125.zip"
        ]
      }
    },
    "examples": []
  },
  "examples": []
}