Embedded, Scribe SDK & Scribe API Outputs

The last step in all three integration methods involve supplying the resultant summary to the EHR via an output API. This Autoscriber API can generate different types of outputs depending on which option was specified in your request.

JSON Output definition:

{
    ... rest of body
    "out": [{
      "type": "standard_en",
      "toggleCodes": true,
      "coding_systems": ["SNOMED_CT"]
    }]
}

Attributes:

Name

Description

Type

Required/Optional

type

See here for Dutch templates

See here for English templates

Boolean Required
toggleCodes To indicate if you want to receive medical coding with the note. Boolean Optional
coding_systems

Whether SNOMED_CT or ICD10 medical codes are generated.

If coding is needed, then either "SNOMED_CT" or "ICD10" must be included

String

If toggleCodes is set as true , then this is required.

If toggleCodes is false , this line must be left out.

JSON Example result:

{
  "standard_en": {
      "final": true,
      "data": [
        {
          "items": [
            {
              "sentences": [],
              "text": "Strong heachaches since 5 days"
            }
          ],
          "section": "Subjectief"
        },
        {
          "items": [
            {
              "sentences": [],
              "text": "Refer to neurologist"
            }
          ],
          "section": "Plan"
        }
      ]
    }
}

Types with episodes

  • soap_episodes_en
  • soap_episodes_nl

JSON Example result:

{
  "soap_nl": {
      "final": true,
      "data": [{
        "episode": "Headache",
        "note": [
          {
            "items": [
              {
                "sentences": [],
                "text": "Strong heachaches since 5 days"
              }
            ],
            "section": "Subjectief"
          },
          {
            "items": [
              {
                "sentences": [],
                "text": "Refer to neurologist"
              }
            ],
            "section": "Plan"
          }
        ]
      }]
   },
}
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us