Medical Chart Block

list

request
GET /api/v2/medical-charts/blocks HTTP/1.1
response
HTTP/1.1 200 OK

[ {
  "name" : "itigrisAccomodationAddidation",
  "titleName" : "Исследование аккомодации, определение аддидации",
  "position" : 1,
  "active" : true
}, {
  "name" : "itigrisAnamnesis",
  "titleName" : "Жалобы и зрительные нагрузки",
  "position" : 2,
  "active" : false
}, {
  "name" : "itigrisMedicalCenter1",
  "titleName" : "Мед. центр, врач 1",
  "position" : 3,
  "active" : true
}, {
  "name" : "itigrisMedicalCenter2",
  "titleName" : "Мед. центр, врач 2",
  "position" : 4,
  "active" : false
}, {
  "name" : "itigrisMedicalHistory",
  "titleName" : "Медицинская история",
  "position" : 5,
  "active" : true
}, {
  "name" : "itigrisOcularSurfaceDiseaseIndex",
  "titleName" : "Ocular Surface Disease Index",
  "position" : 6,
  "active" : false
}, {
  "name" : "itigrisPreliminaryTests",
  "titleName" : "Предварительные тесты и характер зрения",
  "position" : 7,
  "active" : true
}, {
  "name" : "itigrisPreviousGlasses",
  "titleName" : "Текущие очки",
  "position" : 8,
  "active" : false
}, {
  "name" : "itigrisPurposeDiagnosis",
  "titleName" : "Назначение и диагноз",
  "position" : 9,
  "active" : true
}, {
  "name" : "itigrisStatusOculorum1",
  "titleName" : "Status Oculorum Part 1",
  "position" : 10,
  "active" : false
}, {
  "name" : "itigrisStatusOculorum2",
  "titleName" : "Status Oculorum Part 2",
  "position" : 11,
  "active" : true
}, {
  "name" : "itigrisStatusOculorum3",
  "titleName" : "Status Oculorum Part 3",
  "position" : 12,
  "active" : false
}, {
  "name" : "itigrisVisionCheck",
  "titleName" : "Показатели",
  "position" : 13,
  "active" : true
} ]
Table 253. response description
Path Type Description

name

String

Medical chart block name

titleName

String

Medical chart block titleName

position

Number

Medical chart block position

active

Boolean

Is medical chart block in use ?

update

request
PUT /api/v2/medical-charts/blocks HTTP/1.1

[ {
  "name" : "itigrisAccomodationAddidation",
  "position" : 1,
  "active" : true
}, {
  "name" : "itigrisAnamnesis",
  "position" : 2,
  "active" : false
}, {
  "name" : "itigrisMedicalCenter1",
  "position" : 3,
  "active" : true
}, {
  "name" : "itigrisMedicalCenter2",
  "position" : 4,
  "active" : false
}, {
  "name" : "itigrisMedicalHistory",
  "position" : 5,
  "active" : true
}, {
  "name" : "itigrisOcularSurfaceDiseaseIndex",
  "position" : 6,
  "active" : false
}, {
  "name" : "itigrisPreliminaryTests",
  "position" : 7,
  "active" : true
}, {
  "name" : "itigrisPreviousGlasses",
  "position" : 8,
  "active" : false
}, {
  "name" : "itigrisPurposeDiagnosis",
  "position" : 9,
  "active" : true
}, {
  "name" : "itigrisStatusOculorum1",
  "position" : 10,
  "active" : false
}, {
  "name" : "itigrisStatusOculorum2",
  "position" : 11,
  "active" : true
}, {
  "name" : "itigrisStatusOculorum3",
  "position" : 12,
  "active" : false
}, {
  "name" : "itigrisVisionCheck",
  "position" : 13,
  "active" : true
} ]
Table 254. request description
Path Type Description Constraints

name

String

Medical chart block name

position

Number

Medical chart block position

active

Boolean

Is medical chart block in use ?

response
HTTP/1.1 200 OK