XUND API Documentation

SymptomDetails

Model Definition

This model represents a symptom with all available details

Property name

Property type

Property description

id

string

Symptom's identifier. Use this value to refer the symptom on other related endpoints

name

string (localized text)

Name of the symptom

infoShort

string (localized text)

Short description of the symptom

infoLong

string (localized text)

Longer description of the symptom

gender

Gender[]

List of genders that can have the symptom

bodyParts

TypeScript
{
  /**
   * Identifier of bodyPart
   */
  id: string

  /**
   * Localized name of the related body part. Can be shown to users
   */
  name: string

  /**
   * Use this code to identify the bodypart when it's linked to user interface
   */
  code: string
}

List of bodyParts where the symptom can be present

code

XundFhirCodeableConcept

FHIR compliant code structure used in check initialization (used for UMLS codes)

umls

string

Deprecated. Use code instead

Example

Click to expand...
JSON
{
    "id": "01bbacba-a8a3-4660-8b25-2c3841982f95",
    "name": "Ravenous hunger",
    "infoShort": "Sudden onset of severe hunger",
    "infoLong": "A sudden onset of an irresistible urge to eat, often focused on specific foods",
    "gender": [
        "MALE",
        "FEMALE"
    ],
    "umls": "C0020175",
    "code": {
        "coding": [
            {
                "code": "C0020175"
            }
        ]
    },
    "bodyParts": [
        {
            "id": "834ab6f0-990f-49a7-a4d5-a4c2e22d11a1",
            "name": "Mental",
            "code": "mental"
        },
        {
            "id": "421dec65-85ed-4d3d-8b86-b6d6cc399345",
            "name": "Belly",
            "code": "stomach"
        },
        {
            "id": "6805ab57-ff41-4318-a525-c24fa9a9a6dc",
            "name": "Mouth",
            "code": "mouth"
        },
        {
            "id": "22d4e379-bfdb-4f24-af65-0c209db26aeb",
            "name": "Throat",
            "code": "throat"
        }
    ]
}