...
Creating "a replacement" composition
Specification
...
See on SwaggerHub (2.32.2)
Example:
Expand |
---|
title | Request Schema example |
---|
|
Code Block |
---|
'/patients/{patientId}/composition/{compositionId}/episode/{episodeId}/encounter/{encounterId}/printForm':
get:
description: 'Отримання форми для друку'
operationId: getPrintForm
tags: [ 'main' ]
parameters:
- $ref: '#/components/parameters/compositionId'
- $ref: '#/components/parameters/patientId'
- $ref: '#/components/parameters/episodeId'
- $ref: '#/components/parameters/encounterId'
- in: query
name: templateId
required: true
schema:
type: string
description: id шаблону (сервіс man), що використовується для рендерингу форми
examples:
newborn:
value: "20"
description: приклад id шаблону для МВН
disability:
value: "21"
description: приклад id шаблону для МВТН |
|
...