interface cmn_location { city : Typed < string , { label : "City" } > ; cmn_location_source : Typed < string , { dropdown : "dropdown_with_none" ; label : [ { hint : "Discovery source for this location" ; label : "Location source" ; language : "en" ; plural : "Location sources" ; } , ] ; } , > ; cmn_location_type : Typed < string , { dropdown : "dropdown_with_none" ; label : "Location type" } , > ; company : Typed < | string | Record < "core_company" > | ExplicitKey < "core_company" > | TableBrand < "core_company" > , { label : "Company" ; referenceTable : "core_company" } , > ; contact : Typed < | string | Record < "sys_user" > | ExplicitKey < "sys_user" > | TableBrand < "sys_user" > , { dependent : "company" ; label : "Contact" ; referenceTable : "sys_user" } , > ; coordinates_retrieved_on : Typed < ` ${ number } - ${ number } - ${ number } ${ number } : ${ number } : ${ number } ` , { label : [ { hint : "Date and time when the latitide and longitude are populated" ; label : "Coordinates retrieved on" ; language : "en" ; plural : "Coordinates retrieved ons" ; } , ] ; } , > ; country : Typed < string | ((string | number) & Record<never, never>)
, { dropdown : "suggestion" ; label : "Country" } , > ; duplicate : Typed < boolean , { label : [ { hint : "If true, this location is a duplicate of another existing location record" ; label : "Duplicate" ; language : "en" ; plural : "Duplicates" ; } , ] ; } , > ; fax_phone : Typed < string , { label : "Fax phone" } > ; full_name : Typed < string , { label : [ { hint : "System maintained field" ; label : "Full name" ; language : "en" ; plural : "Full names" ; } , ] ; maxLength : 255 ; } , > ; lat_long_error : Typed < string , { label : "Lat long error" ; maxLength : 1000 } > ; latitude : Typed < number , { label : "Latitude" ; maxLength : 40 } > ; life_cycle_stage : Typed < | string | Record < "life_cycle_stage" > | ExplicitKey < "life_cycle_stage" > | TableBrand < "life_cycle_stage" > , { label : "Life Cycle Stage" ; maxLength : 40 ; referenceKey : "name" ; referenceQual : "javascript: new LifeCycleUtil().filterLifeCycleStage()" ; referenceTable : "life_cycle_stage" ; } , > ; life_cycle_stage_status : Typed < | string | Record < "life_cycle_stage_status" > | ExplicitKey < "life_cycle_stage_status" > | TableBrand < "life_cycle_stage_status" > , { label : "Life Cycle Stage Status" ; maxLength : 40 ; referenceKey : "name" ; referenceQual : "javascript: new LifeCycleUtil().filterLifeCycleStageStatus()" ; referenceTable : "life_cycle_stage_status" ; } , > ; longitude : Typed < number , { label : "Longitude" ; maxLength : 40 } > ; managed_by_group : Typed < | string | Record < "sys_user_group" > | ExplicitKey < "sys_user_group" > | TableBrand < "sys_user_group" > , { label : [ { hint : "User group responsible for managing this location" ; label : "Managed by group" ; language : "en" ; plural : "Managed by groups" ; } , ] ; referenceTable : "sys_user_group" ; } , > ; name : Typed < string , { label : "Name" ; maxLength : 100 } > ; parent : Typed < | string | Record < "cmn_location" > | ExplicitKey < "cmn_location" > | TableBrand < "cmn_location" > , { attributes : { tree_picker : true } ; cascadeRule : "restrict" ; label : "Parent" ; referenceTable : "cmn_location" ; } , > ; parent_hp1 : Typed < string | number , { attributes : { loader_exempt : true ; serializer : "com.glide.script.OmittedElementXMLSerializer" ; } ; columnType : "record_hierarchy_path" ; label : "Parent HP1" ; maxLength : 255 ; readOnly : true ; } , > ; phone : Typed < string , { label : "Phone" } > ; phone_territory : Typed < | string | Record < "sys_phone_territory" > | ExplicitKey < "sys_phone_territory" > | TableBrand < "sys_phone_territory" > , { attributes : { encode_utf8 : false } ; label : "Phone territory" ; referenceTable : "sys_phone_territory" ; } , > ; primary_location : Typed < | string | Record < "cmn_location" > | ExplicitKey < "cmn_location" > | TableBrand < "cmn_location" > , { label : [ { hint : "Original location this location is duplicating" ; label : "Primary location" ; language : "en" ; plural : "Primary locations" ; } , ] ; referenceTable : "cmn_location" ; } , > ; state : Typed < string , { label : "State / Province" } > ; stock_room : Typed < boolean , { default : false ; label : "Stock room" } > ; street : Typed < string , { label : "Street" ; maxLength : 255 } > ; sys_created_by : Typed < string , { label : [ { label : "Created by" ; language : "en" ; plural : "Created by" } ] } , > ; sys_created_on : Typed < ` ${ number } - ${ number } - ${ number } ${ number } : ${ number } : ${ number } ` , { label : [ { label : "Created" ; language : "en" ; plural : "Created" } ] } , > ; sys_id : Typed < string , { label : [ { label : "Sys ID" ; language : "en" ; plural : "Sys IDs" } ] ; primary : true ; } , > ; sys_mod_count : Typed < number , { label : [ { label : "Updates" ; language : "en" ; plural : "Updates" } ] } , > ; sys_updated_by : Typed < string , { label : [ { label : "Updated by" ; language : "en" ; plural : "Updated by" } ] } , > ; sys_updated_on : Typed < ` ${ number } - ${ number } - ${ number } ${ number } : ${ number } : ${ number } ` , { label : [ { label : "Updated" ; language : "en" ; plural : "Updated" } ] } , > ; time_zone : Typed < string , { dropdown : "dropdown_without_none" ; dynamicValueDefinitions : { field : "time_zone" ; table : "sys_user" ; type : "choices_from_other_table" ; } ; label : "Time zone" ; } , > ; zip : Typed < string , { label : "Zip / Postal Code" } > ; } Defined in node_modules/.pnpm/@servicenow+sdk-core@4.4.1/node_modules/@servicenow/sdk-core/dist/global/Tables.d.ts:237 Properties Readonlycity city : Typed < string , { label : "City" } > Readonlycmn_ location_ source cmn_location_source : Typed < string , { dropdown : "dropdown_with_none" ; label : [ { hint : "Discovery source for this location" ; label : "Location source" ; language : "en" ; plural : "Location sources" ; } , ] ; } , > Readonlycmn_ location_ type cmn_location_type : Typed < string , { dropdown : "dropdown_with_none" ; label : "Location type" } , > Readonlycompany company : Typed < | string | Record < "core_company" > | ExplicitKey < "core_company" > | TableBrand < "core_company" > , { label : "Company" ; referenceTable : "core_company" } , > contact : Typed < | string | Record < "sys_user" > | ExplicitKey < "sys_user" > | TableBrand < "sys_user" > , { dependent : "company" ; label : "Contact" ; referenceTable : "sys_user" } , > Readonlycoordinates_ retrieved_ on coordinates_retrieved_on : Typed < ` ${ number } - ${ number } - ${ number } ${ number } : ${ number } : ${ number } ` , { label : [ { hint : "Date and time when the latitide and longitude are populated" ; label : "Coordinates retrieved on" ; language : "en" ; plural : "Coordinates retrieved ons" ; } , ] ; } , > Readonlycountry country : Typed < string | ((string | number) & Record<never, never>)
, { dropdown : "suggestion" ; label : "Country" } , > Readonlyduplicate duplicate : Typed < boolean , { label : [ { hint : "If true, this location is a duplicate of another existing location record" ; label : "Duplicate" ; language : "en" ; plural : "Duplicates" ; } , ] ; } , > Readonlyfax_ phone fax_phone : Typed < string , { label : "Fax phone" } > Readonlyfull_ name full_name : Typed < string , { label : [ { hint : "System maintained field" ; label : "Full name" ; language : "en" ; plural : "Full names" ; } , ] ; maxLength : 255 ; } , > Readonlylat_ long_ error lat_long_error : Typed < string , { label : "Lat long error" ; maxLength : 1000 } > Readonlylatitude latitude : Typed < number , { label : "Latitude" ; maxLength : 40 } > Readonlylife_ cycle_ stage life_cycle_stage : Typed < | string | Record < "life_cycle_stage" > | ExplicitKey < "life_cycle_stage" > | TableBrand < "life_cycle_stage" > , { label : "Life Cycle Stage" ; maxLength : 40 ; referenceKey : "name" ; referenceQual : "javascript: new LifeCycleUtil().filterLifeCycleStage()" ; referenceTable : "life_cycle_stage" ; } , > Readonlylife_ cycle_ stage_ status life_cycle_stage_status : Typed < | string | Record < "life_cycle_stage_status" > | ExplicitKey < "life_cycle_stage_status" > | TableBrand < "life_cycle_stage_status" > , { label : "Life Cycle Stage Status" ; maxLength : 40 ; referenceKey : "name" ; referenceQual : "javascript: new LifeCycleUtil().filterLifeCycleStageStatus()" ; referenceTable : "life_cycle_stage_status" ; } , > Readonlylongitude longitude : Typed < number , { label : "Longitude" ; maxLength : 40 } > Readonlymanaged_ by_ group managed_by_group : Typed < | string | Record < "sys_user_group" > | ExplicitKey < "sys_user_group" > | TableBrand < "sys_user_group" > , { label : [ { hint : "User group responsible for managing this location" ; label : "Managed by group" ; language : "en" ; plural : "Managed by groups" ; } , ] ; referenceTable : "sys_user_group" ; } , > Readonlyname name : Typed < string , { label : "Name" ; maxLength : 100 } > Readonlyparent parent : Typed < | string | Record < "cmn_location" > | ExplicitKey < "cmn_location" > | TableBrand < "cmn_location" > , { attributes : { tree_picker : true } ; cascadeRule : "restrict" ; label : "Parent" ; referenceTable : "cmn_location" ; } , > Readonlyparent_ hp1 parent_hp1 : Typed < string | number , { attributes : { loader_exempt : true ; serializer : "com.glide.script.OmittedElementXMLSerializer" ; } ; columnType : "record_hierarchy_path" ; label : "Parent HP1" ; maxLength : 255 ; readOnly : true ; } , > Readonlyphone phone : Typed < string , { label : "Phone" } > Readonlyphone_ territory phone_territory : Typed < | string | Record < "sys_phone_territory" > | ExplicitKey < "sys_phone_territory" > | TableBrand < "sys_phone_territory" > , { attributes : { encode_utf8 : false } ; label : "Phone territory" ; referenceTable : "sys_phone_territory" ; } , > Readonlyprimary_ location primary_location : Typed < | string | Record < "cmn_location" > | ExplicitKey < "cmn_location" > | TableBrand < "cmn_location" > , { label : [ { hint : "Original location this location is duplicating" ; label : "Primary location" ; language : "en" ; plural : "Primary locations" ; } , ] ; referenceTable : "cmn_location" ; } , > Readonlystate state : Typed < string , { label : "State / Province" } > Readonlystock_ room stock_room : Typed < boolean , { default : false ; label : "Stock room" } > Readonlystreet street : Typed < string , { label : "Street" ; maxLength : 255 } > Readonlysys_ created_ by sys_created_by : Typed < string , { label : [ { label : "Created by" ; language : "en" ; plural : "Created by" } ] } , > Readonlysys_ created_ on sys_created_on : Typed < ` ${ number } - ${ number } - ${ number } ${ number } : ${ number } : ${ number } ` , { label : [ { label : "Created" ; language : "en" ; plural : "Created" } ] } , > Readonlysys_ id sys_id : Typed < string , { label : [ { label : "Sys ID" ; language : "en" ; plural : "Sys IDs" } ] ; primary : true ; } , > Readonlysys_ mod_ count sys_mod_count : Typed < number , { label : [ { label : "Updates" ; language : "en" ; plural : "Updates" } ] } , > Readonlysys_ updated_ by sys_updated_by : Typed < string , { label : [ { label : "Updated by" ; language : "en" ; plural : "Updated by" } ] } , > Readonlysys_ updated_ on sys_updated_on : Typed < ` ${ number } - ${ number } - ${ number } ${ number } : ${ number } : ${ number } ` , { label : [ { label : "Updated" ; language : "en" ; plural : "Updated" } ] } , > Readonlytime_ zone time_zone : Typed < string , { dropdown : "dropdown_without_none" ; dynamicValueDefinitions : { field : "time_zone" ; table : "sys_user" ; type : "choices_from_other_table" ; } ; label : "Time zone" ; } , > Readonlyzip zip : Typed < string , { label : "Zip / Postal Code" } >