Ga naar inhoud

Diagnosis object

Diagnosis represents the diagnosis of a disease.

Properties

  • id (integer) Unique ID for the disease.
  • name (object, value per language) object with localized names (string)
  • PC (object , value per continent) Percentage, split out per continent (float).
  • cutOff (float) cutoff value (max value for probability).
  • startUp (integer) Selection mechanism for test profile.
  • startUpGp (integer) Selection mechanism for test profile when using GP
  • sortNr (object, value per language) object with weights, one per language.

Store

Store name: Diagnose

indexes

Indexes made on: * startUp * startupGP

Example

{
  "id" : 123,
  "name" : {
    "en" : "disease",
    "fr" : "maladie",
    "nl" : "ziekte",
    "es" : "enfermedad",
    "pt" : "doença",
    "de" : "Krankheit",
    "id" : "penyakit"
  },
  "PC" : {
    "af" : 12.3,
    "am" : 12.3,
    "as" : 12.3,
    "co" : 12.3,
    "tr" : 12.3,
    "gp" : 12.3
  },
  "cutOff": 12.45,
  "startUp" : 2,
  "startUpGP" : 3,
  "sortNr" : {
    "en" : 120,
    "fr" : 140,
    "nl" : 230,
    "es" : 1500,
    "pt" : 2400,
    "de" : 2500,
    "id" : 2560
    }
  }
}