• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/log.php
  • Класс: BitrixRestLogTable
  • Вызов: LogTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'TIMESTAMP_X' => array(
			'data_type' => 'datetime',
		),
		'CLIENT_ID' => array(
			'data_type' => 'string',
		),
		'PASSWORD_ID' => array(
			'data_type' => 'integer',
		),
		'SCOPE' => array(
			'data_type' => 'string',
		),
		'METHOD' => array(
			'data_type' => 'string',
		),
		'REQUEST_METHOD' => array(
			'data_type' => 'string',
		),
		'REQUEST_URI' => array(
			'data_type' => 'string',
		),
		'REQUEST_AUTH' => array(
			'data_type' => 'text',
			'serialized' => true,
		),
		'REQUEST_DATA' => array(
			'data_type' => 'text',
			'serialized' => true,
		),
		'RESPONSE_STATUS' => array(
			'data_type' => 'string',
		),
		'RESPONSE_DATA' => array(
			'data_type' => 'text',
			'serialized' => true,
		),
	);
}