• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/rest/controllers/scrum/epic.php
  • Класс: BitrixTasksRestControllersScrumEpic
  • Вызов: Epic::getFieldsAction
public function getFieldsAction(): array
{
	return [
		'fields' => [
			'name' => [
				'type' => 'string',
			],
			'description' => [
				'type' => 'string',
			],
			'groupId' => [
				'type' => 'integer',
			],
			'color' => [
				'type' => 'string',
			],
			'files' => [
				'type' => 'array',
			],
			'createdBy' => [
				'type' => 'integer',
			],
			'modifiedBy' => [
				'type' => 'integer',
			],
		],
	];
}