• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/address.php
  • Класс: Bitrix\Crm\AddressTable
  • Вызов: AddressTable::getMap
static function getMap()
{
	return [
		'TYPE_ID' => ['data_type' => 'integer', 'primary' => true, 'required' => true],
		'ENTITY_TYPE_ID' => ['data_type' => 'integer', 'primary' => true, 'required' => true],
		'ENTITY_ID' => ['data_type' => 'integer', 'primary' => true, 'required' => true],
		'ANCHOR_TYPE_ID' => ['data_type' => 'integer'],
		'ANCHOR_ID' => ['data_type' => 'integer'],
		'ADDRESS_1' => ['data_type' => 'string'],
		'ADDRESS_2' => ['data_type' => 'string'],
		'CITY' => ['data_type' => 'string'],
		'POSTAL_CODE' => ['data_type' => 'string'],
		'REGION' => ['data_type' => 'string'],
		'PROVINCE' => ['data_type' => 'string'],
		'COUNTRY' => ['data_type' => 'string'],
		'COUNTRY_CODE' => ['data_type' => 'string'],
		'LOC_ADDR_ID' => ['data_type' => 'integer', 'default_value' => 0],
		'IS_DEF' => ['data_type' => 'boolean', 'values' => [0, 1], 'default_value' => 0]
	];
}