{ "layers": [ { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 20, "name": "Wilsonville Address Database", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 3200, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPoint", "description": "", "copyrightText": "", "editFieldsInfo": { "creationDateField": "created_date", "creatorField": "created_user", "editDateField": "last_edited_date", "editorField": "last_edited_user" }, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": false, "supportsReturningGeometryEnvelope": false, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasMetadata": true, "extent": { "xmin": 7608533.527559057, "ymin": 597346.1056430489, "xmax": 7627306.736220479, "ymax": 620756.988188982, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSMS", "style": "esriSMSCircle", "color": [ 109, 142, 59, 0 ], "size": 4, "angle": 0, "xoffset": 0, "yoffset": 0, "outline": { "color": [ 0, 0, 0, 0 ], "width": 0.7 } } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": [ { "labelExpressionInfo": { "expression": "// Get field values\nvar unit = $feature.Unit_No;\nvar house = $feature.House_No;\nvar status = Upper(Trim($feature.A_status)); // Normalize casing and whitespace\n\n// Skip labeling if Unit_No exists\nif (!IsEmpty(unit)) {\n return null;\n}\n\n// Use House_No or fallback \"?\"\nvar baseLabel = IIf(IsEmpty(house), \"?\", house);\n\n// Determine color based on status\nvar colorTag = \"\";\n\nif (status == \"CURRENT\") {\n colorTag = \"\"; // 80% black\n} else if (status == \"PENDING\") {\n colorTag = \"\"; // Regular blue\n} else if (status == \"RETIRED\") {\n colorTag = \"\"; // Regular pink\n} else if (status == \"TEMPORARY\") {\n colorTag = \"\"; // Orange\n} else {\n colorTag = \"\"; // Grey\n}\n\n// Return styled house number\nreturn colorTag + baseLabel + \"<\/CLR>\";\n", "title": "Custom" }, "labelPlacement": "esriServerPointLabelPlacementCenterCenter", "deconflictionStrategy": "static", "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "useCodedValues": true, "maxScale": 0, "minScale": 0, "name": "Class 1", "priority": -1, "symbol": { "type": "esriTS", "color": [ 104, 104, 104, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Tahoma", "size": 11, "style": "normal", "weight": "normal", "decoration": "none" } } }, { "labelExpressionInfo": { "expression": "// Get field values\nvar unit = $feature.unit_no;\nvar status = Upper(Trim($feature.A_status)); // Normalize casing and whitespace\n\n// Determine color based on status\nvar colorTag = \"\";\n\nif (status == \"CURRENT\") {\n colorTag = \"\"; // 80% black\n} else if (status == \"PENDING\") {\n colorTag = \"\"; // Regular blue\n} else if (status == \"RETIRED\") {\n colorTag = \"\"; // Regular pink\n} else if (status == \"TEMPORARY\") {\n colorTag = \"\"; // Orange\n} else {\n colorTag = \"\"; // Grey\n}\n\n// Return styled unit number\nreturn colorTag + unit + \"<\/CLR>\";\n", "title": "Custom" }, "labelPlacement": "esriServerPointLabelPlacementAboveRight", "deconflictionStrategy": "dynamic", "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "useCodedValues": true, "maxScale": 0, "minScale": 0, "name": "Unit number", "priority": -1, "symbol": { "type": "esriTS", "color": [ 0, 0, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": null, "haloSize": null, "font": { "family": "Tahoma", "size": 8, "style": "normal", "weight": "normal", "decoration": "none" } } } ] }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID", "globalIdField": "", "displayField": "FNAME", "typeIdField": "", "subtypeField": "GROUP_TYPE", "defaultSubtypeCode": 1, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "FULLADD", "type": "esriFieldTypeString", "alias": "FULLADD", "domain": null, "editable": true, "nullable": true, "length": 80, "defaultValue": null, "modelName": "FULLADD" }, { "name": "A_STATUS", "type": "esriFieldTypeString", "alias": "Addr Status", "domain": null, "editable": true, "nullable": true, "length": 255, "defaultValue": null, "modelName": "A_STATUS" }, { "name": "GROUP_TYPE", "type": "esriFieldTypeInteger", "alias": "Group Type", "domain": null, "editable": true, "nullable": true, "defaultValue": 1, "modelName": "GROUP_TYPE" }, { "name": "USE_Type", "type": "esriFieldTypeString", "alias": "Use Type", "domain": null, "editable": true, "nullable": true, "length": 255, "defaultValue": null, "modelName": "USE_Type" }, { "name": "USE_DESC", "type": "esriFieldTypeString", "alias": "Use Desc", "domain": null, "editable": true, "nullable": true, "length": 255, "defaultValue": null, "modelName": "USE_DESC" }, { "name": "COMMON_NM", "type": "esriFieldTypeString", "alias": "Common Name", "domain": null, "editable": true, "nullable": true, "length": 40, "defaultValue": null, "modelName": "COMMON_NM" }, { "name": "MID_HOUSING", "type": "esriFieldTypeString", "alias": "MID_HOUSING", "domain": null, "editable": true, "nullable": true, "length": 5, "defaultValue": null, "modelName": "MID_HOUSING" }, { "name": "NAICS_CODE", "type": "esriFieldTypeInteger", "alias": "NAICS_CODE", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "NAICS_CODE" }, { "name": "NAICS_DESC", "type": "esriFieldTypeString", "alias": "NAICS_DESC", "domain": null, "editable": true, "nullable": true, "length": 255, "defaultValue": null, "modelName": "NAICS_DESC" }, { "name": "EG_Unique", "type": "esriFieldTypeString", "alias": "EG_Unique", "domain": null, "editable": true, "nullable": true, "length": 255, "defaultValue": null, "modelName": "EG_Unique" }, { "name": "TLID", "type": "esriFieldTypeString", "alias": "TLID", "domain": null, "editable": true, "nullable": true, "length": 16, "defaultValue": null, "modelName": "TLID" }, { "name": "HOUSE_NO", "type": "esriFieldTypeDouble", "alias": "House Num", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "HOUSE_NO" }, { "name": "LEADZERO", "type": "esriFieldTypeString", "alias": "LEADZERO", "domain": null, "editable": true, "nullable": true, "length": 1, "defaultValue": null, "modelName": "LEADZERO" }, { "name": "HOUSE", "type": "esriFieldTypeString", "alias": "House (Text)", "domain": null, "editable": true, "nullable": true, "length": 10, "defaultValue": null, "modelName": "HOUSE" }, { "name": "FDPRE", "type": "esriFieldTypeString", "alias": "FDPRE", "domain": null, "editable": true, "nullable": true, "length": 2, "defaultValue": null, "modelName": "FDPRE" }, { "name": "FNAME", "type": "esriFieldTypeString", "alias": "FNAME", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "FNAME" }, { "name": "FTYPE", "type": "esriFieldTypeString", "alias": "FTYPE", "domain": null, "editable": true, "nullable": true, "length": 4, "defaultValue": null, "modelName": "FTYPE" }, { "name": "FDSUF", "type": "esriFieldTypeString", "alias": "FDSUF", "domain": null, "editable": true, "nullable": true, "length": 2, "defaultValue": null, "modelName": "FDSUF" }, { "name": "UNIT_TYPE", "type": "esriFieldTypeString", "alias": "UNIT_TYPE", "domain": null, "editable": true, "nullable": true, "length": 10, "defaultValue": null, "modelName": "UNIT_TYPE" }, { "name": "UNIT_NO", "type": "esriFieldTypeString", "alias": "UNIT_NO", "domain": null, "editable": true, "nullable": true, "length": 10, "defaultValue": null, "modelName": "UNIT_NO" }, { "name": "ADDRESS", "type": "esriFieldTypeString", "alias": "ADDRESS", "domain": null, "editable": true, "nullable": true, "length": 61, "defaultValue": null, "modelName": "ADDRESS" }, { "name": "STATE", "type": "esriFieldTypeString", "alias": "STATE", "domain": null, "editable": true, "nullable": true, "length": 2, "defaultValue": null, "modelName": "STATE" }, { "name": "ZIP", "type": "esriFieldTypeString", "alias": "ZIP", "domain": null, "editable": true, "nullable": true, "length": 5, "defaultValue": null, "modelName": "ZIP" }, { "name": "ZIP4", "type": "esriFieldTypeString", "alias": "ZIP4", "domain": null, "editable": true, "nullable": true, "length": 4, "defaultValue": null, "modelName": "ZIP4" }, { "name": "SOURCE", "type": "esriFieldTypeString", "alias": "SOURCE", "domain": null, "editable": true, "nullable": true, "length": 4, "defaultValue": null, "modelName": "SOURCE" }, { "name": "X_COORD", "type": "esriFieldTypeDouble", "alias": "X_COORD", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "X_COORD" }, { "name": "Y_COORD", "type": "esriFieldTypeDouble", "alias": "Y_COORD", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Y_COORD" }, { "name": "JURIS_CITY", "type": "esriFieldTypeString", "alias": "JURIS_CITY", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "JURIS_CITY" }, { "name": "MAIL_CITY", "type": "esriFieldTypeString", "alias": "MAIL_CITY", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "MAIL_CITY" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "created_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "created_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "created_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" }, { "name": "BLDG", "type": "esriFieldTypeString", "alias": "BLDG", "domain": null, "editable": true, "nullable": true, "length": 5, "defaultValue": null, "modelName": "BLDG" }, { "name": "BLDG_NO", "type": "esriFieldTypeString", "alias": "BLDG_NO", "domain": null, "editable": true, "nullable": true, "length": 6, "defaultValue": null, "modelName": "BLDG_NO" }, { "name": "FIELD_VER", "type": "esriFieldTypeString", "alias": "Field Verified", "domain": null, "editable": true, "nullable": true, "length": 4, "defaultValue": null, "modelName": "FIELD_VER" }, { "name": "UNIT_OCC_NUM", "type": "esriFieldTypeSmallInteger", "alias": "Occupancy/Unit", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "UNIT_OCC_NUM" }, { "name": "BLDG_OCC_NUM", "type": "esriFieldTypeSmallInteger", "alias": "Occupancy/Bldg", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "BLDG_OCC_NUM" }, { "name": "DEVLP_OCC_NUM", "type": "esriFieldTypeSmallInteger", "alias": "DEVLP_OCC_NUM", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "DEVLP_OCC_NUM" }, { "name": "DEMO", "type": "esriFieldTypeString", "alias": "DEMO", "domain": null, "editable": true, "nullable": true, "length": 255, "defaultValue": null, "modelName": "DEMO" }, { "name": "PLAT_NAME", "type": "esriFieldTypeString", "alias": "PLAT_NAME", "domain": null, "editable": true, "nullable": true, "length": 255, "defaultValue": null, "modelName": "PLAT_NAME" }, { "name": "PLAT_NUM", "type": "esriFieldTypeString", "alias": "PLAT_NUM", "domain": null, "editable": true, "nullable": true, "length": 255, "defaultValue": null, "modelName": "PLAT_NUM" }, { "name": "PLAT_DATE", "type": "esriFieldTypeDate", "alias": "PLAT_DATE", "domain": null, "editable": true, "nullable": true, "length": 8, "defaultValue": null, "modelName": "PLAT_DATE" }, { "name": "LOT_NUM", "type": "esriFieldTypeString", "alias": "Lot Number", "domain": null, "editable": true, "nullable": true, "length": 15, "defaultValue": null, "modelName": "LOT_NUM" }, { "name": "LOT_SQ_SF", "type": "esriFieldTypeInteger", "alias": "LOT_SQ_SF", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "LOT_SQ_SF" }, { "name": "CityFacility", "type": "esriFieldTypeString", "alias": "City Facility", "domain": null, "editable": true, "nullable": true, "length": 3, "defaultValue": null, "modelName": "CityFacility" } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6690_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [], "templates": [ { "name": "address", "description": "", "prototype": { "attributes": { "A_STATUS": null, "LOT_SQ_SF": null, "FULLADD": null, "GROUP_TYPE": 1, "USE_Type": "SFD", "USE_DESC": "-", "COMMON_NM": null, "MID_HOUSING": "NO", "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": null, "CityFacility": null, "LOT_NUM": null, "PLAT_DATE": null, "PLAT_NUM": null, "BLDG": "-", "BLDG_NO": "-", "FIELD_VER": "-", "UNIT_OCC_NUM": 1, "BLDG_OCC_NUM": 1, "DEVLP_OCC_NUM": 1, "DEMO": "0", "PLAT_NAME": null } }, "drawingTool": "esriFeatureEditToolPoint" } ], "subtypes": [ { "code": 1, "name": "DWELLING", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 1, "USE_Type": "SFD", "USE_DESC": "-", "COMMON_NM": null, "MID_HOUSING": "NO", "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": null, "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": "-", "BLDG_NO": "-", "FIELD_VER": "-", "UNIT_OCC_NUM": 1, "BLDG_OCC_NUM": 1, "DEVLP_OCC_NUM": 1, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_DWELLING", "description": "Address Use Types for Dwellings", "codedValues": [ { "name": "ADU", "code": "ADU" }, { "name": "SFD", "code": "SFD" }, { "name": "TOWN-HOUSE", "code": "TOWN-HOUSE" }, { "name": "CLUS-HOUSING", "code": "CLUS-HOUSING" }, { "name": "PLEX (2-4)", "code": "PLEX (2-4)" }, { "name": "MULTI-FAMILY (5+)", "code": "MULTI-FAMILY (5+)" }, { "name": "CONGREGATE", "code": "CONGREGATE" }, { "name": "-", "code": "-" }, { "name": "MGR-UNIT", "code": "MGR-UNIT" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_DWELLING", "description": "Address Use Description for Dwellings", "codedValues": [ { "name": "ATTACHED", "code": "ATTACHED" }, { "name": "DETACHED", "code": "DETACHED" }, { "name": "2-UNIT", "code": "2-UNIT" }, { "name": "3-UNIT", "code": "3-UNIT" }, { "name": "4-UNIT", "code": "4-UNIT" }, { "name": "MFG-HOUSE", "code": "MFG-HOUSE" }, { "name": "OTHER", "code": "OTHER" }, { "name": "COT-CLUS (<=900SF)", "code": "COT-CLUS (<=900SF)" }, { "name": "APT-CMPLX (2+ BLDG/10+UNITS)", "code": "APT-CMPLX (2+ BLDG/10+UNITS)" }, { "name": "IND-MENTAL-HEALTH", "code": "IND-MENTAL-HEALTH" }, { "name": "SR-ASST-LIVING", "code": "SR-ASST-LIVING" }, { "name": "SR-IND-LIVING", "code": "SR-IND-LIVING" }, { "name": "MEMORY-HEALTH", "code": "MEMORY-HEALTH" }, { "name": "-", "code": "-" }, { "name": "CONDO", "code": "CONDO" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 7, "name": "EMT-FIRE", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 7, "USE_Type": "PRV-STRUC", "USE_DESC": "BUILDING", "COMMON_NM": null, "MID_HOUSING": "-", "NAICS_CODE": 0, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": null, "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": "-", "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_EMT-FIRE", "description": "Address Use Types for Emergency Responce", "codedValues": [ { "name": "PUB-STRUC", "code": "PUB-STRUC" }, { "name": "PRV-STRUC", "code": "PRV-STRUC" }, { "name": "PARCEL", "code": "PARCEL" }, { "name": "OTHER", "code": "OTHER" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_EMT-FIRE", "description": "Address Use Description for Emergency Responce", "codedValues": [ { "name": "BUILDING", "code": "BUILDING" }, { "name": "BRIDGE", "code": "BRIDGE" }, { "name": "POOL", "code": "POOL" }, { "name": "WORK-YARD", "code": "WORK-YARD" }, { "name": "STORAGE", "code": "STORAGE" }, { "name": "OTHER", "code": "OTHER" }, { "name": "LAUNDRY", "code": "LAUNDRY" }, { "name": "PUB-LAND", "code": "PUB-LAND" }, { "name": "SHELTER", "code": "SHELTER" }, { "name": "WATER-FEATURE", "code": "WATER-FEATURE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 6, "name": "RESERVED-RETIRED", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 6, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "RETIRED", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Reserve", "description": "Addresses which are not active COW Addresses (Future use, Demoed, Swapped)", "codedValues": [ { "name": "ADDR-CHANGED", "code": "ADDR-CHANGED" }, { "name": "DEMOED", "code": "DEMOED" }, { "name": "FUTURE-USE", "code": "FUTURE-USE" }, { "name": "SITE-ADDR", "code": "SITE-ADDR" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "OUTSIDE COW", "code": "OUTSIDE COW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 92, "name": "Public Administration-92", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 92, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_PUB-ADMIN", "description": "Address Use Types for Public Administration", "codedValues": [ { "name": "Exec., legislative, and Gen. Gov. Support (921)", "code": "921" }, { "name": "Justice, Public Order, and Gen. Gov. Support (922)", "code": "922" }, { "name": "Admin. of H.R. Programs (923)", "code": "923" }, { "name": "Admin. of Enviro. Quality Programs (924)", "code": "924" }, { "name": "Admin. of Housing, Urban Planning, and Comm. Dev. (925)", "code": "925" }, { "name": "Admin. of Economic Programs (926)", "code": "926" }, { "name": "Space Research and Technology (927)", "code": "927" }, { "name": "Nat. Security and International Affairs. (928)", "code": "928" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_PUB-ADMIN", "description": "Address Use Description for Public Administration", "codedValues": [ { "name": "General Government Administration (92119)", "code": "92119" }, { "name": "Police Protection (92212)", "code": "92212" }, { "name": "Correctional Institutions (92214)", "code": "92214" }, { "name": "Fire Protection (92216)", "code": "92216" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 22, "name": "Utilities-22", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 22, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_UTIL", "description": "Address Use Type for Public & Private Utilities (Water, Sanitary, Storm)", "codedValues": [ { "name": "-", "code": "-" }, { "name": "Electric Power Generation, Transmission and Distribution (2211)", "code": "2211" }, { "name": "Natural Gas Distribution (2212)", "code": "2212" }, { "name": "Water, Sewage and Other Systems (2213)", "code": "2213" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_UTIL", "description": "Address Use Description for Utilities", "codedValues": [ { "name": "COMMUNICATION", "code": "COMMUNICATION" }, { "name": "WTR-METER", "code": "WTR-METER" }, { "name": "IRG-METER", "code": "IRG-METER" }, { "name": "LIFT-STATION", "code": "LIFT-STATION" }, { "name": "WELL-HOUSE", "code": "WELL-HOUSE" }, { "name": "RESERVOIR", "code": "RESERVOIR" }, { "name": "PUMP-STATION", "code": "PUMP-STATION" }, { "name": "SUB-STATION", "code": "SUB-STATION" }, { "name": "ELECTRIC-VAULT", "code": "ELECTRIC-VAULT" }, { "name": "WTR-TREATMENT", "code": "WTR-TREATMENT" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 81, "name": "Other Services (except Public Administration)-81", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 81, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_ORG", "description": "Address Use Types for Organizations", "codedValues": [ { "name": "Repair and Maintenance (811)", "code": "811" }, { "name": "Personal and Laundry Services (812)", "code": "812" }, { "name": "Religious, Grantmaking, Civic, Professional, and Simular Orgs. (813)", "code": "813" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_ORG", "description": "Address Use Descriptions for Organizations", "codedValues": [ { "name": "Religious Org. (8131)", "code": "8131" }, { "name": "Social Advocacy Organizations (8133)", "code": "8133" }, { "name": "Professional Org. (8139)", "code": "8139" }, { "name": "Personal Care Services (8121)", "code": "8121" }, { "name": "Other Personal Services (8129)", "code": "8129" }, { "name": "Civic and Social Orgainizations (8134)", "code": "8134" }, { "name": "Automotive Repair and Maintenance (8111)", "code": "8111" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 11, "name": "Agriculture, Forestry, Fishing and Hunting-11", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 11, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Agriculture", "description": "Address Use Types for Agriculture, Forestry, Fishing and Hunting", "codedValues": [ { "name": "Crop Production (111)", "code": "111" }, { "name": "Animal Production and Aquaculture (112)", "code": "112" }, { "name": "Forestry and Logging (113)", "code": "113" }, { "name": "Fishing, Hunting and Trapping (114)", "code": "114" }, { "name": "Support Activities for Agriculture and Forestry (115)", "code": "115" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Agriculture", "description": "Address Use Descriptions for Agriculture, Forestry, Fishing and Hunting", "codedValues": [ { "name": "Oilseed and Grain Farming (1111)", "code": "1111" }, { "name": "Vegetable and Melon Farming (1112)", "code": "1112" }, { "name": "Fruit and Tree Nut Farming (1113)", "code": "1113" }, { "name": "Greenhouse, Nursery, and Floriculture Production (1114)", "code": "1114" }, { "name": "Other Crop Farming (1119)", "code": "1119" }, { "name": "Cattle Ranching and Farming (1121)", "code": "1121" }, { "name": "Hog and Pig Farming (1122)", "code": "1122" }, { "name": "Poultry and Egg Production (1123)", "code": "1123" }, { "name": "Sheep and Goat Farming (1124)", "code": "1124" }, { "name": "Aquaculture (1125)", "code": "1125" }, { "name": "Other Animal Production (1129)", "code": "1129" }, { "name": "Timber Tract Operations (1131)", "code": "1131" }, { "name": "Forest Nurseries and Gathering of Forest Products (1132)", "code": "1132" }, { "name": "Logging (1133)", "code": "1133" }, { "name": "Fishing (1141)", "code": "1141" }, { "name": "Hunting and Trapping (1142)", "code": "1142" }, { "name": "Support Activities for Crop Production (1151)", "code": "1151" }, { "name": "Support Activities for Animal Production (1152)", "code": "1152" }, { "name": "Support Activities for Forestry (1153)", "code": "1153" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 23, "name": "Construction-23", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 23, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Construct", "description": "Address Use Types for Construction", "codedValues": [ { "name": "Construction of Buildings (236)", "code": "236" }, { "name": "Heavy and Civil Engineering Construction (237)", "code": "237" }, { "name": "Specialty Trade Contractors (238)", "code": "238" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Construct", "description": "Address Use Descriptions for Construction", "codedValues": [ { "name": "Residential Building Construction (2361)", "code": "2361" }, { "name": "Nonresidential Building Construction (2362)", "code": "2362" }, { "name": "Utility System Construction (2371)", "code": "2371" }, { "name": "Land Subdivision (2372)", "code": "2372" }, { "name": "Highway, Street, and Bridge Construction (2373)", "code": "2373" }, { "name": "Other Heavy and Civil Engineering Construction (2379)", "code": "2379" }, { "name": "Foundation, Structure, and Building Exterior Contractors (2381)", "code": "2381" }, { "name": "Building Equipment Contractors (2382)", "code": "2382" }, { "name": "Building Finishing Contractors (2383)", "code": "2383" }, { "name": "Other Specialty Trade Contractors (2389)", "code": "2389" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 44, "name": "Retail Trade (Automotive, Food and Beverage, Furniture, Electronics)-44", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 44, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Retail_44", "description": "Address Use Types for Retail Trade (Automotive, Food and Beverage, Furniture, Electronics)-44", "codedValues": [ { "name": "Motor Vehicle and Parts Dealers (441)", "code": "441" }, { "name": "Building Material and Garden Equipment and Supplies Dealers (444)", "code": "444" }, { "name": "Food and Beverage Retailers (445)", "code": "445" }, { "name": "Furniture, Home Furnishings, Electronics, and Appliance Retailers (449)", "code": "449" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Retail_44", "description": "Address Use Descriptions for Retail Trade (Automotive, Food and Beverage, Furniture, Electronics)-44", "codedValues": [ { "name": "Automobile Dealers (4411)", "code": "4411" }, { "name": "Other Motor Vehicle Dealers (4412)", "code": "4412" }, { "name": "Automotive Parts, Accessories, and Tire Retailers (4413)", "code": "4413" }, { "name": "Building Material and Supplies Dealers (4441)", "code": "4441" }, { "name": "Lawn and Garden Equipment and Supplies Retailers (4442)", "code": "4442" }, { "name": "Grocery and Convenience Retailers (4451)", "code": "4451" }, { "name": "Specialty Food Retailers (4452)", "code": "4452" }, { "name": "Beer, Wine, and Liquor Retailers (4453)", "code": "4453" }, { "name": "Furniture and Home Furnishings Retailers (4491)", "code": "4491" }, { "name": "Electronics and Appliance Retailers (4492)", "code": "4492" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 45, "name": "Retail Trade (General Merchandise)-45", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 45, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Retail_45", "description": "Address Use Types for Retail Trade (General Merchandise)-45", "codedValues": [ { "name": "General Merchandise Retailers (455)", "code": "455" }, { "name": "Health and Personal Care Retailers (456)", "code": "456" }, { "name": "Gasoline Stations and Fuel Dealers (457)", "code": "457" }, { "name": "Clothing, Clothing Acc., Shoe, and Jewelry Retailers (458)", "code": "458" }, { "name": "Sporting Goods, Hobby, Musical Instrument, Book, and Misc. Retailers (459)", "code": "459" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Retail_45", "description": "Address Use Descriptions for Retail Trade (General Merchandise)-45", "codedValues": [ { "name": "Department Stores (4551)", "code": "4551" }, { "name": "Warehouse Clubs, Supercenters, and Other Gen. Merch. Retailers (4552)", "code": "4552" }, { "name": "Health and Personal Care Retailers (4561)", "code": "4561" }, { "name": "Gasoline Stations (4571)", "code": "4571" }, { "name": "Fuel Dealers (4572)", "code": "4572" }, { "name": "Clothing and Clothing Accessories Retailers (4581)", "code": "4581" }, { "name": "Shoe Retailers (4582)", "code": "4582" }, { "name": "Jewelry, Luggage, and Leather Goods Retailers (4583)", "code": "4583" }, { "name": "Sporting Goods, Hobby, and Musical Instrument Retailers (4591)", "code": "4591" }, { "name": "Book Retailers and News Dealers (4592)", "code": "4592" }, { "name": "Florists (4593)", "code": "4593" }, { "name": "Office Supplies, Stationery, and Gift Retailers (4594)", "code": "4594" }, { "name": "Used Merchandise Retailers (4595)", "code": "4595" }, { "name": "Other Miscellaneous Retailers (4599)", "code": "4599" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 62, "name": "Health Care and Social Assistance-62", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 62, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_HEALTH", "description": "Address Use Types for Heatlh care", "codedValues": [ { "name": "Ambulatory Health Care Services (621)", "code": "621" }, { "name": "Hospitals (622)", "code": "622" }, { "name": "Nursing and Residential Care Facilities (623)", "code": "623" }, { "name": "Social Assistance (624)", "code": "624" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_HEALTH", "description": "Address Use types for Health Care Facilities", "codedValues": [ { "name": "Offices of Physicians (6211)", "code": "6211" }, { "name": "Offices of Dentists (6212)", "code": "6212" }, { "name": "Offices of Other Health Practitioners (6213)", "code": "6213" }, { "name": "Outpatient Carre Centers (6214)", "code": "6214" }, { "name": "Medical and Diagnostic Laboratories (6215)", "code": "6215" }, { "name": "Home Health Care Services (6216)", "code": "6216" }, { "name": "Other Ambulatory Health Care Services (6219)", "code": "6219" }, { "name": "General Medical and Surgical Hospitals (6221)", "code": "6221" }, { "name": "Psychiatric and Substance Abuse Hospitals (6222)", "code": "6222" }, { "name": "Specialty (except Psychiatric and Substance Abuse) Hospitals", "code": "6223" }, { "name": "Nursing Care Facilities (Skilled Nursing Facilities) (6231)", "code": "6231" }, { "name": "Res. Intl./Dev.Dis., Mental Health, and Substance Abuse Facilities (6232)", "code": "6232" }, { "name": "Continuing Care Retirement Comm. and Assist. Living Facilities (6233)", "code": "6233" }, { "name": "Other Residential Care Facilities (6239)", "code": "6239" }, { "name": "Individual and Family Services (6241)", "code": "6241" }, { "name": "Comm. Food and Housing, and Emerg. and Other Relief Services (6242)", "code": "6242" }, { "name": "Vocational Rehabilitation Services (6243)", "code": "6243" }, { "name": "-", "code": "-" }, { "name": "Child Care Services (6244)", "code": "6244" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 71, "name": "Arts, Entertainment, and Recreation-71", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 71, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_REC", "description": "Address Use Types for Recreation Spaces", "codedValues": [ { "name": "(711) Performing Arts, Spectator Sports, and Related Activities", "code": "711" }, { "name": "(712) Museums, Historical Sites, and Simular Ints.", "code": "712" }, { "name": "(713) Amusement, Gambling, and Recreation Ind.", "code": "713" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_REC", "description": "Address Use Description for Recreations", "codedValues": [ { "name": "Amusement and Recreation Industries (71399)", "code": "71399" }, { "name": "Fitness and Recreational Sports Centers (71394)", "code": "71394" }, { "name": "Historical Sites (71212)", "code": "71212" }, { "name": "Nature Parks (71219)", "code": "71219" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 61, "name": "Educational Services-61", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 61, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_EDU", "description": "Address Use Types for Education", "codedValues": [ { "name": "Colleges, Universities, and Professional Schools (6113)", "code": "6113" }, { "name": "Elementary and Secondary Schools (6111)", "code": "6111" }, { "name": "Other Schools and Instruction (6116)", "code": "6116" }, { "name": "Educational Support Survices (6117)", "code": "6117" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_N/A", "description": "Not Applicable", "codedValues": [ { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 21, "name": "Mining, Quarrying, and Oil and Gas Extraction-21", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 21, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Mining", "description": "Address Use Types for Mining, Quarrying, and Oil and Gas Extraction", "codedValues": [ { "name": "Oil and Gas Extraction (211)", "code": "211" }, { "name": "Mining (except Oil and Gas) (212)", "code": "212" }, { "name": "Support Activities for Mining (213)", "code": "213" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Mining", "description": "Address Use Descriptions for Mining, Quarrying, and Oil and Gas Extraction", "codedValues": [ { "name": "Oil and Gas Extraction (2111)", "code": "2111" }, { "name": "Coal Mining (2121)", "code": "2121" }, { "name": "Metal Ore Mining (2122)", "code": "2122" }, { "name": "Nonmetallic Mineral Mining and Quarrying (2123)", "code": "2123" }, { "name": "Support Activities for Mining (2131)", "code": "2131" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 42, "name": "Wholesale Trade-42", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 42, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Wholesale", "description": "Address Use Types for Wholesale", "codedValues": [ { "name": "Merchant Wholesalers, Durable Goods (423)", "code": "423" }, { "name": "Merchant Wholesalers, Nondurable Goods (424)", "code": "424" }, { "name": "Wholesale Trade Agents and Brokers (425)", "code": "425" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Wholesale", "description": "Address Use Descriptions for Wholesale", "codedValues": [ { "name": "Motor Vehicle and Motor Vehicle Parts and Supplies Merchant Wholesalers (4231)", "code": "4231" }, { "name": "Furniture and Home Furnishing Merchant Wholesalers (4232)", "code": "4232" }, { "name": "Lumber and Other Construction Materials Merchant Wholesalers (4233)", "code": "4233" }, { "name": "Professional and Commercial Equipment and Supplies Merchant Wholesalers (4234)", "code": "4234" }, { "name": "Metal and Mineral (except Petroleum) Merchant Wholesalers (4235)", "code": "4235" }, { "name": "Household Appliances and Electrical and Electronic Goods Merchant Wholesalers (4236)", "code": "4236" }, { "name": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers (4237)", "code": "4237" }, { "name": "Machinery, Equipment, and Supplies Merchant Wholesalers (4238)", "code": "4238" }, { "name": "Miscellaneous Durable Goods Merchant Wholesalers (4239)", "code": "4239" }, { "name": "Paper and Paper Product Merchant Wholesalers (4241)", "code": "4241" }, { "name": "Drugs and Druggists' Sundries Merchant Wholesalers (4242)", "code": "4242" }, { "name": "Apparel, Piece Goods, and Notions Merchant Wholesalers (4243)", "code": "4243" }, { "name": "Grocery and Related Product Merchant Wholesalers (4244)", "code": "4244" }, { "name": "Farm Product Raw Material Merchant Wholesalers (4245)", "code": "4245" }, { "name": "Chemical and Allied Products Merchant Wholesalers (4246)", "code": "4246" }, { "name": "Petroleum and Petroleum Products Merchant Wholesalers (4247)", "code": "4247" }, { "name": "Beer, Wine, and Distilled Alcoholic Beverage Merchant Wholesalers (4248)", "code": "4248" }, { "name": "Miscellaneous Nondurable Goods Merchant Wholesalers (4249)", "code": "4249" }, { "name": "Wholesale Trade Agents and Brokers (4251)", "code": "4251" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 51, "name": "Information-51", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 51, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Info", "description": "Address Use Types for Information", "codedValues": [ { "name": "Motion Picture and Sound Recording Industries (512)", "code": "512" }, { "name": "Publishing Industries (513)", "code": "513" }, { "name": "Broadcasting and Content Providers (516)", "code": "516" }, { "name": "Telecommunications (517)", "code": "517" }, { "name": "Computing Infrastructure Providers, Data Processing, Web Hosting, and Related Services (518)", "code": "518" }, { "name": "Web Search Portals, Libraries, Archives, and Other Information Services (519)", "code": "519" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Info", "description": "Address Use Descriptions for Information", "codedValues": [ { "name": "Motion Picture and Video Industries (5121)", "code": "5121" }, { "name": "Sound Recording Industries (5122)", "code": "5122" }, { "name": "Newspaper, Periodical, Book, and Directory Publishers (5131)", "code": "5131" }, { "name": "Software Publishers (5132)", "code": "5132" }, { "name": "Radio and Television Broadcasting Stations (5161)", "code": "5161" }, { "name": "Media Streaming Distribution Services, Social Networks, and Other Media Networks and Content Providers (5162)", "code": "5162" }, { "name": "Wired and Wireless Telecommunications (except Satellite) (5171)", "code": "5171" }, { "name": "Satellite Telecommunications (5174)", "code": "5174" }, { "name": "All Other Telecommunications (5178)", "code": "5178" }, { "name": "Computing Infrastructure Providers, Data Processing, Web Hosting, and Related Services (5182)", "code": "5182" }, { "name": "Web Search Portals, Libraries, Archives, and Other Information Services (5192)", "code": "5192" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 52, "name": "Finance and Insurance-52", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 52, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Finance", "description": "Address Use Types for Finance", "codedValues": [ { "name": "Monetary Authorities-Central Bank (521)", "code": "521" }, { "name": "Credit Intermediation and Related Activities (522)", "code": "522" }, { "name": "Securities, Commodity Contracts, and Other Financial Investments and Related Activities (523)", "code": "523" }, { "name": "Insurance Carriers and Related Activities (524)", "code": "524" }, { "name": "Funds, Trusts, and Other Financial Vehicles (525)", "code": "525" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Finance", "description": "Address Use Descriptions for Finance", "codedValues": [ { "name": "Monetary Authorities-Central Bank (5211)", "code": "5211" }, { "name": "Depository Credit Intermediation (5221)", "code": "5221" }, { "name": "Nondepository Credit Intermediation (5222)", "code": "5222" }, { "name": "Activities Related to Credit Intermediation (5223)", "code": "5223" }, { "name": "Securities and Commodity Contracts Intermediation and Brokerage (5231)", "code": "5231" }, { "name": "Securities and Commodity Exchanges (5232)", "code": "5232" }, { "name": "Other Financial Investment Activities (5239)", "code": "5239" }, { "name": "Insurance Carriers (5241)", "code": "5241" }, { "name": "Agencies, Brokerages, and Other Insurance Related Activities (5242)", "code": "5242" }, { "name": "Insurance and Employee Benefit Funds (5251)", "code": "5251" }, { "name": "Other Investment Pools and Funds (5259)", "code": "5259" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 53, "name": "Real Estate and Rental and Leasing-53", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 53, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Realestate", "description": "Address Use Types for Realestate and Rentals", "codedValues": [ { "name": "Real Estate (531)", "code": "531" }, { "name": "Rental and Leasing Services (532)", "code": "532" }, { "name": "Lessors of Nonfinancial Intangible Assets (except Copyrighted Works) (533)", "code": "533" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Realestate", "description": "Address Use Descriptions for Realestate and Rentals", "codedValues": [ { "name": "Lessors of Real Estate (5311)", "code": "5311" }, { "name": "Offices of Real Estate Agents and Brokers (5312)", "code": "5312" }, { "name": "Activities Related to Real Estate (5313)", "code": "5313" }, { "name": "Automotive Equipment Rental and Leasing (5321)", "code": "5321" }, { "name": "Consumer Goods Rental (5322)", "code": "5322" }, { "name": "General Rental Centers (5323)", "code": "5323" }, { "name": "Commercial and Industrial Machinery and Equipment Rental and Leasing (5324)", "code": "5324" }, { "name": "Lessors of Nonfinancial Intangible Assets (except Copyrighted Works) (5331)", "code": "5331" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 54, "name": "Professional, Scientific, and Technical Services-54", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 54, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": null, "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Profession", "description": "Address Use Types for Professional, Scientific, and Technical Services", "codedValues": [ { "name": "Professional, Scientific, and Technical Services (541)", "code": "541" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Profession", "description": "Address Use Descriptions for Professional, Scientific, and Technical Services", "codedValues": [ { "name": "Legal Services (5411)", "code": "5411" }, { "name": "Accounting, Tax Preparation, Bookkeeping, and Payroll Services (5412)", "code": "5412" }, { "name": "Architectural, Engineering, and Related Services (5413)", "code": "5413" }, { "name": "Specialized Design Services (5414)", "code": "5414" }, { "name": "Computer Systems Design and Related Services (5415)", "code": "5415" }, { "name": "Management, Scientific, and Technical Consulting Services (5416)", "code": "5416" }, { "name": "Scientific Research and Development Services (5417)", "code": "5417" }, { "name": "Advertising, Public Relations, and Related Services (5418)", "code": "5418" }, { "name": "Other Professional, Scientific, and Technical Services (5419)", "code": "5419" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 55, "name": "Management of Companies and Enterprises-55", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 55, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Ent-Manage", "description": "Address Use Types for Management of Companies and Enterprises", "codedValues": [ { "name": "Management of Companies and Enterprises (551)", "code": "551" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Ent-Manage", "description": "Address Use Descriptions for Management of Companies and Enterprises", "codedValues": [ { "name": "Offices of Bank Holding Companies (551111)", "code": "551111" }, { "name": "Offices of Other Holding Companies (551112)", "code": "551112" }, { "name": "Corporate, Subsidiary, and Regional Managing Offices (551114)", "code": "551114" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 56, "name": "Administrative and Support and Waste Management and Remediation Services-56", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 56, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Remediation", "description": "Address Use Types for Administrative and Support and Waste Management and Remediation Services", "codedValues": [ { "name": "Administrative and Support Services (561)", "code": "561" }, { "name": "Waste Management and Remediation Services (562)", "code": "562" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Remediation", "description": "Address Use Descriptions for Administrative and Support and Waste Management and Remediation Services", "codedValues": [ { "name": "Office Administrative Services (5611)", "code": "5611" }, { "name": "Facilities Support Services (5612)", "code": "5612" }, { "name": "Employment Services (5613)", "code": "5613" }, { "name": "Business Support Services (5614)", "code": "5614" }, { "name": "Travel Arrangement and Reservation Services (5615)", "code": "5615" }, { "name": "Investigation and Security Services (5616)", "code": "5616" }, { "name": "Services to Buildings and Dwellings (5617)", "code": "5617" }, { "name": "Other Support Services (5619)", "code": "5619" }, { "name": "Waste Collection (5621)", "code": "5621" }, { "name": "Waste Treatment and Disposal (5622)", "code": "5622" }, { "name": "Remediation and Other Waste Management Services (5629)", "code": "5629" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 72, "name": "Accommodation and Food Services-72", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 72, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Accom-Food", "description": "Address Use Types for", "codedValues": [ { "name": "Accommodation (721)", "code": "721" }, { "name": "Food Services and Drinking Places (722)", "code": "722" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Accom-Food", "description": "Address Use Descriptions for", "codedValues": [ { "name": "Traveler Accommodation (7211)", "code": "7211" }, { "name": "RV (Recreational Vehicle) Parks and Recreational Camps (7212)", "code": "7212" }, { "name": "Rooming and Boarding Houses, Dormitories, and Workers' Camps (7213)", "code": "7213" }, { "name": "Special Food Services (7223)", "code": "7223" }, { "name": "Drinking Places (Alcoholic Beverages) (7224)", "code": "7224" }, { "name": "Restaurants and Other Eating Places (7225)", "code": "7225" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 31, "name": "Manufacturing (Food, Fiber, Animal Products)-31", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 31, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Manf-31", "description": "Address Use Types for Manufacturing (Food, Fiber, Animal Products)-31", "codedValues": [ { "name": "Textile Mills (313)", "code": "313" }, { "name": "Textile Product Mills (314)", "code": "314" }, { "name": "-", "code": "-" }, { "name": "Food Mfg. (311)", "code": "311" }, { "name": "Beverage and Tobacco Product Mfg. (312)", "code": "312" }, { "name": "Apparel Mfg. (315)", "code": "315" }, { "name": "Leather and Allied Product Mfg. (316)", "code": "316" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Manf-31", "description": "Address Use Descriptions for Manufacturing (Food, Fiber, Animal Products)-31", "codedValues": [ { "name": "Grain and Oilseed Milling (3112)", "code": "3112" }, { "name": "Animal Slaughtering and Processing (3116)", "code": "3116" }, { "name": "Seafood Product Preparation and Packaging (3117)", "code": "3117" }, { "name": "Fiber, Yarn, and Thread Mills (3131)", "code": "3131" }, { "name": "Fabric Mills (3132)", "code": "3132" }, { "name": "Textile and Fabric Finishing and Fabric Coating Mills (3133)", "code": "3133" }, { "name": "Textile Furnishings Mills (3141)", "code": "3141" }, { "name": "Other Textile Product Mills (3149)", "code": "3149" }, { "name": "Apparel Knitting Mills (3151)", "code": "3151" }, { "name": "Leather and Hide Tanning and Finishing (3161)", "code": "3161" }, { "name": "-", "code": "-" }, { "name": "Animal Food Mfg. (3111)", "code": "3111" }, { "name": "Sugar and Confectionery Product Mfg. (3113)", "code": "3113" }, { "name": "Fruit and Vege. Preserving and Specialty Food Mfg. (3114)", "code": "3114" }, { "name": "Dairy Product Mfg. (3115)", "code": "3115" }, { "name": "Bakeries and Tortilla Mfg. (3118)", "code": "3118" }, { "name": "Other Food Mfg. (3119)", "code": "3119" }, { "name": "Beverage Mfg. (3121)", "code": "3121" }, { "name": "Tobacco Mfg. (3122)", "code": "3122" }, { "name": "Cut and Sew Apparel Mfg. (3152)", "code": "3152" }, { "name": "Apparel Accessories and Other Apparel Mfg. (3159)", "code": "3159" }, { "name": "Footwear Mfg. (3162)", "code": "3162" }, { "name": "Other Leather and Allied Product Mfg. (3169)", "code": "3169" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 32, "name": "Manufacturing (Wood Products, Synthetics, Chemical, Non-metalic)-32", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 32, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Manf-32", "description": "Address Use Types for", "codedValues": [ { "name": "Sawmills and Wood Preservation (3211)", "code": "3211" }, { "name": "Veneer, Plywood, and Engineered Wood Product Manuf. (3212)", "code": "3212" }, { "name": "Other Wood Product Manuf. (3219)", "code": "3219" }, { "name": "Pulp, Paper, and Paperboard Mills (3221)", "code": "3221" }, { "name": "Converted Paper Product Manuf. (3222)", "code": "3222" }, { "name": "Printing and Related Support Activities (3231)", "code": "3231" }, { "name": "Petroleum and Coal Products Manuf. (3241)", "code": "3241" }, { "name": "Basic Chemical Manuf. (3251)", "code": "3251" }, { "name": "Resin, Synthetic Rubber, and Artificial and Synthetic Fibers and Filaments Manuf. (3252)", "code": "3252" }, { "name": "Pesticide, Fertilizer, and Other Agricultural Chemical Manuf. (3253)", "code": "3253" }, { "name": "Pharmaceutical and Medicine Manuf. (3254)", "code": "3254" }, { "name": "Paint, Coating, and Adhesive Manuf. (3255)", "code": "3255" }, { "name": "Soap, Cleaning Compound, and Toilet Preparation Manuf. (3256)", "code": "3256" }, { "name": "Other Chemical Product and Preparation Manuf. (3259)", "code": "3259" }, { "name": "Plastics Product Manuf. (3261)", "code": "3261" }, { "name": "Rubber Product Manuf. (3262)", "code": "3262" }, { "name": "Clay Product and Refractory Manuf. (3271)", "code": "3271" }, { "name": "Glass and Glass Product Manuf. (3272)", "code": "3272" }, { "name": "Cement and Concrete Product Manuf. (3273)", "code": "3273" }, { "name": "Lime and Gypsum Product Manuf. (3274)", "code": "3274" }, { "name": "Other Nonmetallic Mineral Product Manuf. (3279)", "code": "3279" }, { "name": "Wood Product Mfg. (321)", "code": "321" }, { "name": "Paper Mfg. (322)", "code": "322" }, { "name": "Petroleum and Coal Products Mfg. (324)", "code": "324" }, { "name": "Chemical Mfg. (325)", "code": "325" }, { "name": "Plastics and Rubber Products Mfg. (326)", "code": "326" }, { "name": "Nonmetallic Mineral Product Mfg. (327)", "code": "327" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Manf-32", "description": "Address Use Descriptions for", "codedValues": [ { "name": "Veneer, Plywood, and Engineered Wood Product Mfg. (3212)", "code": "3212" }, { "name": "Other Wood Product Mfg. (3219)", "code": "3219" }, { "name": "Converted Paper Product Mfg. (3222)", "code": "3222" }, { "name": "Petroleum and Coal Products Mfg. (3241)", "code": "3241" }, { "name": "Basic Chemical Mfg. (3251)", "code": "3251" }, { "name": "Resin, Synthetic Rubber, and Artificial and Synthetic Fibers and Filaments Mfg. (3252)", "code": "3252" }, { "name": "Pesticide, Fertilizer, and Other Agric. Chem. Mfg. (3253)", "code": "3253" }, { "name": "Pharma. and Medicine Mfg. (3254)", "code": "3254" }, { "name": "Paint, Coating, and Adhesive Mfg. (3255)", "code": "3255" }, { "name": "Soap, Cleaning Compound, and Toilet Preparation Mfg. (3256)", "code": "3256" }, { "name": "Other Chemical Product and Preparation Mfg. (3259)", "code": "3259" }, { "name": "Plastics Product Mfg. (3261)", "code": "3261" }, { "name": "Rubber Product Mfg. (3262)", "code": "3262" }, { "name": "Clay Product and Refractory Mfg. (3271)", "code": "3271" }, { "name": "Glass and Glass Product Mfg. (3272)", "code": "3272" }, { "name": "Cement and Concrete Product Mfg. (3273)", "code": "3273" }, { "name": "Lime and Gypsum Product Mfg. (3274)", "code": "3274" }, { "name": "Other Nonmetallic Mineral Product Mfg. (3279)", "code": "3279" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 48, "name": "Transportation and Warehousing (People and Energy via Air, Sea, Freight, Pipeline)-48", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 48, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Trans-48", "description": "Address Use Types for Transportation and Warehousing-48", "codedValues": [ { "name": "Air Transportation (481)", "code": "481" }, { "name": "Rail Transportation (482)", "code": "482" }, { "name": "Water Transportation (483)", "code": "483" }, { "name": "Truck Transportation (484)", "code": "484" }, { "name": "Transit and Ground Passenger Transportation (485)", "code": "485" }, { "name": "Pipeline Transportation (486)", "code": "486" }, { "name": "Scenic and Sightseeing Transportation (487)", "code": "487" }, { "name": "Support Activities for Transportation (488)", "code": "488" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Trans-48", "description": "Address Use Descriptions for Transportation and Warehousing-48", "codedValues": [ { "name": "Scheduled Air Transportation (4811)", "code": "4811" }, { "name": "Nonscheduled Air Transportation (4812)", "code": "4812" }, { "name": "Rail Transportation (4821)", "code": "4821" }, { "name": "Deep Sea, Coastal, and Great Lakes Water Transportation (4831)", "code": "4831" }, { "name": "Inland Water Transportation (4832)", "code": "4832" }, { "name": "General Freight Trucking (4841)", "code": "4841" }, { "name": "Specialized Freight Trucking (4842)", "code": "4842" }, { "name": "Urban Transit Systems (4851)", "code": "4851" }, { "name": "Interurban and Rural Bus Transportation (4852)", "code": "4852" }, { "name": "Taxi and Limousine Service (4853)", "code": "4853" }, { "name": "School and Employee Bus Transportation (4854)", "code": "4854" }, { "name": "Charter Bus Industry (4855)", "code": "4855" }, { "name": "Other Transit and Ground Passenger Transportation (4859)", "code": "4859" }, { "name": "Pipeline Transportation of Crude Oil (4861)", "code": "4861" }, { "name": "Pipeline Transportation of Natural Gas (4862)", "code": "4862" }, { "name": "Other Pipeline Transportation (4869)", "code": "4869" }, { "name": "Scenic and Sightseeing Transportation, Land (4871)", "code": "4871" }, { "name": "Scenic and Sightseeing Transportation, Water (4872)", "code": "4872" }, { "name": "Scenic and Sightseeing Transportation, Other (4879)", "code": "4879" }, { "name": "Support Activities for Air Transportation (4881)", "code": "4881" }, { "name": "Support Activities for Rail Transportation (4882)", "code": "4882" }, { "name": "Support Activities for Water Transportation (4883)", "code": "4883" }, { "name": "Support Activities for Road Transportation (4884)", "code": "4884" }, { "name": "Freight Transportation Arrangement (4885)", "code": "4885" }, { "name": "Other Support Activities for Transportation (4889)", "code": "4889" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 49, "name": "Transportation and Warehousing (Parcels, Couriers and Storage)-49", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 49, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Trans-49", "description": "Address Use Types for Transportation and Warehousing-49", "codedValues": [ { "name": "Postal Service (491)", "code": "491" }, { "name": "Couriers and Messengers (492)", "code": "492" }, { "name": "Warehousing and Storage (493)", "code": "493" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Trans-49", "description": "Address Use Descriptions for Transportation and Warehousing-49", "codedValues": [ { "name": "Postal Service (4911)", "code": "4911" }, { "name": "Couriers and Express Delivery Services (4921)", "code": "4921" }, { "name": "Local Messengers and Local Delivery (4922)", "code": "4922" }, { "name": "Warehousing and Storage (4931)", "code": "4931" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 33, "name": "Manufacturing (Machinery, Electronics, Furniture, Misc)-33", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 33, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_Type": { "type": "codedValue", "name": "Addr_Use_Type_Manf-33", "description": "Address Use Types for Manufacturing-33", "codedValues": [ { "name": "Primary Metal Mfg. (331)", "code": "331" }, { "name": "Fabricated Metal Product Mfg. (332)", "code": "332" }, { "name": "Machinery Mfg. (333)", "code": "333" }, { "name": "Computer and Electronic Product Mfg. (334)", "code": "334" }, { "name": "Electrical Equipment, Appliance, and Component Mfg. (335)", "code": "335" }, { "name": "Transportation Equipment Mfg. (336)", "code": "336" }, { "name": "Furniture and Related Product Mfg. (337)", "code": "337" }, { "name": "Miscellaneous Mfg. (339)", "code": "339" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "USE_DESC": { "type": "codedValue", "name": "Addr_Use_Desc_Manf-33", "description": "Address Use Descriptions for Manufacturing-33", "codedValues": [ { "name": "Iron and Steel Mills and Ferroalloy Mfg. (3311)", "code": "3311" }, { "name": "Steel Product Mfg. from Purchased Steel (3312)", "code": "3312" }, { "name": "Alumina and Aluminum Production and Processing (3313)", "code": "3313" }, { "name": "Nonferrous Metal (except Aluminum) Production and Processing (3314)", "code": "3314" }, { "name": "Foundries (3315)", "code": "3315" }, { "name": "Forging and Stamping (3321)", "code": "3321" }, { "name": "Cutlery and Handtool Mfg. (3322)", "code": "3322" }, { "name": "Architectural and Structural Metals Mfg. (3323)", "code": "3323" }, { "name": "Boiler, Tank, and Shipping Container Mfg. (3324)", "code": "3324" }, { "name": "Hardware Mfg. (3325)", "code": "3325" }, { "name": "Spring and Wire Product Mfg. (3326)", "code": "3326" }, { "name": "Machine Shops; Turned Product; and Screw, Nut, and Bolt Mfg. (3327)", "code": "3327" }, { "name": "Coating, Engraving, Heat Treating, and Allied Activities (3328)", "code": "3328" }, { "name": "Other Fabricated Metal Product Mfg. (3329)", "code": "3329" }, { "name": "Agric., Construction, and Mining Machinery Mfg. (3331)", "code": "3331" }, { "name": "Ind. Machinery Mfg. (3332)", "code": "3332" }, { "name": "Commercial and Service Industry Machinery Mfg. (3333)", "code": "3333" }, { "name": "HVAC, and Com. Refrigeration Equipment Mfg. (3334)", "code": "3334" }, { "name": "Metalworking Machinery Mfg. (3335)", "code": "3335" }, { "name": "Engine, Turbine, and Power Transmission Equipment Mfg. (3336)", "code": "3336" }, { "name": "Other Gen. Purpose Machinery Mfg. (3339)", "code": "3339" }, { "name": "Computer and Peripheral Equipment Mfg. (3341)", "code": "3341" }, { "name": "Communications Equipment Mfg. (3342)", "code": "3342" }, { "name": "Audio and Video Equipment Mfg. (3343)", "code": "3343" }, { "name": "Semiconductor and Other Electronic Component Mfg. (3344)", "code": "3344" }, { "name": "Navigational, Measuring, Electromedical, and Control Instruments Mfg. (3345)", "code": "3345" }, { "name": "Mfg. and Reproducing Magnetic and Optical Media (3346)", "code": "3346" }, { "name": "Electric Lighting Equipment Mfg. (3351)", "code": "3351" }, { "name": "Household Appliance Mfg. (3352)", "code": "3352" }, { "name": "Electrical Equipment Mfg. (3353)", "code": "3353" }, { "name": "Other Electrical Equipment and Component Mfg. (3359)", "code": "3359" }, { "name": "Motor Vehicle Mfg. (3361)", "code": "3361" }, { "name": "Motor Vehicle Body and Trailer Mfg. (3362)", "code": "3362" }, { "name": "Motor Vehicle Parts Mfg. (3363)", "code": "3363" }, { "name": "Aerospace Product and Parts Mfg. (3364)", "code": "3364" }, { "name": "Railroad Rolling Stock Mfg. (3365)", "code": "3365" }, { "name": "Ship and Boat Building (3366)", "code": "3366" }, { "name": "Other Trans. Equipment Mfg. (3369)", "code": "3369" }, { "name": "Household and Inst. Furniture and Kitchen Cabinet Mfg. (3371)", "code": "3371" }, { "name": "Office Furniture (including Fixtures) Mfg. (3372)", "code": "3372" }, { "name": "Other Furniture Related Product Mfg. (3379)", "code": "3379" }, { "name": "Medical Equip. and Supplies Mfg. (3391)", "code": "3391" }, { "name": "Other Misc. Mfg. (3399)", "code": "3399" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 10, "name": "Vacant Space (non-Residential)-10", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 10, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MAIL_CITY": { "type": "codedValue", "name": "Addr_Mail_City", "description": "City for which mail is recieved; also denotes if the address is not a mailing address.", "codedValues": [ { "name": "PORTLAND", "code": "PORTLAND" }, { "name": "SHERWOOD", "code": "SHERWOOD" }, { "name": "TUALATIN", "code": "TUALATIN" }, { "name": "WILSONVILLE", "code": "WILSONVILLE" }, { "name": "NON-MAIL ADDRESS", "code": "NON-MAIL ADDRESS" }, { "name": "RETIRED", "code": "RETIRED" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } }, { "code": 2, "name": "Un-Coded Business-2", "defaultValues": { "FULLADD": null, "A_STATUS": null, "GROUP_TYPE": 2, "USE_Type": null, "USE_DESC": null, "COMMON_NM": null, "MID_HOUSING": null, "NAICS_CODE": null, "NAICS_DESC": null, "EG_Unique": null, "TLID": null, "HOUSE_NO": null, "LEADZERO": null, "HOUSE": null, "FDPRE": "SW", "FNAME": null, "FTYPE": null, "FDSUF": "-", "UNIT_TYPE": "-", "UNIT_NO": null, "ADDRESS": null, "STATE": "OR", "ZIP": "97070", "ZIP4": null, "SOURCE": "COW", "X_COORD": null, "Y_COORD": null, "JURIS_CITY": "WILSONVILLE", "MAIL_CITY": "WILSONVILLE", "created_user": "COW", "created_date": null, "last_edited_user": null, "last_edited_date": null, "BLDG": null, "BLDG_NO": null, "FIELD_VER": null, "UNIT_OCC_NUM": 0, "BLDG_OCC_NUM": 0, "DEVLP_OCC_NUM": 0, "DEMO": "0", "PLAT_NAME": null, "PLAT_NUM": null, "PLAT_DATE": null, "LOT_NUM": null, "LOT_SQ_SF": null, "CityFacility": null }, "domains": { "A_STATUS": { "type": "codedValue", "name": "Addr_Status", "description": "Status of address", "codedValues": [ { "name": "CURRENT", "code": "CURRENT" }, { "name": "PENDING", "code": "PENDING" }, { "name": "RETIRED", "code": "RETIRED" }, { "name": "TEMPORARY", "code": "TEMPORARY" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "MID_HOUSING": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FDPRE": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FTYPE": { "type": "codedValue", "name": "Addr_FType", "description": "Address Feature Type (Street, Road, Lane...) for shorter attribute field", "codedValues": [ { "name": "AVE", "code": "AVE" }, { "name": "BLVD", "code": "BLVD" }, { "name": "CIR", "code": "CIR" }, { "name": "CT", "code": "CT" }, { "name": "DR", "code": "DR" }, { "name": "LN", "code": "LN" }, { "name": "LOOP", "code": "LOOP" }, { "name": "PKWY", "code": "PKWY" }, { "name": "PL", "code": "PL" }, { "name": "PT", "code": "PT" }, { "name": "RD", "code": "RD" }, { "name": "RUN", "code": "RUN" }, { "name": "ST", "code": "ST" }, { "name": "TER", "code": "TER" }, { "name": "WAY", "code": "WAY" }, { "name": "N/A", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "FDSUF": { "type": "codedValue", "name": "Card_Directional", "description": "Cardinal Directional", "codedValues": [ { "name": "N", "code": "N" }, { "name": "NE", "code": "NE" }, { "name": "E", "code": "E" }, { "name": "SE", "code": "SE" }, { "name": "S", "code": "S" }, { "name": "SW", "code": "SW" }, { "name": "W", "code": "W" }, { "name": "NW", "code": "NW" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "UNIT_TYPE": { "type": "codedValue", "name": "Unit_Type_Addressing", "description": "Describes units per multi-unit structures", "codedValues": [ { "name": "-", "code": "-" }, { "name": "UNIT", "code": "UNIT" }, { "name": "APT", "code": "APT" }, { "name": "STE", "code": "STE" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "FIELD_VER": { "type": "codedValue", "name": "True_False_Value", "description": "Yes or No boolean", "codedValues": [ { "name": "YES", "code": "YES" }, { "name": "NO", "code": "NO" }, { "name": "-", "code": "-" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } } ], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 32000, "tileMaxRecordCount": 8000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 529, "name": "Buildings", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolygon", "description": "", "copyrightText": "", "editFieldsInfo": null, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": true, "supportsReturningGeometryEnvelope": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsTrueCurve": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape__Area", "shapeLengthFieldName": "Shape__Length", "units": "esriIntFeet" }, "hasMetadata": true, "extent": { "xmin": 7603347.725065619, "ymin": 591576.8451443613, "xmax": 7631734.756561682, "ymax": 625397.9409448802, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 214, 214, 214, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 204, 204, 204, 255 ], "width": 0.35 } } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": null }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID", "globalIdField": "", "displayField": "BLDG_NAME", "typeIdField": "", "subtypeField": "", "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "BLDG_ID", "type": "esriFieldTypeString", "alias": "BLDG_ID", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "BLDG_ID" }, { "name": "STATE_ID", "type": "esriFieldTypeString", "alias": "STATE_ID", "domain": null, "editable": true, "nullable": true, "length": 20, "defaultValue": null, "modelName": "STATE_ID" }, { "name": "BLDG_NUMB", "type": "esriFieldTypeInteger", "alias": "BLDG_NUMB", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "BLDG_NUMB" }, { "name": "BLDG_NAME", "type": "esriFieldTypeString", "alias": "BLDG_NAME", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "BLDG_NAME" }, { "name": "BLDG_ADDR", "type": "esriFieldTypeString", "alias": "BLDG_ADDR", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "BLDG_ADDR" }, { "name": "BLDG_TYPE", "type": "esriFieldTypeString", "alias": "BLDG_TYPE", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "BLDG_TYPE" }, { "name": "BLDG_USE", "type": "esriFieldTypeString", "alias": "BLDG_USE", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "BLDG_USE" }, { "name": "BLDG_SQFT", "type": "esriFieldTypeInteger", "alias": "BLDG_SQFT", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "BLDG_SQFT" }, { "name": "SQFT_SRC", "type": "esriFieldTypeString", "alias": "SQFT_SRC", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "SQFT_SRC" }, { "name": "SQFT_CONF", "type": "esriFieldTypeString", "alias": "SQFT_CONF", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "SQFT_CONF" }, { "name": "NUM_STORY", "type": "esriFieldTypeInteger", "alias": "NUM_STORY", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "NUM_STORY" }, { "name": "NUM_UNITS", "type": "esriFieldTypeInteger", "alias": "NUM_UNITS", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "NUM_UNITS" }, { "name": "YEAR_BUILT", "type": "esriFieldTypeInteger", "alias": "YEAR_BUILT", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "YEAR_BUILT" }, { "name": "ECOROOF", "type": "esriFieldTypeString", "alias": "ECOROOF", "domain": null, "editable": true, "nullable": true, "length": 1, "defaultValue": null, "modelName": "ECOROOF" }, { "name": "LEED_RATE", "type": "esriFieldTypeString", "alias": "LEED_RATE", "domain": null, "editable": true, "nullable": true, "length": 15, "defaultValue": null, "modelName": "LEED_RATE" }, { "name": "SOURCE", "type": "esriFieldTypeString", "alias": "SOURCE", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "SOURCE" }, { "name": "SOURCE_REF", "type": "esriFieldTypeString", "alias": "SOURCE_REF", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "SOURCE_REF" }, { "name": "AVG_HEIGHT", "type": "esriFieldTypeDouble", "alias": "AVG_HEIGHT", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "AVG_HEIGHT" }, { "name": "MAX_HEIGHT", "type": "esriFieldTypeDouble", "alias": "MAX_HEIGHT", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "MAX_HEIGHT" }, { "name": "MIN_HEIGHT", "type": "esriFieldTypeDouble", "alias": "MIN_HEIGHT", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "MIN_HEIGHT" }, { "name": "HEIGHT_SRC", "type": "esriFieldTypeString", "alias": "HEIGHT_SRC", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "HEIGHT_SRC" }, { "name": "HEIGHTCONF", "type": "esriFieldTypeString", "alias": "HEIGHTCONF", "domain": null, "editable": true, "nullable": true, "length": 15, "defaultValue": null, "modelName": "HEIGHTCONF" }, { "name": "SURF_ELEV", "type": "esriFieldTypeDouble", "alias": "SURF_ELEV", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "SURF_ELEV" }, { "name": "SURF_OFF", "type": "esriFieldTypeDouble", "alias": "SURF_OFF", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "SURF_OFF" }, { "name": "SURF_ADJ", "type": "esriFieldTypeDouble", "alias": "SURF_ADJ", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "SURF_ADJ" }, { "name": "SURF_SRC", "type": "esriFieldTypeString", "alias": "SURF_SRC", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "SURF_SRC" }, { "name": "ROOF_ELEV", "type": "esriFieldTypeDouble", "alias": "ROOF_ELEV", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "ROOF_ELEV" }, { "name": "ROOF_TYPE", "type": "esriFieldTypeString", "alias": "ROOF_TYPE", "domain": null, "editable": true, "nullable": true, "length": 15, "defaultValue": null, "modelName": "ROOF_TYPE" }, { "name": "ORIENT", "type": "esriFieldTypeDouble", "alias": "ORIENT", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "ORIENT" }, { "name": "VOLUME", "type": "esriFieldTypeInteger", "alias": "VOLUME", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "VOLUME" }, { "name": "MULTI_POLY", "type": "esriFieldTypeString", "alias": "MULTI_POLY", "domain": null, "editable": true, "nullable": true, "length": 1, "defaultValue": null, "modelName": "MULTI_POLY" }, { "name": "MODIFIER", "type": "esriFieldTypeString", "alias": "MODIFIER", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "MODIFIER" }, { "name": "MOD_NAME", "type": "esriFieldTypeString", "alias": "MOD_NAME", "domain": null, "editable": true, "nullable": true, "length": 15, "defaultValue": null, "modelName": "MOD_NAME" }, { "name": "MOD_DATE", "type": "esriFieldTypeDate", "alias": "MOD_DATE", "domain": null, "editable": true, "nullable": true, "length": 8, "defaultValue": null, "modelName": "MOD_DATE" }, { "name": "CREATED_BY", "type": "esriFieldTypeString", "alias": "CREATED_BY", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "CREATED_BY" }, { "name": "CREATEDATE", "type": "esriFieldTypeDate", "alias": "CREATEDATE", "domain": null, "editable": true, "nullable": true, "length": 8, "defaultValue": null, "modelName": "CREATEDATE" }, { "name": "FIELD_DATE", "type": "esriFieldTypeDate", "alias": "FIELD_DATE", "domain": null, "editable": true, "nullable": true, "length": 8, "defaultValue": null, "modelName": "FIELD_DATE" }, { "name": "REVIEW", "type": "esriFieldTypeString", "alias": "REVIEW", "domain": null, "editable": true, "nullable": true, "length": 1, "defaultValue": null, "modelName": "REVIEW" }, { "name": "NOTES", "type": "esriFieldTypeString", "alias": "NOTES", "domain": null, "editable": true, "nullable": true, "length": 150, "defaultValue": null, "modelName": "NOTES" }, { "name": "SUBAREA", "type": "esriFieldTypeString", "alias": "SUBAREA", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "SUBAREA" }, { "name": "LAT_CTR", "type": "esriFieldTypeDouble", "alias": "LAT_CTR", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "LAT_CTR" }, { "name": "LONG_CTR", "type": "esriFieldTypeDouble", "alias": "LONG_CTR", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "LONG_CTR" }, { "name": "USGS_QUAD", "type": "esriFieldTypeString", "alias": "USGS_QUAD", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "USGS_QUAD" }, { "name": "WSUNIQUEID", "type": "esriFieldTypeString", "alias": "WSUNIQUEID", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "WSUNIQUEID" }, { "name": "BPS_BLDGID", "type": "esriFieldTypeInteger", "alias": "BPS_BLDGID", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "BPS_BLDGID" }, { "name": "GISDATA.Buildings.AREA", "type": "esriFieldTypeDouble", "alias": "GISDATA.Buildings.AREA", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "GISDATA.Buildings.AREA" }, { "name": "LENGTH", "type": "esriFieldTypeDouble", "alias": "LENGTH", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "LENGTH" }, { "name": "Update_Type", "type": "esriFieldTypeString", "alias": "Update_Type", "domain": null, "editable": true, "nullable": true, "length": 255, "defaultValue": null, "modelName": "Update_Type" }, { "name": "Shape__Area", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STArea()", "required": true }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STLength()", "required": true } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6822_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID" }, { "name": "S6803_idx", "isAscending": true, "isUnique": true, "description": "", "fields": "Shape" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [], "templates": [ { "name": "Buildings", "description": "", "prototype": { "attributes": { "Update_Type": null, "LENGTH": null, "BLDG_ID": null, "STATE_ID": null, "BLDG_NUMB": null, "BLDG_NAME": null, "BLDG_ADDR": null, "BLDG_TYPE": null, "BLDG_USE": null, "BLDG_SQFT": null, "SQFT_SRC": null, "SQFT_CONF": null, "NUM_STORY": null, "NUM_UNITS": null, "YEAR_BUILT": null, "ECOROOF": null, "LEED_RATE": null, "SOURCE": null, "SOURCE_REF": null, "AVG_HEIGHT": null, "MAX_HEIGHT": null, "MIN_HEIGHT": null, "HEIGHT_SRC": null, "HEIGHTCONF": null, "SURF_ELEV": null, "SURF_OFF": null, "SURF_ADJ": null, "SURF_SRC": null, "ROOF_ELEV": null, "ROOF_TYPE": null, "ORIENT": null, "VOLUME": null, "MULTI_POLY": null, "MODIFIER": null, "MOD_NAME": null, "MOD_DATE": null, "CREATED_BY": null, "CREATEDATE": null, "FIELD_DATE": null, "REVIEW": null, "NOTES": null, "SUBAREA": null, "LAT_CTR": null, "LONG_CTR": null, "USGS_QUAD": null, "WSUNIQUEID": null, "BPS_BLDGID": null, "GISDATA.Buildings.AREA": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 4000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 2, "name": "Streets", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolyline", "description": "Streets_OMS represents traffic corridors throughout the City of Wilsonville, Oregon. This includes differing surface types, ownership, and roadway dimensions for surface calculations. Streets_OMS is the main streets layer used by the COW to collect and retain roadway data for internal use. This layer is consumed by Wilsonville maps and Cartegraph servers for both internal record keeping and external visual representation.For maintenance and cost finding, Streets_OMS is segmented based on overall length of the roadway. If roadway segments are longer than 1,000 linear feet in length, then it is segmented to bring it as close to 500 linear feet as is reasonable. This \u201cSplitting\u201d is done using visual cues, such as driveways, medians, and other such structures which provide a natural stopping point for paving/resurfacing purposes. ", "copyrightText": "City of Wilsonville, OR", "editFieldsInfo": { "creationDateField": "created_date", "creatorField": "created_user", "editDateField": "last_edited_date", "editorField": "last_edited_user" }, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": false, "supportsReturningGeometryEnvelope": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsTrueCurve": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasGeometryProperties": true, "geometryProperties": { "shapeLengthFieldName": "Shape__Length", "units": "esriIntFeet" }, "hasMetadata": true, "extent": { "xmin": 7608589.663713917, "ymin": 597307.3507217914, "xmax": 7626714.554461941, "ymax": 620044.6984908134, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 0.8 } }, "scaleSymbols": true, "transparency": 75, "labelingInfo": null }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID", "globalIdField": "", "displayField": "STREETNAME", "typeIdField": "", "subtypeField": "", "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "PREFIX", "type": "esriFieldTypeString", "alias": "PREFIX", "domain": null, "editable": true, "nullable": true, "length": 2, "defaultValue": null, "modelName": "PREFIX" }, { "name": "STREETNAME", "type": "esriFieldTypeString", "alias": "STREETNAME", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "STREETNAME" }, { "name": "FTYPE", "type": "esriFieldTypeString", "alias": "FTYPE", "domain": { "type": "codedValue", "name": "Streets_FType", "description": "Streets Feature Type (Street, Road, Lane...)", "codedValues": [ { "name": "Avenue", "code": "AVE" }, { "name": "Boulevard", "code": "BLVD" }, { "name": "Circle", "code": "CIR" }, { "name": "Court", "code": "CT" }, { "name": "Drive", "code": "DR" }, { "name": "Lane", "code": "LN" }, { "name": "Loop", "code": "LOOP" }, { "name": "Parkway", "code": "PKWY" }, { "name": "Place", "code": "PL" }, { "name": "Point", "code": "PT" }, { "name": "Road", "code": "RD" }, { "name": "Run", "code": "RUN" }, { "name": "Street", "code": "ST" }, { "name": "Terrace", "code": "TER" }, { "name": "Way", "code": "WAY" }, { "name": "No Ftype", "code": "N/A" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "FTYPE" }, { "name": "Suffix", "type": "esriFieldTypeString", "alias": "Suffix", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Suffix" }, { "name": "Jurisdiction", "type": "esriFieldTypeString", "alias": "Jurisdiction", "domain": { "type": "codedValue", "name": "Streets_Jurisdiction", "description": "Streets_Jurisdiction", "codedValues": [ { "name": "Clackamas County", "code": "Clackamas County" }, { "name": "COW", "code": "COW" }, { "name": "ODOT", "code": "ODOT" }, { "name": "Private", "code": "Private" }, { "name": "Public", "code": "Public" }, { "name": "Washington County", "code": "Washington County" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Jurisdiction" }, { "name": "Life_Cycle_Status", "type": "esriFieldTypeString", "alias": "Life_Cycle_Status", "domain": { "type": "codedValue", "name": "Streets_LifeCycleStatus", "description": "Life Cycle status for streets", "codedValues": [ { "name": "Proposed", "code": "Proposed" }, { "name": "In Service", "code": "In Service" }, { "name": "Out of Service", "code": "Out of Service" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Life_Cycle_Status" }, { "name": "NoLanes", "type": "esriFieldTypeSmallInteger", "alias": "NoLanes", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "NoLanes" }, { "name": "DIRECTION", "type": "esriFieldTypeString", "alias": "DIRECTION", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "DIRECTION" }, { "name": "Carte_ID", "type": "esriFieldTypeString", "alias": "Carte_ID", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Carte_ID" }, { "name": "Functional_Class", "type": "esriFieldTypeString", "alias": "Functional_Class", "domain": { "type": "codedValue", "name": "Streets_Func_Class", "description": "Streets Functional Classification", "codedValues": [ { "name": "Collector", "code": "Collector" }, { "name": "Local Street", "code": "Local Street" }, { "name": "Major Arterial", "code": "Major Arterial" }, { "name": "Minor Arterial", "code": "Minor Arterial" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Functional_Class" }, { "name": "Surface_Type", "type": "esriFieldTypeString", "alias": "Surface_Type", "domain": { "type": "codedValue", "name": "Streets_Surf_Class", "description": "Streets Surface Type Classifications", "codedValues": [ { "name": "Asphalt", "code": "Asphalt" }, { "name": "Brick", "code": "Brick" }, { "name": "Concrete", "code": "Concrete" }, { "name": "Earth", "code": "Earth" }, { "name": "Gravel", "code": "Gravel" }, { "name": "Pavers - Concrete", "code": "Pavers - Concrete" }, { "name": "Pavers - Stone", "code": "Pavers - Stone" }, { "name": "Brick and Block", "code": "Brick and Block" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" }, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Surface_Type" }, { "name": "PCI", "type": "esriFieldTypeSmallInteger", "alias": "PCI", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "PCI" }, { "name": "OriginalConstruction", "type": "esriFieldTypeDate", "alias": "OriginalConstruction", "domain": null, "editable": true, "nullable": true, "length": 8, "defaultValue": null, "modelName": "OriginalConstruction" }, { "name": "YearReplaced", "type": "esriFieldTypeDate", "alias": "YearReplaced", "domain": null, "editable": true, "nullable": true, "length": 8, "defaultValue": null, "modelName": "YearReplaced" }, { "name": "Width", "type": "esriFieldTypeSmallInteger", "alias": "Width", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Width" }, { "name": "Length", "type": "esriFieldTypeSmallInteger", "alias": "Length", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Length" }, { "name": "GIS_Area", "type": "esriFieldTypeInteger", "alias": "GIS_Area", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "GIS_Area" }, { "name": "SectionID", "type": "esriFieldTypeString", "alias": "SectionID", "domain": null, "editable": true, "nullable": true, "length": 10, "defaultValue": null, "modelName": "SectionID" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "created_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "created_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "created_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" }, { "name": "FedAid", "type": "esriFieldTypeString", "alias": "Federal Aid Roads ", "domain": null, "editable": true, "nullable": true, "length": 12, "defaultValue": null, "modelName": "FedAid" }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STLength()", "required": true } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6737_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [], "templates": [ { "name": "Streets", "description": "", "prototype": { "attributes": { "FedAid": null, "SectionID": null, "PREFIX": null, "STREETNAME": null, "FTYPE": null, "Suffix": null, "Jurisdiction": null, "Life_Cycle_Status": null, "NoLanes": null, "DIRECTION": null, "Carte_ID": null, "Functional_Class": null, "Surface_Type": null, "PCI": null, "OriginalConstruction": null, "YearReplaced": null, "Width": null, "Length": null, "GIS_Area": null } }, "drawingTool": "esriFeatureEditToolLine" } ], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 8000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 1, "name": "Neighborhoods", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolygon", "description": "", "copyrightText": "", "editFieldsInfo": { "creationDateField": "created_date", "creatorField": "created_user", "editDateField": "last_edited_date", "editorField": "last_edited_user" }, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": true, "supportsReturningGeometryEnvelope": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsTrueCurve": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape__Area", "shapeLengthFieldName": "Shape__Length", "units": "esriIntFeet" }, "hasMetadata": true, "extent": { "xmin": 7608606.095144361, "ymin": 597344.9812992066, "xmax": 7625241.509186357, "ymax": 613346.2841207385, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "uniqueValue", "field1": "name", "defaultSymbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 130, 130, 130, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "defaultLabel": "", "uniqueValueGroups": [ { "heading": "Neighborhood", "classes": [ { "label": "Arbor Crossing", "description": "Arbor Crossing", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 184, 252, 195, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Arbor Crossing" ] ] }, { "label": "Ash Meadows", "description": "Ash Meadows", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 223, 179, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Ash Meadows" ] ] }, { "label": "Aspen Meadows", "description": "Aspen Meadows", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 199, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Aspen Meadows" ] ] }, { "label": "Brenchley Estates", "description": "Brenchley Estates", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 202, 233, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Brenchley Estates" ] ] }, { "label": "Canyon Creek Estates", "description": "Canyon Creek Estates", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 202, 231, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Canyon Creek Estates" ] ] }, { "label": "Canyon Creek Meadows", "description": "Canyon Creek Meadows", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 251, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Canyon Creek Meadows" ] ] }, { "label": "Cedar Pointe", "description": "Cedar Pointe", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 182, 198, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Cedar Pointe" ] ] }, { "label": "Charbonneau", "description": "Charbonneau", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 252, 239, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Charbonneau" ] ] }, { "label": "Copper Creek", "description": "Copper Creek", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 235, 215, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Copper Creek" ] ] }, { "label": "Courtside Estates", "description": "Courtside Estates", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 210, 252, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Courtside Estates" ] ] }, { "label": "Cross Creek", "description": "Cross Creek", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 221, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Cross Creek" ] ] }, { "label": "Daydream River Estates", "description": "Daydream River Estates", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 179, 238, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Daydream River Estates" ] ] }, { "label": "Foxchase", "description": "Foxchase", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 232, 215, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Foxchase" ] ] }, { "label": "Frog Pond West", "description": "Frog Pond West", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 221, 252, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Frog Pond West" ] ] }, { "label": "Hazelwood", "description": "Hazelwood", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 187, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Hazelwood" ] ] }, { "label": "Landover", "description": "Landover", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 242, 252, 215, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Landover" ] ] }, { "label": "Montebello", "description": "Montebello", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 215, 252, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Montebello" ] ] }, { "label": "Morey's Landing", "description": "Morey's Landing", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 244, 202, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Morey's Landing" ] ] }, { "label": "Old Town", "description": "Old Town", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 187, 179, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Old Town" ] ] }, { "label": "Park at Merryfield", "description": "Park at Merryfield", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 179, 215, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Park at Merryfield" ] ] }, { "label": "Renaissance at Canyon Creek", "description": "Renaissance at Canyon Creek", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 212, 219, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Renaissance at Canyon Creek" ] ] }, { "label": "River Estates", "description": "River Estates", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 187, 213, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "River Estates" ] ] }, { "label": "Rivergreen", "description": "Rivergreen", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 212, 197, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Rivergreen" ] ] }, { "label": "Village at Main", "description": "Village at Main", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 182, 243, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Village at Main" ] ] }, { "label": "Villebois", "description": "Villebois", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 227, 252, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Villebois" ] ] }, { "label": "Villebois Central", "description": "Villebois Central", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 207, 252, 234, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Villebois Central" ] ] }, { "label": "Villebois East", "description": "Villebois East", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 252, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Villebois East" ] ] }, { "label": "Villebois North", "description": "Villebois North", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 212, 221, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Villebois North" ] ] }, { "label": "Villebois South", "description": "Villebois South", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 208, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Villebois South" ] ] }, { "label": "Villebois West", "description": "Villebois West", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 193, 252, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Villebois West" ] ] }, { "label": "Wilsonville Meadows", "description": "Wilsonville Meadows", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 192, 234, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "Wilsonville Meadows" ] ] } ] } ], "uniqueValueInfos": [ { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 184, 252, 195, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Arbor Crossing", "label": "Arbor Crossing" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 223, 179, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Ash Meadows", "label": "Ash Meadows" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 199, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Aspen Meadows", "label": "Aspen Meadows" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 202, 233, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Brenchley Estates", "label": "Brenchley Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 202, 231, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Canyon Creek Estates", "label": "Canyon Creek Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 251, 189, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Canyon Creek Meadows", "label": "Canyon Creek Meadows" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 182, 198, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cedar Pointe", "label": "Cedar Pointe" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 252, 239, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Charbonneau", "label": "Charbonneau" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 235, 215, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Copper Creek", "label": "Copper Creek" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 210, 252, 217, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Courtside Estates", "label": "Courtside Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 221, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Cross Creek", "label": "Cross Creek" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 179, 238, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Daydream River Estates", "label": "Daydream River Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 232, 215, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Foxchase", "label": "Foxchase" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 221, 252, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Frog Pond West", "label": "Frog Pond West" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 187, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Hazelwood", "label": "Hazelwood" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 242, 252, 215, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Landover", "label": "Landover" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 215, 252, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Montebello", "label": "Montebello" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 244, 202, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Morey's Landing", "label": "Morey's Landing" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 187, 179, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Old Town", "label": "Old Town" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 179, 215, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Park at Merryfield", "label": "Park at Merryfield" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 212, 219, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Renaissance at Canyon Creek", "label": "Renaissance at Canyon Creek" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 187, 213, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "River Estates", "label": "River Estates" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 212, 197, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Rivergreen", "label": "Rivergreen" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 182, 243, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Village at Main", "label": "Village at Main" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 227, 252, 197, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Villebois", "label": "Villebois" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 207, 252, 234, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Villebois Central", "label": "Villebois Central" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 179, 252, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Villebois East", "label": "Villebois East" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 212, 221, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Villebois North", "label": "Villebois North" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 208, 199, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Villebois South", "label": "Villebois South" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 193, 252, 179, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Villebois West", "label": "Villebois West" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 192, 234, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "Wilsonville Meadows", "label": "Wilsonville Meadows" } ], "fieldDelimiter": ",", "authoringInfo": { "colorRamp": { "type": "multipart", "colorRamps": [ { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 232, 252, 212, 255 ], "toColor": [ 232, 252, 212, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 251, 179, 252, 255 ], "toColor": [ 251, 179, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 179, 216, 252, 255 ], "toColor": [ 179, 216, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 198, 194, 255 ], "toColor": [ 252, 198, 194, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 187, 252, 252, 255 ], "toColor": [ 187, 252, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 182, 252, 179, 255 ], "toColor": [ 182, 252, 179, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 210, 242, 255 ], "toColor": [ 252, 210, 242, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 195, 179, 252, 255 ], "toColor": [ 195, 179, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 225, 192, 255 ], "toColor": [ 252, 225, 192, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 235, 252, 179, 255 ], "toColor": [ 235, 252, 179, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 182, 252, 218, 255 ], "toColor": [ 182, 252, 218, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 215, 210, 252, 255 ], "toColor": [ 215, 210, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 179, 210, 255 ], "toColor": [ 252, 179, 210, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 207, 237, 252, 255 ], "toColor": [ 207, 237, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 214, 252, 194, 255 ], "toColor": [ 214, 252, 194, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 215, 252, 232, 255 ], "toColor": [ 215, 252, 232, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 240, 184, 255 ], "toColor": [ 252, 240, 184, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 232, 199, 252, 255 ], "toColor": [ 232, 199, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 184, 201, 252, 255 ], "toColor": [ 184, 201, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 229, 215, 255 ], "toColor": [ 252, 229, 215, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 210, 216, 255 ], "toColor": [ 252, 210, 216, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 187, 233, 255 ], "toColor": [ 252, 187, 233, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 211, 192, 255 ], "toColor": [ 252, 211, 192, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 249, 215, 255 ], "toColor": [ 252, 249, 215, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 228, 182, 252, 255 ], "toColor": [ 228, 182, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 179, 252, 199, 255 ], "toColor": [ 179, 252, 199, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 210, 252, 212, 255 ], "toColor": [ 210, 252, 212, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 239, 252, 197, 255 ], "toColor": [ 239, 252, 197, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 198, 192, 252, 255 ], "toColor": [ 198, 192, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 215, 251, 252, 255 ], "toColor": [ 215, 251, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 192, 226, 252, 255 ], "toColor": [ 192, 226, 252, 255 ] } ] } } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": null }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID_12", "globalIdField": "", "displayField": "name", "typeIdField": "name", "subtypeField": "", "fields": [ { "name": "OBJECTID_12", "type": "esriFieldTypeOID", "alias": "OBJECTID_12", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID_12" }, { "name": "OBJECTID_1", "type": "esriFieldTypeInteger", "alias": "OBJECTID_1", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "OBJECTID_1" }, { "name": "OBJECTID", "type": "esriFieldTypeInteger", "alias": "OBJECTID", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "name", "type": "esriFieldTypeString", "alias": "name", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "name" }, { "name": "Shape_Leng", "type": "esriFieldTypeDouble", "alias": "Shape_Leng", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape_Leng" }, { "name": "HOA", "type": "esriFieldTypeString", "alias": "HOA", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "HOA" }, { "name": "Contact", "type": "esriFieldTypeString", "alias": "Contact", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Contact" }, { "name": "Phone", "type": "esriFieldTypeString", "alias": "Phone", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Phone" }, { "name": "Email", "type": "esriFieldTypeString", "alias": "Email", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Email" }, { "name": "Address", "type": "esriFieldTypeString", "alias": "Address", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Address" }, { "name": "Est_Canopy", "type": "esriFieldTypeInteger", "alias": "Est_Canopy", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Est_Canopy" }, { "name": "Pot_Tree", "type": "esriFieldTypeInteger", "alias": "Pot_Tree", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Pot_Tree" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "created_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "created_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "created_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" }, { "name": "Shape__Area", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STArea()", "required": true }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STLength()", "required": true } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6696_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID_12" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [ { "id": "Arbor Crossing", "name": "Arbor Crossing", "domains": {}, "templates": [ { "name": "Arbor Crossing", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Arbor Crossing", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Ash Meadows", "name": "Ash Meadows", "domains": {}, "templates": [ { "name": "Ash Meadows", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Ash Meadows", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Aspen Meadows", "name": "Aspen Meadows", "domains": {}, "templates": [ { "name": "Aspen Meadows", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Aspen Meadows", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Brenchley Estates", "name": "Brenchley Estates", "domains": {}, "templates": [ { "name": "Brenchley Estates", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Brenchley Estates", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Canyon Creek Estates", "name": "Canyon Creek Estates", "domains": {}, "templates": [ { "name": "Canyon Creek Estates", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Canyon Creek Estates", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Canyon Creek Meadows", "name": "Canyon Creek Meadows", "domains": {}, "templates": [ { "name": "Canyon Creek Meadows", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Canyon Creek Meadows", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Cedar Pointe", "name": "Cedar Pointe", "domains": {}, "templates": [ { "name": "Cedar Pointe", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Cedar Pointe", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Charbonneau", "name": "Charbonneau", "domains": {}, "templates": [ { "name": "Charbonneau", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Charbonneau", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Copper Creek", "name": "Copper Creek", "domains": {}, "templates": [ { "name": "Copper Creek", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Copper Creek", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Courtside Estates", "name": "Courtside Estates", "domains": {}, "templates": [ { "name": "Courtside Estates", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Courtside Estates", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Cross Creek", "name": "Cross Creek", "domains": {}, "templates": [ { "name": "Cross Creek", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Cross Creek", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Daydream River Estates", "name": "Daydream River Estates", "domains": {}, "templates": [ { "name": "Daydream River Estates", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Daydream River Estates", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Foxchase", "name": "Foxchase", "domains": {}, "templates": [ { "name": "Foxchase", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Foxchase", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Frog Pond West", "name": "Frog Pond West", "domains": {}, "templates": [ { "name": "Frog Pond West", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Frog Pond West", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Hazelwood", "name": "Hazelwood", "domains": {}, "templates": [ { "name": "Hazelwood", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Hazelwood", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Landover", "name": "Landover", "domains": {}, "templates": [ { "name": "Landover", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Landover", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Montebello", "name": "Montebello", "domains": {}, "templates": [ { "name": "Montebello", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Montebello", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Morey's Landing", "name": "Morey's Landing", "domains": {}, "templates": [ { "name": "Morey's Landing", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Morey's Landing", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Old Town", "name": "Old Town", "domains": {}, "templates": [ { "name": "Old Town", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Old Town", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Park at Merryfield", "name": "Park at Merryfield", "domains": {}, "templates": [ { "name": "Park at Merryfield", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Park at Merryfield", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Renaissance at Canyon Creek", "name": "Renaissance at Canyon Creek", "domains": {}, "templates": [ { "name": "Renaissance at Canyon Creek", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Renaissance at Canyon Creek", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "River Estates", "name": "River Estates", "domains": {}, "templates": [ { "name": "River Estates", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "River Estates", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Rivergreen", "name": "Rivergreen", "domains": {}, "templates": [ { "name": "Rivergreen", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Rivergreen", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Village at Main", "name": "Village at Main", "domains": {}, "templates": [ { "name": "Village at Main", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Village at Main", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Villebois", "name": "Villebois", "domains": {}, "templates": [ { "name": "Villebois", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Villebois", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Villebois Central", "name": "Villebois Central", "domains": {}, "templates": [ { "name": "Villebois Central", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Villebois Central", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Villebois East", "name": "Villebois East", "domains": {}, "templates": [ { "name": "Villebois East", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Villebois East", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Villebois North", "name": "Villebois North", "domains": {}, "templates": [ { "name": "Villebois North", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Villebois North", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Villebois South", "name": "Villebois South", "domains": {}, "templates": [ { "name": "Villebois South", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Villebois South", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Villebois West", "name": "Villebois West", "domains": {}, "templates": [ { "name": "Villebois West", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Villebois West", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Wilsonville Meadows", "name": "Wilsonville Meadows", "domains": {}, "templates": [ { "name": "Wilsonville Meadows", "description": "", "prototype": { "attributes": { "OBJECTID": null, "Pot_Tree": null, "OBJECTID_1": null, "name": "Wilsonville Meadows", "Shape_Leng": null, "HOA": null, "Contact": null, "Phone": null, "Email": null, "Address": null, "Est_Canopy": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ] } ], "templates": [], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 4000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 0, "name": "SMART Transit Stops", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPoint", "description": "Most atributes from the previous survey were not updated but new attributes added. As we cared more about type of ammenties than just soley on ADA for this survey. To get all atributes please join data with Cartegraph. The following describes the attributes added to the City's GIS data for transit stops.ADACode = 2010 ADA StandardBarrier Desc = Consolidated description of barriersCategory = Revised condition category as defined in the transition plan documentCrossSlope = Cross slope barrier (boolean)CScost = Estimated cross slope barrier removal costLoading = Loading zone barrier (boolean)LZcost = Estimated loading zone barrier removal costHigh Ped = Located in a high pedestrian corridor (boolean)Notes = Notes on how values were calculatedPLCost = Total planning level costPriority = Barrier Removal Priority as defined in Chapter 2 of the ADA Transition PlanPOT = Path of travel barrier (boolean)POTcost = Estimated path of travel barrier removal costPROWAGcode = 2011 Proposed Accessibility Guidelines for Pedestrian Facilities in the Public Right-of-WayRank = Priority rank as defined in Chapter 2 of the ADA Transition PlanGeospatial Proximity PrioritiesGeoA: Locations fo Citizen Complaints/Requests (ADA Title II Program Access) (boolean)GeoB: Locations Serving Govt. Offices & Public Facilities (boolean)\u2022 Zoning:within PF and PFC\u2022 Schools:within 130' of parcel boundary (greater distance captures residential adjacent to property, visually inspected selection and removed a few instances within residential areas)\u2022 Parks:within 150' of parcel boundary (visually removed elements within residential and not directly linked to the property)\u2022 Public Properties:manually selected properties to include the post office, city hall, public works, police and fire, library, community center, parks and recreation office, SMART office, Water Treatment Plant and Wastewater Treatment PlantGeoC: Locations Serving Transportation (boolean)\u2022 All Transit Stops:facilities within 400' bufferGeoD: Locations Serving Commercial Districts, Employers (boolean)\u2022 Zoning:within PDC, PDCTC, and PDI\u2022 Zoning:adjacent 50' then manual delineationGeoE: Location of Social Need (boolean)\u2022 List:manually select facilities based on location list providedGeoF: Locations Serving Other Areas (boolean)\u2022 Zoning:within PDR, R, RAH and V\u2022 Zoning:adjacent 50' then manual delineation", "copyrightText": "Sarah Dewees - SMART GIS intern 2018\nCity of Wilsonville, MIG Inc.", "editFieldsInfo": { "creationDateField": "created_date", "creatorField": "created_user", "editDateField": "last_edited_date", "editorField": "last_edited_user" }, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": false, "supportsReturningGeometryEnvelope": false, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasMetadata": true, "extent": { "xmin": 7545687.1141732335, "ymin": 473676.1532152295, "xmax": 7637898.66010499, "ymax": 659575.488188982, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriPMS", "url": "fd9238d49b4413a10bab68a165fca0cc", "imageData": "iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABZElEQVQokZ2STUsCQRjH/zs77YYVGAW2YVkXOxtRRy9dKtJvEIQSFBVURNQh6iRdPOQttC9QBGVRdIkOfYgO0QuiHgIJInLZl5jZUXcRg/rBzjzLzo95ePZP4UUWuwSAiNoCYIuH1RzK17WbcVASB1WmhKdBkvp4adtlwC7BYrtZQqW4j6O5NybKUNQ9yLIjVT9XUXq88vShjcxA7TzkDfUMRgCMOWJNYigdOwhF5tEKiTBRclpl6F8rsI1iS4Eh0X4ovgy7rCFWCnnkkq/4jUQ2hEA40xjOP6D1qndoF5u35b+LkDUQWfMMyo2pH4O0TTeL70+LyCUL2LrLN8mmeY2DyQUkskEEwi9esTs4i43LIoj48W4IiWDpZAK+rlH3jRZPhzNmJyk8LS5YivyBh/p3IRpIRYexff/MD1Q/lpGOnXvE9Ys42v2nXGJnAb3W6jdS0QERbMMdZk46dgZAFW86W38Af2hkdIDxotQAAAAASUVORK5CYII=", "contentType": "image/png", "width": 10, "height": 10, "angle": 0, "xoffset": 0, "yoffset": 4.5 } }, "scaleSymbols": true, "transparency": 25, "labelingInfo": null }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID_1", "globalIdField": "", "displayField": "STOP_ID", "typeIdField": "", "subtypeField": "", "fields": [ { "name": "OBJECTID_1", "type": "esriFieldTypeOID", "alias": "OBJECTID_1", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID_1" }, { "name": "OBJECTID", "type": "esriFieldTypeInteger", "alias": "OBJECTID", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "STOP_ID", "type": "esriFieldTypeString", "alias": "STOP_ID", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "STOP_ID" }, { "name": "STOP_LOCAT", "type": "esriFieldTypeString", "alias": "STOP_LOCAT", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "STOP_LOCAT" }, { "name": "DEFICIENCY", "type": "esriFieldTypeString", "alias": "DEFICIENCY", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "DEFICIENCY" }, { "name": "SIDEWALK_G", "type": "esriFieldTypeString", "alias": "SIDEWALK_G", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "SIDEWALK_G" }, { "name": "PLANTER_WI", "type": "esriFieldTypeString", "alias": "PLANTER_WI", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "PLANTER_WI" }, { "name": "SIDEWALK_C", "type": "esriFieldTypeString", "alias": "SIDEWALK_C", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "SIDEWALK_C" }, { "name": "RECOMMENDE", "type": "esriFieldTypeString", "alias": "RECOMMENDE", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "RECOMMENDE" }, { "name": "POT", "type": "esriFieldTypeSmallInteger", "alias": "POT", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "POT" }, { "name": "Loading", "type": "esriFieldTypeSmallInteger", "alias": "Loading", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Loading" }, { "name": "CrossSlope", "type": "esriFieldTypeSmallInteger", "alias": "CrossSlope", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "CrossSlope" }, { "name": "PLCost", "type": "esriFieldTypeInteger", "alias": "PLCost", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "PLCost" }, { "name": "POTcost", "type": "esriFieldTypeInteger", "alias": "POTcost", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "POTcost" }, { "name": "LZcost", "type": "esriFieldTypeInteger", "alias": "LZcost", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "LZcost" }, { "name": "CScost", "type": "esriFieldTypeInteger", "alias": "CScost", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "CScost" }, { "name": "Notes", "type": "esriFieldTypeString", "alias": "Notes", "domain": null, "editable": true, "nullable": true, "length": 100, "defaultValue": null, "modelName": "Notes" }, { "name": "ADAcode", "type": "esriFieldTypeString", "alias": "ADAcode", "domain": null, "editable": true, "nullable": true, "length": 35, "defaultValue": null, "modelName": "ADAcode" }, { "name": "PROWAGcode", "type": "esriFieldTypeString", "alias": "PROWAGcode", "domain": null, "editable": true, "nullable": true, "length": 35, "defaultValue": null, "modelName": "PROWAGcode" }, { "name": "Barrier_De", "type": "esriFieldTypeString", "alias": "Barrier_De", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Barrier_De" }, { "name": "Category", "type": "esriFieldTypeString", "alias": "Category", "domain": null, "editable": true, "nullable": true, "length": 2, "defaultValue": null, "modelName": "Category" }, { "name": "GeoA", "type": "esriFieldTypeSmallInteger", "alias": "GeoA", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "GeoA" }, { "name": "GeoB", "type": "esriFieldTypeSmallInteger", "alias": "GeoB", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "GeoB" }, { "name": "GeoC", "type": "esriFieldTypeSmallInteger", "alias": "GeoC", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "GeoC" }, { "name": "GeoD", "type": "esriFieldTypeSmallInteger", "alias": "GeoD", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "GeoD" }, { "name": "GeoE", "type": "esriFieldTypeSmallInteger", "alias": "GeoE", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "GeoE" }, { "name": "GeoF", "type": "esriFieldTypeSmallInteger", "alias": "GeoF", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "GeoF" }, { "name": "HighPed", "type": "esriFieldTypeSmallInteger", "alias": "HighPed", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "HighPed" }, { "name": "Priority", "type": "esriFieldTypeString", "alias": "Priority", "domain": null, "editable": true, "nullable": true, "length": 5, "defaultValue": null, "modelName": "Priority" }, { "name": "Rank", "type": "esriFieldTypeString", "alias": "Rank", "domain": null, "editable": true, "nullable": true, "length": 10, "defaultValue": null, "modelName": "Rank" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "created_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "created_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "created_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6724_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID_1" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [], "templates": [ { "name": "SMART Transit Stops", "description": "", "prototype": { "attributes": { "Rank": null, "Priority": null, "OBJECTID": null, "STOP_ID": null, "STOP_LOCAT": null, "DEFICIENCY": null, "SIDEWALK_G": null, "PLANTER_WI": null, "SIDEWALK_C": null, "RECOMMENDE": null, "POT": null, "Loading": null, "CrossSlope": null, "PLCost": null, "POTcost": null, "LZcost": null, "CScost": null, "Notes": null, "ADAcode": null, "PROWAGcode": null, "Barrier_De": null, "Category": null, "GeoA": null, "GeoB": null, "GeoC": null, "GeoD": null, "GeoE": null, "GeoF": null, "HighPed": null } }, "drawingTool": "esriFeatureEditToolPoint" } ], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 32000, "tileMaxRecordCount": 8000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 22, "name": "Bike Lanes", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolyline", "description": "", "copyrightText": "", "editFieldsInfo": { "creationDateField": "created_date", "creatorField": "created_user", "editDateField": "last_edited_date", "editorField": "last_edited_user" }, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": false, "supportsReturningGeometryEnvelope": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsTrueCurve": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasGeometryProperties": true, "geometryProperties": { "shapeLengthFieldName": "Shape__Length", "units": "esriIntFeet" }, "hasMetadata": true, "extent": { "xmin": 7610121.1318897605, "ymin": 601688.0961286128, "xmax": 7625027.914041996, "ymax": 620019.4924540669, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 2 } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": null }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID_1", "globalIdField": "", "displayField": "NAME", "typeIdField": "", "subtypeField": "", "fields": [ { "name": "OBJECTID_1", "type": "esriFieldTypeOID", "alias": "OBJECTID_1", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID_1" }, { "name": "OBJECTID", "type": "esriFieldTypeInteger", "alias": "OBJECTID", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "BIKEID", "type": "esriFieldTypeInteger", "alias": "BIKEID", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "BIKEID" }, { "name": "NAME", "type": "esriFieldTypeString", "alias": "NAME", "domain": null, "editable": true, "nullable": true, "length": 150, "defaultValue": null, "modelName": "NAME" }, { "name": "BIKETYP", "type": "esriFieldTypeString", "alias": "BIKETYP", "domain": null, "editable": true, "nullable": true, "length": 8, "defaultValue": null, "modelName": "BIKETYP" }, { "name": "BIKETHERE", "type": "esriFieldTypeString", "alias": "BIKETHERE", "domain": null, "editable": true, "nullable": true, "length": 2, "defaultValue": null, "modelName": "BIKETHERE" }, { "name": "F_ZLEV", "type": "esriFieldTypeInteger", "alias": "F_ZLEV", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "F_ZLEV" }, { "name": "T_ZLEV", "type": "esriFieldTypeInteger", "alias": "T_ZLEV", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "T_ZLEV" }, { "name": "LENGTH", "type": "esriFieldTypeDouble", "alias": "LENGTH", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "LENGTH" }, { "name": "Shape_Leng", "type": "esriFieldTypeDouble", "alias": "Shape_Leng", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape_Leng" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "created_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "created_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "created_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STLength()", "required": true } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6725_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID_1" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [], "templates": [ { "name": "Bike Lanes", "description": "", "prototype": { "attributes": { "LENGTH": null, "Shape_Leng": null, "OBJECTID": null, "BIKEID": null, "NAME": null, "BIKETYP": null, "BIKETHERE": null, "F_ZLEV": null, "T_ZLEV": null } }, "drawingTool": "esriFeatureEditToolLine" } ], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 8000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 21, "name": "Sidewalks", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolyline", "description": "", "copyrightText": "", "editFieldsInfo": { "creationDateField": "created_date", "creatorField": "created_user", "editDateField": "last_edited_date", "editorField": "last_edited_user" }, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": false, "supportsReturningGeometryEnvelope": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsTrueCurve": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasGeometryProperties": true, "geometryProperties": { "shapeLengthFieldName": "Shape__Length", "units": "esriIntFeet" }, "hasMetadata": true, "extent": { "xmin": 7608842.589566931, "ymin": 597467.6847112924, "xmax": 7625242.199803144, "ymax": 620073.1279527545, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 3.1 } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": null }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID", "globalIdField": "", "displayField": "Type", "typeIdField": "", "subtypeField": "", "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "Type", "type": "esriFieldTypeString", "alias": "Type", "domain": { "type": "codedValue", "name": "Sidewalk", "description": "Type of Sidewalk", "codedValues": [ { "name": "Sidewalk", "code": "1" }, { "name": "Unmarked Crosswalk", "code": "2" }, { "name": "Marked Crosswalk", "code": "3" }, { "name": "Signaled Crosswalk", "code": "4" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "editable": true, "nullable": true, "length": 50, "defaultValue": "1", "modelName": "Type" }, { "name": "OWNERSHIP", "type": "esriFieldTypeString", "alias": "OWNERSHIP", "domain": { "type": "codedValue", "name": "UTIL_Owner", "description": "Owner (ie City/County)", "codedValues": [ { "name": "Clack Co", "code": "Clack Co" }, { "name": "COW", "code": "COW" }, { "name": "Metro", "code": "Metro" }, { "name": "ODOT", "code": "ODOT" }, { "name": "PGE", "code": "PGE" }, { "name": "Private", "code": "Private" }, { "name": "SMART", "code": "SMART" }, { "name": "Tri-Met", "code": "Tri-Met" }, { "name": "Wash Co", "code": "Wash Co" }, { "name": "Public", "code": "Public" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "editable": true, "nullable": true, "length": 10, "defaultValue": null, "modelName": "OWNERSHIP" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "created_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "created_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "created_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STLength()", "required": true } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6734_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [], "templates": [ { "name": "Sidewalks", "description": "", "prototype": { "attributes": { "Type": "1", "OWNERSHIP": null } }, "drawingTool": "esriFeatureEditToolLine" } ], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 8000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 530, "name": "Trails and Paths", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolyline", "description": "", "copyrightText": "", "editFieldsInfo": { "creationDateField": "created_date", "creatorField": "created_user", "editDateField": "last_edited_date", "editorField": "last_edited_user" }, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": false, "supportsReturningGeometryEnvelope": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsTrueCurve": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasGeometryProperties": true, "geometryProperties": { "shapeLengthFieldName": "Shape__Length", "units": "esriIntFeet" }, "hasMetadata": true, "extent": { "xmin": 7610800.705052495, "ymin": 597663.5475721806, "xmax": 7624376.655511811, "ymax": 614133.8343175799, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 130, 130, 130, 255 ], "width": 1 } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": null }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID_1", "globalIdField": "", "displayField": "TRAILNAME", "typeIdField": "", "subtypeField": "", "fields": [ { "name": "OBJECTID_1", "type": "esriFieldTypeOID", "alias": "OBJECTID_1", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID_1" }, { "name": "OBJECTID", "type": "esriFieldTypeInteger", "alias": "OBJECTID", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "TRAILNAME", "type": "esriFieldTypeString", "alias": "TRAILNAME", "domain": null, "editable": true, "nullable": true, "length": 150, "defaultValue": null, "modelName": "TRAILNAME" }, { "name": "SYSTEMNAME", "type": "esriFieldTypeString", "alias": "SYSTEMNAME", "domain": null, "editable": true, "nullable": true, "length": 150, "defaultValue": null, "modelName": "SYSTEMNAME" }, { "name": "SHAREDNAME", "type": "esriFieldTypeString", "alias": "SHAREDNAME", "domain": null, "editable": true, "nullable": true, "length": 150, "defaultValue": null, "modelName": "SHAREDNAME" }, { "name": "SYSTEMTYPE", "type": "esriFieldTypeString", "alias": "SYSTEMTYPE", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "SYSTEMTYPE" }, { "name": "CITYMUNI", "type": "esriFieldTypeString", "alias": "CITYMUNI", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "CITYMUNI" }, { "name": "COUNTY", "type": "esriFieldTypeString", "alias": "COUNTY", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "COUNTY" }, { "name": "STATE", "type": "esriFieldTypeString", "alias": "STATE", "domain": null, "editable": true, "nullable": true, "length": 2, "defaultValue": null, "modelName": "STATE" }, { "name": "STATUS", "type": "esriFieldTypeString", "alias": "STATUS", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "STATUS" }, { "name": "LENGTH", "type": "esriFieldTypeDouble", "alias": "LENGTH", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "LENGTH" }, { "name": "TRLSURFACE", "type": "esriFieldTypeString", "alias": "TRLSURFACE", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "TRLSURFACE" }, { "name": "WIDTH", "type": "esriFieldTypeString", "alias": "WIDTH", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "WIDTH" }, { "name": "ACCESSIBLE", "type": "esriFieldTypeString", "alias": "ACCESSIBLE", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "ACCESSIBLE" }, { "name": "MOTORIZED", "type": "esriFieldTypeString", "alias": "MOTORIZED", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "MOTORIZED" }, { "name": "HIKE", "type": "esriFieldTypeString", "alias": "HIKE", "domain": null, "editable": true, "nullable": true, "length": 5, "defaultValue": null, "modelName": "HIKE" }, { "name": "ROADBIKE", "type": "esriFieldTypeString", "alias": "ROADBIKE", "domain": null, "editable": true, "nullable": true, "length": 5, "defaultValue": null, "modelName": "ROADBIKE" }, { "name": "MTNBIKE", "type": "esriFieldTypeString", "alias": "MTNBIKE", "domain": null, "editable": true, "nullable": true, "length": 5, "defaultValue": null, "modelName": "MTNBIKE" }, { "name": "EQUESTRIAN", "type": "esriFieldTypeString", "alias": "EQUESTRIAN", "domain": null, "editable": true, "nullable": true, "length": 5, "defaultValue": null, "modelName": "EQUESTRIAN" }, { "name": "WCRAFT_MTR", "type": "esriFieldTypeString", "alias": "WCRAFT_MTR", "domain": null, "editable": true, "nullable": true, "length": 5, "defaultValue": null, "modelName": "WCRAFT_MTR" }, { "name": "WCRAFT_NON", "type": "esriFieldTypeString", "alias": "WCRAFT_NON", "domain": null, "editable": true, "nullable": true, "length": 5, "defaultValue": null, "modelName": "WCRAFT_NON" }, { "name": "ONSTRBIKE", "type": "esriFieldTypeString", "alias": "ONSTRBIKE", "domain": null, "editable": true, "nullable": true, "length": 5, "defaultValue": null, "modelName": "ONSTRBIKE" }, { "name": "AGENCYNAME", "type": "esriFieldTypeString", "alias": "AGENCYNAME", "domain": null, "editable": true, "nullable": true, "length": 150, "defaultValue": null, "modelName": "AGENCYNAME" }, { "name": "AGENCYTYPE", "type": "esriFieldTypeString", "alias": "AGENCYTYPE", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "AGENCYTYPE" }, { "name": "Shape_Leng", "type": "esriFieldTypeDouble", "alias": "Shape_Leng", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape_Leng" }, { "name": "Carte_ID", "type": "esriFieldTypeString", "alias": "Carte_ID", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Carte_ID" }, { "name": "TYPE", "type": "esriFieldTypeString", "alias": "TYPE", "domain": null, "editable": true, "nullable": true, "length": 10, "defaultValue": null, "modelName": "TYPE" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "created_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "created_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "created_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" }, { "name": "Park_Name", "type": "esriFieldTypeString", "alias": "Park_Name", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Park_Name" }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STLength()", "required": true } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6687_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID_1" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [], "templates": [ { "name": "Trails and Paths", "description": "", "prototype": { "attributes": { "Park_Name": null, "TYPE": null, "OBJECTID": null, "TRAILNAME": null, "SYSTEMNAME": null, "SHAREDNAME": null, "SYSTEMTYPE": null, "CITYMUNI": null, "COUNTY": null, "STATE": null, "STATUS": null, "LENGTH": null, "TRLSURFACE": null, "WIDTH": null, "ACCESSIBLE": null, "MOTORIZED": null, "HIKE": null, "ROADBIKE": null, "MTNBIKE": null, "EQUESTRIAN": null, "WCRAFT_MTR": null, "WCRAFT_NON": null, "ONSTRBIKE": null, "AGENCYNAME": null, "AGENCYTYPE": null, "Shape_Leng": null, "Carte_ID": null } }, "drawingTool": "esriFeatureEditToolLine" } ], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 8000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 23, "name": "Parks", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolygon", "description": "", "copyrightText": "", "editFieldsInfo": { "creationDateField": "created_date", "creatorField": "created_user", "editDateField": "last_edited_date", "editorField": "last_edited_user" }, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": true, "supportsReturningGeometryEnvelope": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsTrueCurve": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape__Area", "shapeLengthFieldName": "Shape__Length", "units": "esriIntFeet" }, "hasMetadata": true, "extent": { "xmin": 7607916.347112864, "ymin": 600191.6889763772, "xmax": 7626474.433398947, "ymax": 613869.1981627345, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 56, 168, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": null }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID", "globalIdField": "", "displayField": "NAME", "typeIdField": "", "subtypeField": "", "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "GISDATA.Parks_OMS.AREA", "type": "esriFieldTypeDouble", "alias": "GISDATA.Parks_OMS.AREA", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "GISDATA.Parks_OMS.AREA" }, { "name": "NAME", "type": "esriFieldTypeString", "alias": "NAME", "domain": null, "editable": true, "nullable": true, "length": 45, "defaultValue": null, "modelName": "NAME" }, { "name": "USAGE", "type": "esriFieldTypeString", "alias": "USAGE", "domain": null, "editable": true, "nullable": true, "length": 7, "defaultValue": null, "modelName": "USAGE" }, { "name": "PARK", "type": "esriFieldTypeInteger", "alias": "PARK", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "PARK" }, { "name": "CUSTODIAN", "type": "esriFieldTypeString", "alias": "CUSTODIAN", "domain": null, "editable": true, "nullable": true, "length": 30, "defaultValue": null, "modelName": "CUSTODIAN" }, { "name": "XTAcres", "type": "esriFieldTypeDouble", "alias": "XTAcres", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "XTAcres" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "created_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "created_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "created_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" }, { "name": "Carte_ID", "type": "esriFieldTypeString", "alias": "Carte_ID", "domain": null, "editable": true, "nullable": true, "length": 150, "defaultValue": null, "modelName": "Carte_ID" }, { "name": "Shape__Area", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STArea()", "required": true }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STLength()", "required": true } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6684_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [], "templates": [ { "name": "Parks", "description": "", "prototype": { "attributes": { "Carte_ID": null, "XTAcres": null, "GISDATA.Parks_OMS.AREA": null, "NAME": null, "USAGE": null, "PARK": null, "CUSTODIAN": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 4000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 28, "name": "SROZ Impact Area", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolygon", "description": "", "copyrightText": "", "editFieldsInfo": { "creationDateField": "created_date", "creatorField": "created_user", "editDateField": "last_edited_date", "editorField": "last_edited_user" }, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": true, "supportsReturningGeometryEnvelope": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsTrueCurve": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape__Area", "shapeLengthFieldName": "Shape__Length", "units": "esriIntFeet" }, "hasMetadata": true, "extent": { "xmin": 7608600.137467191, "ymin": 596324.8638451397, "xmax": 7625297.105643049, "ymax": 619238.2486876696, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": null }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID", "globalIdField": "", "displayField": "SIG", "typeIdField": "", "subtypeField": "", "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "PERIMETER", "type": "esriFieldTypeDouble", "alias": "PERIMETER", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "PERIMETER" }, { "name": "SROZ_", "type": "esriFieldTypeDouble", "alias": "SROZ_", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "SROZ_" }, { "name": "SROZ_ID", "type": "esriFieldTypeDouble", "alias": "SROZ_ID", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "SROZ_ID" }, { "name": "SIG", "type": "esriFieldTypeString", "alias": "SIG", "domain": null, "editable": true, "nullable": true, "length": 2, "defaultValue": null, "modelName": "SIG" }, { "name": "ACRES", "type": "esriFieldTypeDouble", "alias": "ACRES", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "ACRES" }, { "name": "Edit_Notes", "type": "esriFieldTypeString", "alias": "Edit_Notes", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Edit_Notes" }, { "name": "BUFF_DIST", "type": "esriFieldTypeDouble", "alias": "BUFF_DIST", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "BUFF_DIST" }, { "name": "ORIG_FID", "type": "esriFieldTypeInteger", "alias": "ORIG_FID", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "ORIG_FID" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "created_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "created_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "created_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" }, { "name": "Shape__Area", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STArea()", "required": true }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STLength()", "required": true } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R870_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [], "templates": [ { "name": "SROZ Impact Area", "description": "", "prototype": { "attributes": { "BUFF_DIST": null, "ORIG_FID": null, "PERIMETER": null, "SROZ_": null, "SROZ_ID": null, "SIG": null, "ACRES": null, "Edit_Notes": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 4000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 27, "name": "SROZ", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolygon", "description": "", "copyrightText": "", "editFieldsInfo": { "creationDateField": "created_date", "creatorField": "created_user", "editDateField": "last_edited_date", "editorField": "last_edited_user" }, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": true, "supportsReturningGeometryEnvelope": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsTrueCurve": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape__Area", "shapeLengthFieldName": "Shape__Length", "units": "esriIntFeet" }, "hasMetadata": true, "extent": { "xmin": 7608625.132217854, "ymin": 596349.8126640469, "xmax": 7625272.1709317565, "ymax": 619213.25, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "uniqueValue", "field1": "SIG", "defaultSymbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 130, 130, 130, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 0 ], "width": 0.7 } }, "defaultLabel": "", "uniqueValueGroups": [ { "heading": "Significant", "classes": [ { "label": "No", "description": "No", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 217, 210, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 0 ], "width": 0.7 } }, "values": [ [ "n" ] ] }, { "label": "Yes", "description": "Yes", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 232, 255, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "values": [ [ "y" ] ] } ] } ], "uniqueValueInfos": [ { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 217, 210, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 0 ], "width": 0.7 } }, "value": "n", "label": "No" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 190, 232, 255, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "value": "y", "label": "Yes" } ], "fieldDelimiter": ",", "authoringInfo": { "colorRamp": { "type": "multipart", "colorRamps": [ { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 232, 252, 212, 255 ], "toColor": [ 232, 252, 212, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 230, 179, 252, 255 ], "toColor": [ 230, 179, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 190, 189, 255 ], "toColor": [ 252, 190, 189, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 182, 222, 252, 255 ], "toColor": [ 182, 222, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 189, 252, 247, 255 ], "toColor": [ 189, 252, 247, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 195, 252, 182, 255 ], "toColor": [ 195, 252, 182, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 187, 189, 252, 255 ], "toColor": [ 187, 189, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 224, 182, 255 ], "toColor": [ 252, 224, 182, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 182, 223, 255 ], "toColor": [ 252, 182, 223, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 232, 212, 252, 255 ], "toColor": [ 232, 212, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 224, 212, 255 ], "toColor": [ 252, 224, 212, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 244, 252, 179, 255 ], "toColor": [ 244, 252, 179, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 189, 252, 219, 255 ], "toColor": [ 189, 252, 219, 255 ] } ] } } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": null }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID", "globalIdField": "", "displayField": "SIG", "typeIdField": "SIG", "subtypeField": "", "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "PERIMETER", "type": "esriFieldTypeDouble", "alias": "PERIMETER", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "PERIMETER" }, { "name": "SROZ_", "type": "esriFieldTypeDouble", "alias": "SROZ_", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "SROZ_" }, { "name": "SROZ_ID", "type": "esriFieldTypeDouble", "alias": "SROZ_ID", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "SROZ_ID" }, { "name": "SIG", "type": "esriFieldTypeString", "alias": "SIG", "domain": null, "editable": true, "nullable": true, "length": 2, "defaultValue": null, "modelName": "SIG" }, { "name": "ACRES", "type": "esriFieldTypeDouble", "alias": "ACRES", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "ACRES" }, { "name": "Edit_Notes", "type": "esriFieldTypeString", "alias": "Edit_Notes", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "Edit_Notes" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "created_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "created_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "created_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" }, { "name": "Shape__Area", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STArea()", "required": true }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STLength()", "required": true } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6676_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [ { "id": "n", "name": "No", "domains": {}, "templates": [ { "name": "n", "description": "", "prototype": { "attributes": { "ACRES": null, "Edit_Notes": null, "PERIMETER": null, "SROZ_": null, "SROZ_ID": null, "SIG": "n" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "y", "name": "Yes", "domains": {}, "templates": [ { "name": "y", "description": "", "prototype": { "attributes": { "ACRES": null, "Edit_Notes": null, "PERIMETER": null, "SROZ_": null, "SROZ_ID": null, "SIG": "y" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] } ], "templates": [], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 4000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 25, "name": "Zoning", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolygon", "description": "", "copyrightText": "", "editFieldsInfo": null, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": true, "supportsReturningGeometryEnvelope": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsTrueCurve": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape__Area", "shapeLengthFieldName": "Shape__Length", "units": "esriIntFeet" }, "hasMetadata": true, "extent": { "xmin": 7608612.5360892415, "ymin": 596871.3989501297, "xmax": 7626455.065288708, "ymax": 620055.505905509, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "uniqueValue", "field1": "ZONE_CODE", "uniqueValueGroups": [ { "heading": "ZONE_CODE", "classes": [ { "label": "OTR", "description": "OTR", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 225, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "values": [ [ "OTR" ] ] }, { "label": "Planned Development Commercial", "description": "Planned Development Commercial", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 230, 0, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "values": [ [ "PDC" ] ] }, { "label": "Planned Develpment Industrial", "description": "Planned Develpment Industrial", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 115, 178, 255, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "values": [ [ "PDI" ] ] }, { "label": "PDI-RSIA", "description": "PDI-RSIA", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 95, 148, 212, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "values": [ [ "PDI-RSIA" ] ] }, { "label": "Planned Development Residential - 1", "description": "Planned Development Residential - 1", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "PDR1" ] ] }, { "label": "Planned Development Residential - 2", "description": "Planned Development Residential - 2", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "PDR2" ] ] }, { "label": "Planned Development Residential - 3", "description": "Planned Development Residential - 3", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "PDR3" ] ] }, { "label": "Planned Development Residential - 4", "description": "Planned Development Residential - 4", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "PDR4" ] ] }, { "label": "Planned Development Residential - 5", "description": "Planned Development Residential - 5", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "PDR5" ] ] }, { "label": "Planned Development Residential - 6", "description": "Planned Development Residential - 6", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "PDR6" ] ] }, { "label": "Public Facilities", "description": "Public Facilities", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 76, 230, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "values": [ [ "PF" ] ] }, { "label": "Public Facilities - Corrections", "description": "Public Facilities - Corrections", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 152, 204, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "values": [ [ "PFC" ] ] }, { "label": "Residential", "description": "Residential", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 230, 152, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "values": [ [ "R" ] ] }, { "label": "Future Development Agricultural Holding Commercial", "description": "Future Development Agricultural Holding Commercial", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 225, 225, 225, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "FDAHC" ] ] }, { "label": "Future Development Agricultural Holding Industrial", "description": "Future Development Agricultural Holding Industrial", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 225, 225, 225, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "FDAHI" ] ] }, { "label": "Future Development Agricultural Holding Public", "description": "Future Development Agricultural Holding Public", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 225, 225, 225, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "FDAHP" ] ] }, { "label": "Future Development Agricultural Residential", "description": "Future Development Agricultural Residential", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 225, 225, 225, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "FDAHR" ] ] }, { "label": "Future Development Agricultural Village", "description": "Future Development Agricultural Village", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 225, 225, 225, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "FDAHV" ] ] }, { "label": "RN", "description": "RN", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 233, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "values": [ [ "RN" ] ] }, { "label": "TC", "description": "TC", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 169, 0, 230, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "values": [ [ "TC" ] ] }, { "label": "Village", "description": "Village", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 112, 255, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "values": [ [ "V" ] ] } ] } ], "uniqueValueInfos": [ { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 225, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "value": "OTR", "label": "OTR" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 230, 0, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "value": "PDC", "label": "Planned Development Commercial" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 115, 178, 255, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "value": "PDI", "label": "Planned Develpment Industrial" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 95, 148, 212, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "value": "PDI-RSIA", "label": "PDI-RSIA" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "PDR1", "label": "Planned Development Residential - 1" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "PDR2", "label": "Planned Development Residential - 2" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "PDR3", "label": "Planned Development Residential - 3" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "PDR4", "label": "Planned Development Residential - 4" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "PDR5", "label": "Planned Development Residential - 5" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "PDR6", "label": "Planned Development Residential - 6" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 76, 230, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "value": "PF", "label": "Public Facilities" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 152, 204, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "value": "PFC", "label": "Public Facilities - Corrections" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 230, 152, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "value": "R", "label": "Residential" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 225, 225, 225, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "FDAHC", "label": "Future Development Agricultural Holding Commercial" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 225, 225, 225, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "FDAHI", "label": "Future Development Agricultural Holding Industrial" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 225, 225, 225, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "FDAHP", "label": "Future Development Agricultural Holding Public" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 225, 225, 225, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "FDAHR", "label": "Future Development Agricultural Residential" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 225, 225, 225, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "FDAHV", "label": "Future Development Agricultural Village" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 233, 255, 190, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "value": "RN", "label": "RN" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 169, 0, 230, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "value": "TC", "label": "TC" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 112, 255, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1.5 } }, "value": "V", "label": "Village" } ], "fieldDelimiter": ",", "authoringInfo": { "colorRamp": { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 247, 208, 32, 255 ], "toColor": [ 85, 20, 250, 255 ] } } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": [ { "labelExpression": "[ZONE_CODE]", "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelPerPart", "allowOverrun": true, "deconflictionStrategy": "dynamic", "repeatLabel": false, "useClippedGeometry": false, "allowOverlapOfFeatureInterior": "avoid", "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "all", "removeDuplicatesDistance": 0, "stackRowLength": 24, "useCodedValues": true, "maxScale": 0, "minScale": 0, "name": "Default", "priority": 38, "symbol": { "type": "esriTS", "color": [ 130, 130, 130, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Arial", "size": 7, "style": "normal", "weight": "normal", "decoration": "none" } } } ] }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeNone", "objectIdField": "OBJECTID", "globalIdField": "", "displayField": "ZONE_CODE", "typeIdField": "ZONE_CODE", "subtypeField": "", "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "ZONE_CODE", "type": "esriFieldTypeString", "alias": "ZONE_CODE", "domain": null, "editable": true, "nullable": true, "length": 100, "defaultValue": null, "modelName": "ZONE_CODE" }, { "name": "ORIG_FID", "type": "esriFieldTypeInteger", "alias": "ORIG_FID", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "ORIG_FID" }, { "name": "Shape__Area", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STArea()", "required": true }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STLength()", "required": true } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6810_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID" }, { "name": "S6791_idx", "isAscending": true, "isUnique": true, "description": "", "fields": "Shape" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [ { "id": "OTR", "name": "OTR", "domains": {}, "templates": [ { "name": "OTR", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "OTR" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "PDC", "name": "Planned Development Commercial", "domains": {}, "templates": [ { "name": "PDC", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "PDC" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "PDI", "name": "Planned Develpment Industrial", "domains": {}, "templates": [ { "name": "PDI", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "PDI" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "PDI-RSIA", "name": "PDI-RSIA", "domains": {}, "templates": [ { "name": "PDI-RSIA", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "PDI-RSIA" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "PDR1", "name": "Planned Development Residential - 1", "domains": {}, "templates": [ { "name": "PDR1", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "PDR1" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "PDR2", "name": "Planned Development Residential - 2", "domains": {}, "templates": [ { "name": "PDR2", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "PDR2" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "PDR3", "name": "Planned Development Residential - 3", "domains": {}, "templates": [ { "name": "PDR3", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "PDR3" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "PDR4", "name": "Planned Development Residential - 4", "domains": {}, "templates": [ { "name": "PDR4", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "PDR4" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "PDR5", "name": "Planned Development Residential - 5", "domains": {}, "templates": [ { "name": "PDR5", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "PDR5" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "PDR6", "name": "Planned Development Residential - 6", "domains": {}, "templates": [ { "name": "PDR6", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "PDR6" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "PF", "name": "Public Facilities", "domains": {}, "templates": [ { "name": "PF", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "PF" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "PFC", "name": "Public Facilities - Corrections", "domains": {}, "templates": [ { "name": "PFC", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "PFC" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "R", "name": "Residential", "domains": {}, "templates": [ { "name": "R", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "R" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "FDAHC", "name": "Future Development Agricultural Holding Commercial", "domains": {}, "templates": [ { "name": "FDAHC", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "FDAHC" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "FDAHI", "name": "Future Development Agricultural Holding Industrial", "domains": {}, "templates": [ { "name": "FDAHI", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "FDAHI" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "FDAHP", "name": "Future Development Agricultural Holding Public", "domains": {}, "templates": [ { "name": "FDAHP", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "FDAHP" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "FDAHR", "name": "Future Development Agricultural Residential", "domains": {}, "templates": [ { "name": "FDAHR", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "FDAHR" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "FDAHV", "name": "Future Development Agricultural Village", "domains": {}, "templates": [ { "name": "FDAHV", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "FDAHV" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "RN", "name": "RN", "domains": {}, "templates": [ { "name": "RN", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "RN" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "TC", "name": "TC", "domains": {}, "templates": [ { "name": "TC", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "TC" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "V", "name": "Village", "domains": {}, "templates": [ { "name": "V", "description": "", "prototype": { "attributes": { "ORIG_FID": null, "ZONE_CODE": "V" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] } ], "templates": [], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 4000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" }, { "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 26, "name": "Comprehensive Plan", "type": "Feature Layer", "parentLayer": null, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolygon", "description": "", "copyrightText": "", "editFieldsInfo": null, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": false, "relationships": [], "isDataVersioned": true, "isDataArchived": false, "infoInEstimates": [ "extent" ], "isDataBranchVersioned": false, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "hasContingentValuesDefinition": false, "supportsDurableUrlForSyncModelNone": false, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsCurrentUserQueries": true, "supportsFullTextSearch": true, "fullTextSearchCapabilities": { "supportsSearchOperator": true, "supportsOperator": false, "supportsSqlExpressionInFullText": true }, "fullTextSearchableFields": [], "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": true, "supportsReturningGeometryEnvelope": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": true, "supportsTrueCurve": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsQueryWithCacheHint": false }, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": true, "supportsPercentileAnalytic": true }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape__Area", "shapeLengthFieldName": "Shape__Length", "units": "esriIntFeet" }, "hasMetadata": true, "extent": { "xmin": 7608612.53641732, "ymin": 596871.3989501297, "xmax": 7628286.372375324, "ymax": 620807.5262467265, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "spatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "sourceSpatialReference": { "wkid": 2913, "latestWkid": 2913, "xyTolerance": 0.0032808398950131233, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -111333600, "falseY": -98152500, "xyUnits": 3048, "falseZ": 0, "zUnits": 1, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "uniqueValue", "field1": "CompPlan", "uniqueValueGroups": [ { "heading": "CompPlan", "classes": [ { "label": "Commercial", "description": "Commercial", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 0, 0, 255 ], "outline": null }, "values": [ [ "Commercial" ] ] }, { "label": "Town Center", "description": "Town Center", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 181, 122, 245, 255 ], "outline": null }, "values": [ [ "Town Center" ] ] }, { "label": "Village", "description": "Village", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 168, 0, 132, 255 ], "outline": null }, "values": [ [ "Village" ] ] }, { "label": "Industrial", "description": "Industrial", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 151, 219, 242, 255 ], "outline": null }, "values": [ [ "Industrial" ] ] }, { "label": "Residential 0-1 du/ac", "description": "Residential 0-1 du/ac", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": null }, "values": [ [ "Residential 0-1 du/ac" ] ] }, { "label": "Residential 2-3 du/ac", "description": "Residential 2-3 du/ac", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 235, 175, 255 ], "outline": null }, "values": [ [ "Residential 2-3 du/ac" ] ] }, { "label": "Residential 4-5 du/ac", "description": "Residential 4-5 du/ac", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 211, 127, 255 ], "outline": null }, "values": [ [ "Residential 4-5 du/ac" ] ] }, { "label": "Residential 6-7 du/ac", "description": "Residential 6-7 du/ac", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 170, 0, 255 ], "outline": null }, "values": [ [ "Residential 6-7 du/ac" ] ] }, { "label": "Residential 10-12 du/ac", "description": "Residential 10-12 du/ac", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 230, 152, 0, 255 ], "outline": null }, "values": [ [ "Residential 10-12 du/ac" ] ] }, { "label": "Residential 16-20 du/ac", "description": "Residential 16-20 du/ac", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 168, 112, 0, 255 ], "outline": null }, "values": [ [ "Residential 16-20 du/ac" ] ] }, { "label": "Residential Neighborhood", "description": "Residential Neighborhood", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 209, 255, 115, 255 ], "outline": null }, "values": [ [ "Residential Neighborhood" ] ] }, { "label": "Public", "description": "Public", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 115, 178, 115, 255 ], "outline": null }, "values": [ [ "Public" ] ] } ] } ], "uniqueValueInfos": [ { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 0, 0, 255 ], "outline": null }, "value": "Commercial", "label": "Commercial" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 181, 122, 245, 255 ], "outline": null }, "value": "Town Center", "label": "Town Center" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 168, 0, 132, 255 ], "outline": null }, "value": "Village", "label": "Village" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 151, 219, 242, 255 ], "outline": null }, "value": "Industrial", "label": "Industrial" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 190, 255 ], "outline": null }, "value": "Residential 0-1 du/ac", "label": "Residential 0-1 du/ac" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 235, 175, 255 ], "outline": null }, "value": "Residential 2-3 du/ac", "label": "Residential 2-3 du/ac" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 211, 127, 255 ], "outline": null }, "value": "Residential 4-5 du/ac", "label": "Residential 4-5 du/ac" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 170, 0, 255 ], "outline": null }, "value": "Residential 6-7 du/ac", "label": "Residential 6-7 du/ac" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 230, 152, 0, 255 ], "outline": null }, "value": "Residential 10-12 du/ac", "label": "Residential 10-12 du/ac" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 168, 112, 0, 255 ], "outline": null }, "value": "Residential 16-20 du/ac", "label": "Residential 16-20 du/ac" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 209, 255, 115, 255 ], "outline": null }, "value": "Residential Neighborhood", "label": "Residential Neighborhood" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 115, 178, 115, 255 ], "outline": null }, "value": "Public", "label": "Public" } ], "fieldDelimiter": ",", "authoringInfo": { "colorRamp": { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 247, 208, 32, 255 ], "toColor": [ 85, 20, 250, 255 ] } } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": [ { "labelExpression": "[CompPlan]", "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelPerPart", "allowOverrun": true, "deconflictionStrategy": "dynamic", "repeatLabel": false, "useClippedGeometry": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "useCodedValues": true, "maxScale": 0, "minScale": 0, "name": "Default", "priority": 5, "symbol": { "type": "esriTS", "color": [ 0, 0, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "center", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": null, "haloSize": null, "font": { "family": "Arial", "size": 8, "style": "normal", "weight": "normal", "decoration": "none" } } } ] }, "hasM": false, "hasZ": false, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID", "globalIdField": "", "displayField": "ZONE_CODE", "typeIdField": "CompPlan", "subtypeField": "", "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "ZONE_CODE", "type": "esriFieldTypeString", "alias": "ZONE_CODE", "domain": null, "editable": true, "nullable": true, "length": 100, "defaultValue": null, "modelName": "ZONE_CODE" }, { "name": "Shape_Leng", "type": "esriFieldTypeDouble", "alias": "Shape_Leng", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape_Leng" }, { "name": "CompPlan", "type": "esriFieldTypeString", "alias": "CompPlan", "domain": null, "editable": true, "nullable": true, "length": 50, "defaultValue": null, "modelName": "CompPlan" }, { "name": "XTAcres", "type": "esriFieldTypeDouble", "alias": "XTAcres", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "XTAcres" }, { "name": "SF", "type": "esriFieldTypeDouble", "alias": "SF", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "SF" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "created_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "created_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "created_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" }, { "name": "Shape__Area", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STArea()", "required": true }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": true, "defaultValue": null, "modelName": "Shape.STLength()", "required": true } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "R6823_pk", "isAscending": true, "isUnique": true, "description": "", "fields": "OBJECTID" }, { "name": "S6804_idx", "isAscending": true, "isUnique": true, "description": "", "fields": "Shape" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [ { "id": "Commercial", "name": "Commercial", "domains": {}, "templates": [ { "name": "Commercial", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Commercial" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Town Center", "name": "Town Center", "domains": {}, "templates": [ { "name": "Town Center", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Town Center" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Village", "name": "Village", "domains": {}, "templates": [ { "name": "Village", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Village" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Industrial", "name": "Industrial", "domains": {}, "templates": [ { "name": "Industrial", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Industrial" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Residential 0-1 du/ac", "name": "Residential 0-1 du/ac", "domains": {}, "templates": [ { "name": "Residential 0-1 du/ac", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Residential 0-1 du/ac" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Residential 2-3 du/ac", "name": "Residential 2-3 du/ac", "domains": {}, "templates": [ { "name": "Residential 2-3 du/ac", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Residential 2-3 du/ac" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Residential 4-5 du/ac", "name": "Residential 4-5 du/ac", "domains": {}, "templates": [ { "name": "Residential 4-5 du/ac", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Residential 4-5 du/ac" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Residential 6-7 du/ac", "name": "Residential 6-7 du/ac", "domains": {}, "templates": [ { "name": "Residential 6-7 du/ac", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Residential 6-7 du/ac" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Residential 10-12 du/ac", "name": "Residential 10-12 du/ac", "domains": {}, "templates": [ { "name": "Residential 10-12 du/ac", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Residential 10-12 du/ac" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Residential 16-20 du/ac", "name": "Residential 16-20 du/ac", "domains": {}, "templates": [ { "name": "Residential 16-20 du/ac", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Residential 16-20 du/ac" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Residential Neighborhood", "name": "Residential Neighborhood", "domains": {}, "templates": [ { "name": "Residential Neighborhood", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Residential Neighborhood" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] }, { "id": "Public", "name": "Public", "domains": {}, "templates": [ { "name": "Public", "description": "", "prototype": { "attributes": { "XTAcres": null, "SF": null, "ZONE_CODE": null, "Shape_Leng": null, "CompPlan": "Public" } }, "drawingTool": "esriFeatureEditToolPolygon" } ] } ], "templates": [], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson", "capabilities": "Query,Extract", "useStandardizedQueries": true, "bigIntegerRestrictedTo53Bits": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "supportsAppend": true, "supportedAppendFormats": "FILEGDB,PBF", "standardMaxRecordCount": 4000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "96eae4cfdd714348b8b69fd0324f9818" } ], "tables": [] }