This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Resources/metadata/fields/address.json
T
2024-04-01 17:05:57 +03:00

67 lines
1.8 KiB
JSON

{
"actualFields": [
"street",
"city",
"state",
"country",
"postalCode"
],
"fields": {
"street": {
"type": "text",
"maxLength": 255,
"dbType": "varchar"
},
"city": {
"type":"varchar",
"maxLength": 100,
"view": "views/fields/address-city",
"customizationOptionsDisabled": true,
"pattern": "$noBadCharacters"
},
"state": {
"type":"varchar",
"maxLength": 100,
"view": "views/fields/address-state",
"customizationOptionsDisabled": true,
"pattern": "$noBadCharacters"
},
"country": {
"type":"varchar",
"maxLength": 100,
"view": "views/fields/address-country",
"customizationOptionsDisabled": true,
"pattern": "$noBadCharacters"
},
"postalCode": {
"type":"varchar",
"maxLength": 40,
"pattern": "$noBadCharacters"
},
"map": {
"type": "map",
"notStorable": true,
"orderDisabled": true,
"readOnly": true,
"layoutListDisabled": true,
"provider": "Google",
"height": 300,
"exportDisabled": true,
"importDisabled": true
}
},
"params": [
{
"name": "viewMap",
"type": "bool"
}
],
"notMergeable": true,
"notCreatable": false,
"filter": true,
"skipOrmDefs": true,
"personalData": true,
"valueFactoryClassName": "Espo\\Core\\Field\\Address\\AddressFactory",
"attributeExtractorClassName": "Espo\\Core\\Field\\Address\\AddressAttributeExtractor"
}