Ефективність і оцінювання
Цикли, шаблони, питання та сесії оцінювання — проводьте оцінку ефективності програмно.
Цикл оцінювання
Endpoints
| GET | /review-cycles | Отримує колекцію ресурсів ReviewCycle. |
| POST | /review-cycles | Створює ресурс ReviewCycle. |
| GET | /review-cycles/{id} | Отримує ресурс ReviewCycle. |
| PATCH | /review-cycles/{id} | Оновлює ресурс ReviewCycle. |
| DELETE | /review-cycles/{id} | Видаляє ресурс ReviewCycle. |
| POST | /review-cycles/{id}/close | Створює ресурс ReviewCycle. |
| POST | /review-cycles/{id}/launch | Створює ресурс ReviewCycle. |
| POST | /review-cycles/{id}/release | Створює ресурс ReviewCycle. |
Поля схеми
| Поле | Тип | Опис |
|---|---|---|
| id | string | |
| name* | string | |
| periodStart* | string (date-time) | |
| periodEnd* | string (date-time) | |
| status | string | |
| launchedAt | string,null (date-time) | |
| closedAt | string,null (date-time) | |
| releasedAt | string,null (date-time) | |
| template | string,null (iri-reference) | |
| createdBy | string (iri-reference) | |
| sessions | array | |
| questions | array | Cycle-bespoke questions (when no template is attached). |
| createdAt | string (date-time) | |
| updatedAt | string (date-time) | |
| possibleStatuses | string |
Шаблон оцінювання
Endpoints
| GET | /review-templates | Отримує колекцію ресурсів ReviewTemplate. |
| POST | /review-templates | Створює ресурс ReviewTemplate. |
| GET | /review-templates/{id} | Отримує ресурс ReviewTemplate. |
| PATCH | /review-templates/{id} | Оновлює ресурс ReviewTemplate. |
| DELETE | /review-templates/{id} | Видаляє ресурс ReviewTemplate. |
| POST | /review-templates/{id}/clear-default | Створює ресурс ReviewTemplate. |
| POST | /review-templates/{id}/set-default | Створює ресурс ReviewTemplate. |
Поля схеми
| Поле | Тип | Опис |
|---|---|---|
| id | string | |
| name* | string | |
| isDefault | boolean | |
| questions | array | |
| createdAt | string (date-time) | |
| updatedAt | string (date-time) | |
| default | boolean |
Питання оцінювання
Endpoints
| GET | /review-questions | Отримує колекцію ресурсів ReviewQuestion. |
| POST | /review-questions | Створює ресурс ReviewQuestion. |
| GET | /review-questions/{id} | Отримує ресурс ReviewQuestion. |
| PATCH | /review-questions/{id} | Оновлює ресурс ReviewQuestion. |
| DELETE | /review-questions/{id} | Видаляє ресурс ReviewQuestion. |
Поля схеми
| Поле | Тип | Опис |
|---|---|---|
| id | string | |
| template | string,null (iri-reference) | |
| cycle | string,null (iri-reference) | |
| position* | integer | |
| prompt* | string | |
| type | string | |
| required | boolean | |
| createdAt | string (date-time) | |
| updatedAt | string (date-time) | |
| possibleTypes | string |
Сесія оцінювання
Endpoints
| GET | /review-sessions | Отримує колекцію ресурсів ReviewSession. |
| GET | /review-sessions/{id} | Отримує ресурс ReviewSession. |
| PATCH | /review-sessions/{id} | Оновлює ресурс ReviewSession. |
| POST | /review-sessions/{id}/reassign | Створює ресурс ReviewSession. |
| POST | /review-sessions/{id}/submit | Створює ресурс ReviewSession. |
Поля схеми
| Поле | Тип | Опис |
|---|---|---|
| id | string | |
| cycle | string (iri-reference) | |
| reviewee | string (iri-reference) | |
| reviewer | string (iri-reference) | |
| reviewerKind | string | |
| status | string | |
| submittedAt | string,null (date-time) | |
| answers | array | NOT in `review_session:write` — ApiPlatform's collection denormalization for OneToMany trips on the orphanRemoval + uniq_review_answer combo (remove-then-add at flush time conflicts with the unique constraint). The custom `ReviewSessionPatchProcessor` reads the answers array off the raw PATCH body and reconciles by `question` IRI — the only stable key when the input may or may not carry a real `@id`. |
Об'єкт оцінювання
Endpoints
| GET | /review-targets | Отримує колекцію ресурсів ReviewTarget. |
| POST | /review-targets | Створює ресурс ReviewTarget. |
| GET | /review-targets/{id} | Отримує ресурс ReviewTarget. |
| PATCH | /review-targets/{id} | Оновлює ресурс ReviewTarget. |
| DELETE | /review-targets/{id} | Видаляє ресурс ReviewTarget. |
Поля схеми
| Поле | Тип | Опис |
|---|---|---|
| id | string | |
| cycle | string,null (iri-reference) | |
| employee* | string (iri-reference) | |
| title* | string | |
| description | stringnull | |
| kind | string | |
| targetValue | stringnull | |
| unit | stringnull | |
| actualValue | stringnull | |
| outcome | stringnull | |
| reviewComment | stringnull | |
| assessedAt | string,null (date-time) | |
| position | integer | |
| objective | string,null (iri-reference) | |
| weight | stringnull | |
| status | string | |
| createdBy | string (iri-reference) | |
| createdAt | string (date-time) | |
| updatedAt | string (date-time) | |
| possibleKinds | string | |
| possibleOutcomes | string |
Відповідь оцінювання
Endpoints
| GET | /review-answers/{id} | Отримує ресурс ReviewAnswer. |
Поля схеми
| Поле | Тип | Опис |
|---|---|---|
| id | string | |
| session | string (iri-reference) | |
| question | string (iri-reference) | |
| rating | stringnull | |
| freeText | stringnull | |
| lockVersion | integer | |
| createdAt | string (date-time) | |
| updatedAt | string (date-time) | |
| possibleRatings | string |