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