{ "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 125, "name": "TaxParcel", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolygon", "sourceSpatialReference": { "wkid": 102100, "latestWkid": 3857, "xyTolerance": 0.001, "zTolerance": 0.001, "mTolerance": 2, "falseX": -20037700, "falseY": -30241100, "xyUnits": 10000, "falseZ": -100000, "zUnits": 10000, "falseM": 0, "mUnits": 1 }, "spatialReference": { "wkid": 102100, "latestWkid": 3857, "xyTolerance": 0.001, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -20037700, "falseY": -30241100, "xyUnits": 1.4892314192838538E8, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "copyrightText": "", "parentLayer": { "id": 114, "name": "Data" }, "subLayers": [], "minScale": 20000, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 232, 252, 214, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 230, 0, 0, 255 ], "width": 1 } } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "// this label expression Dekalb County is meant to stack the short version of the Parcel ID (ParcelNumber) above\n// the acreage (TextString)\n\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\n\nvar name = $feature.PARCELID; // gives me 21-04-18-0-000-005.002\nvar shortName = Right(name, 6) // gives me 05.002\nvar wholePar = Left(shortName, 3) // gives me 05 \nvar whole = wholePar\n\n// let\u2019s check and see if the leading digit of the parcel number is a Zero. If it is, we are going to drop it.\n\nvar leadDigit = Left(wholePar, 1); // gives me the first digit of the parcel number\nvar leadDigit2 = Left(wholePar, 2); // gives me the first two digit of the parcel number\n\nIIf((leadDigit == \"0\"), whole = Right(wholePar, 2),\"\");\nIIf((leadDigit2 == \"00\"), whole = Right(wholePar, 1),\"\");\n\n// next, let's process the last 3 characters of the Name field to see if the last 3 digits have a \n// decimal component, and that they are not 000\n\nvar rem = Right(shortName, 3) // gives me 002\n\n// if there is no decimal component, meaning the last 3 digits are (\"000\") then concatenate nothing\n// else concatenate \".\" with the first 3 of the 4 final digits\n\nvar frac = \"\"\n\niif (rem == \"000\", frac = \"\", frac = \".\" + (Left(rem,3))) // gives me 002\n\nvar parcelID = whole + frac // gives me 05.002\n\n// now let's set the acreage so that it only displays if there are 5 or more acres\n// also, we will round the acreage to 1 decimal place\n\nvar acre = $feature.TextString_Acreage\n// var textAcre = \"\"\n\n// iif (acre >= 5, textAcre = Round(acre,1) + \" AC\", textAcre =\"\")\n\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + acre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\"\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelPerPart", "allowOverrun": true, "deconflictionStrategy": "dynamic", "repeatLabel": false, "useClippedGeometry": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "all", "removeDuplicatesDistance": 0, "stackRowLength": 24, "where": "TextString_Acreage IS NOT NULL And FCODE = 500", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "PARCELID_wAcreageAnno", "priority": -1, "symbol": { "type": "esriTS", "color": [ 76, 230, 0, 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": 12, "style": "normal", "weight": "bold", "decoration": "underline" } } }, { "labelExpressionInfo": { "expression": "// this label expression Lauderdale County is meant to stack the short version of the ParcelID (ParcelNumber) above\n// the acreage (TextString)\n\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\n\nvar name = $feature.PARCELID; // gives me 21-04-18-0-000-005.002\nvar shortName = Right(name, 6) // gives me 05.002\nvar wholePar = Left(shortName, 3) // gives me 05 \nvar whole = wholePar\n\n// let\u2019s check and see if the leading digit of the parcel number is a Zero. If it is, we are going to drop it.\n\nvar leadDigit = Left(wholePar, 1); // gives me the first digit of the parcel number\nvar leadDigit2 = Left(wholePar, 2); // gives me the first two digit of the parcel number\n\nIIf((leadDigit == \"0\"), whole = Right(wholePar, 2),\"\");\nIIf((leadDigit2 == \"00\"), whole = Right(wholePar, 1),\"\");\n\n// next, let's process the last 3 characters of the Name field to see if the last 3 digits have a \n// decimal component, and that they are not 000\n\nvar rem = Right(shortName, 3) // gives me 002\n\n// if there is no decimal component, meaning the last 3 digits are (\"000\") then concatenate nothing\n// else concatenate \".\" with the first 3 of the 4 final digits\n\nvar frac = \"\"\n\niif (rem == \"000\", frac = \"\", frac = \".\" + (Left(rem,3))) // gives me 002\n\nvar parcelID = whole + frac // gives me 05.002\n\n// now let's set the acreage so that it only displays if there are 5 or more acres\n// also, we will round the acreage to 1 decimal place\n\nvar acre = $feature.CALC_ACRE\nvar textAcre = \"\"\n\nwhen(acre >=10, textAcre = Round(acre,0) + \" Ac(c)\", acre >= 5, textAcre = Round(acre,1) +\" Ac(c)\", textAcre =\"\");\n\n//iif (acre >= 5, textAcre = Round(acre,1) + \" AC(c)\", textAcre =\"\")\n\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + textacre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\"\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "none", "repeatLabel": false, "useClippedGeometry": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "where": "TextString_Acreage IS NULL And StatedArea IS NULL And PARCELID NOT LIKE '99999999%'", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "PARCELID_wCALC_ACRE", "priority": -1, "symbol": { "type": "esriTS", "color": [ 76, 230, 0, 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": 12, "style": "normal", "weight": "bold", "decoration": "underline" } } }, { "labelExpressionInfo": { "expression": "// this label expression Lauderdale County is meant to stack the short version of the ParcelID (ParcelNumber) above\n// the acreage (TextString)\n\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\n\nvar name = $feature.PARCELID; // gives me 21-04-18-0-000-005.002\nvar shortName = Right(name, 6) // gives me 05.002\nvar wholePar = Left(shortName, 3) // gives me 05 \nvar whole = wholePar\n\n// let\u2019s check and see if the leading digit of the parcel number is a Zero. If it is, we are going to drop it.\n\nvar leadDigit = Left(wholePar, 1); // gives me the first digit of the parcel number\nvar leadDigit2 = Left(wholePar, 2); // gives me the first two digit of the parcel number\n\nIIf((leadDigit == \"0\"), whole = Right(wholePar, 2),\"\");\nIIf((leadDigit2 == \"00\"), whole = Right(wholePar, 1),\"\");\n\n// next, let's process the last 3 characters of the Name field to see if the last 3 digits have a \n// decimal component, and that they are not 000\n\nvar rem = Right(shortName, 3) // gives me 002\n\n// if there is no decimal component, meaning the last 3 digits are (\"000\") then concatenate nothing\n// else concatenate \".\" with the first 3 of the 4 final digits\n\nvar frac = \"\"\n\niif (rem == \"000\", frac = \"\", frac = \".\" + (Left(rem,3))) // gives me 002\n\nvar parcelID = whole + frac // gives me 05.002\n\n// now let's set the acreage so that it only displays if there are 5 or more acres\n// also, we will round the acreage to 1 decimal place\n\nvar acre = $feature.StatedArea;\nvar acre2 = $feature.CALC_ACRE\nvar percentageDifference = Abs((acre - acre2) / acre) * 100;\nif (percentageDifference > 3) {\n\nvar textAcre = \"\"\nvar textAcre2 = \"\"\n\nwhen(acre2 >=10, textAcre = Round(acre2,0) + \" Ac(c)\", acre2 >= 5, textAcre = Round(acre2,1) +\" Ac(c)\", textAcre =\"\");\n\niif (acre >= 5, textAcre2 = Round(acre,1) + \" AC(d)\", textAcre2 =\"\")\n\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + textacre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + textacre2 + \"<\/FNT>\" + \"<\/CLR><\/_UND>\";\n} \n else {\n return \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + acre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\";\n}\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "none", "repeatLabel": false, "useClippedGeometry": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "where": "StatedArea IS NOT NULL And TextString_Acreage IS NULL", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "PARCELID_wStatedArea_CALC_ACRE", "priority": -1, "symbol": { "type": "esriTS", "color": [ 76, 230, 0, 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": 12, "style": "normal", "weight": "bold", "decoration": "underline" } } } ] }, "defaultVisibility": true, "extent": { "xmin": -9818903.0615, "ymin": 4127486.333999999, "xmax": -9708239.6854, "ymax": 4164909.916500002, "zmin": 0, "zmax": 509.3399999999965, "spatialReference": { "wkid": 102100, "latestWkid": 3857, "xyTolerance": 0.001, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -20037700, "falseY": -30241100, "xyUnits": 1.4892314192838538E8, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "hasAttachments": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "displayField": "Name", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "Name", "type": "esriFieldTypeString", "alias": "Name", "length": 255, "domain": null }, { "name": "CreatedByRecord", "type": "esriFieldTypeGUID", "alias": "Created By Record", "length": 38, "domain": null }, { "name": "RetiredByRecord", "type": "esriFieldTypeGUID", "alias": "Retired By Record", "length": 38, "domain": null }, { "name": "StatedArea", "type": "esriFieldTypeDouble", "alias": "Stated Area", "domain": null }, { "name": "StatedAreaUnit", "type": "esriFieldTypeInteger", "alias": "Stated Area Unit", "domain": { "type": "codedValue", "name": "WS2_PF_AreaUnits", "description": "Parcel Fabric Area Units", "codedValues": [ { "name": "Hectare", "code": 109401 }, { "name": "Acre", "code": 109402 }, { "name": "Acre US", "code": 109403 }, { "name": "Square Meter", "code": 109404 }, { "name": "Square Foot", "code": 109405 }, { "name": "Square Foot US", "code": 109406 }, { "name": "Square Foot Clarke", "code": 109407 }, { "name": "Square Fathom", "code": 109408 }, { "name": "Square Nautical Mile", "code": 109409 }, { "name": "Square Meter German", "code": 109410 }, { "name": "Square Chain US", "code": 109411 }, { "name": "Square Link US", "code": 109412 }, { "name": "Square Mile US", "code": 109413 }, { "name": "Square Kilometer", "code": 109414 }, { "name": "Square Yard Clarke", "code": 109415 }, { "name": "Square Chain Clarke", "code": 109416 }, { "name": "Square Link Clarke", "code": 109417 }, { "name": "Square Yard Sears", "code": 109418 }, { "name": "Square Foot Sears", "code": 109419 }, { "name": "Square Chain Sears", "code": 109420 }, { "name": "Square Link Sears", "code": 109421 }, { "name": "Square Yard Benoit A", "code": 109422 }, { "name": "Square Foot Benoit A", "code": 109423 }, { "name": "Square Chain Benoit A", "code": 109424 }, { "name": "Square Link Benoit A", "code": 109425 }, { "name": "Square Yard Benoit B", "code": 109426 }, { "name": "Square Foot Benoit B", "code": 109427 }, { "name": "Square Chain Benoit B", "code": 109428 }, { "name": "Square Link Benoit B", "code": 109429 }, { "name": "Square Foot 1865", "code": 109430 }, { "name": "Square Foot Indian", "code": 109431 }, { "name": "Square Foot Indian 1937", "code": 109432 }, { "name": "Square Foot Indian 1962", "code": 109433 }, { "name": "Square Foot Indian 1975", "code": 109434 }, { "name": "Square Yard Indian", "code": 109435 }, { "name": "Square Yard Indian 1937", "code": 109436 }, { "name": "Square Yard Indian 1962", "code": 109437 }, { "name": "Square Yard Indian 1975", "code": 109438 }, { "name": "Square Mile Statute", "code": 109439 }, { "name": "Square Foot Gold Coast", "code": 109440 }, { "name": "Square Foot British 1936", "code": 109441 }, { "name": "Square Yard", "code": 109442 }, { "name": "Square Yard US", "code": 109443 }, { "name": "Square Chain", "code": 109444 }, { "name": "Square Link", "code": 109445 }, { "name": "Square Yard Sears 1922 Trunc", "code": 109446 }, { "name": "Square Foot Sears 1922 Trunc", "code": 109447 }, { "name": "Square Chain Sears 1922 Trunc", "code": 109448 }, { "name": "Square Link Sears 1922 Trunc", "code": 109449 }, { "name": "Square Decimeter", "code": 109450 }, { "name": "Square Centimeter", "code": 109451 }, { "name": "Square Millimeter", "code": 109452 }, { "name": "Square Inch", "code": 109453 }, { "name": "Square Inch US", "code": 109454 }, { "name": "Square Rod", "code": 109455 }, { "name": "Square Rod US", "code": 109456 }, { "name": "Square Nautical Mile US", "code": 109457 }, { "name": "Square Nautical Mile UK", "code": 109458 }, { "name": "Square Smoot", "code": 109459 }, { "name": "Square Km50", "code": 109460 }, { "name": "Square Km150", "code": 109461 }, { "name": "Square Vara TX", "code": 109462 }, { "name": "Are", "code": 109463 }, { "name": "Square DTP Point", "code": 109464 }, { "name": "Square Micrometer", "code": 109465 }, { "name": "Square Nanometer", "code": 109466 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "CalculatedArea", "type": "esriFieldTypeDouble", "alias": "Calculated Area", "domain": null }, { "name": "MiscloseRatio", "type": "esriFieldTypeDouble", "alias": "Misclose Ratio", "domain": null }, { "name": "MiscloseDistance", "type": "esriFieldTypeDouble", "alias": "Misclose Distance", "domain": null }, { "name": "IsSeed", "type": "esriFieldTypeInteger", "alias": "Is Seed", "domain": { "type": "codedValue", "name": "WS2_PF_YesNo", "description": "Parcel Fabric Yes No", "codedValues": [ { "name": "No", "code": 0 }, { "name": "Yes", "code": 1 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "Created By", "length": 255, "domain": null }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "Created Date", "length": 8, "domain": null }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "Modified By", "length": 255, "domain": null }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "Modified Date", "length": 8, "domain": null }, { "name": "GlobalID", "type": "esriFieldTypeGlobalID", "alias": "GlobalID", "length": 38, "domain": null }, { "name": "VALIDATIONSTATUS", "type": "esriFieldTypeSmallInteger", "alias": "Validation status", "domain": { "type": "codedValue", "name": "WS2_Validation Status", "description": "The current record's validation status.", "codedValues": [ { "name": "No calculation required, no validation required, no error", "code": 0 }, { "name": "No calculation required, no validation required, has error(s)", "code": 1 }, { "name": "No calculation required, validation required, no error", "code": 2 }, { "name": "No calculation required, validation required, has error(s)", "code": 3 }, { "name": "Calculation required, no validation required, no error", "code": 4 }, { "name": "Calculation required, no validation required, has error(s)", "code": 5 }, { "name": "Calculation required, validation required, no error", "code": 6 }, { "name": "Calculation required, validation required, has error(s)", "code": 7 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "Join_Count_Lot", "type": "esriFieldTypeInteger", "alias": "Join_Count_Lot", "domain": null }, { "name": "Join_Count_Acreage", "type": "esriFieldTypeInteger", "alias": "Join_Count_Acreage", "domain": null }, { "name": "OWNERPARCEL", "type": "esriFieldTypeInteger", "alias": "OWNERPARCEL", "domain": null }, { "name": "OWNERPARCEL_ID", "type": "esriFieldTypeInteger", "alias": "OWNERPARCEL_ID", "domain": null }, { "name": "PARCELID", "type": "esriFieldTypeString", "alias": "PARCELID", "length": 255, "domain": null }, { "name": "CALC_ACRE", "type": "esriFieldTypeDouble", "alias": "CALC_ACRE", "domain": null }, { "name": "TRS", "type": "esriFieldTypeString", "alias": "TRS", "length": 255, "domain": null }, { "name": "MAP", "type": "esriFieldTypeString", "alias": "MAP", "length": 255, "domain": null }, { "name": "BLOCK", "type": "esriFieldTypeString", "alias": "BLOCK", "length": 255, "domain": null }, { "name": "FCODE", "type": "esriFieldTypeInteger", "alias": "FCODE", "domain": { "type": "codedValue", "name": "WS2_PF_ParcelType", "description": "Parcel SubTypes for Tax Parcels and Conveyance", "codedValues": [ { "name": "New Subtype", "code": 0 }, { "name": "Parcel", "code": 500 }, { "name": "Railroad", "code": 505 }, { "name": "Street", "code": 506 }, { "name": "Water", "code": 508 }, { "name": "Drain", "code": 509 }, { "name": "Conflict", "code": 510 }, { "name": "Unknown", "code": 999 }, { "name": "Lot", "code": 700 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } }, { "name": "MAP_ACRE_CALC", "type": "esriFieldTypeDouble", "alias": "MAP_ACRE_CALC", "domain": null }, { "name": "MAP_ACRE_DEED", "type": "esriFieldTypeDouble", "alias": "MAP_ACRE_DEED", "domain": null }, { "name": "Username", "type": "esriFieldTypeString", "alias": "Username", "length": 35, "domain": null }, { "name": "CreateDate", "type": "esriFieldTypeDate", "alias": "CreateDate", "length": 8, "domain": null }, { "name": "ModifyDate", "type": "esriFieldTypeDate", "alias": "ModifyDate", "length": 8, "domain": null }, { "name": "TextString_Acreage", "type": "esriFieldTypeString", "alias": "TextString_Acreage", "length": 255, "domain": null }, { "name": "FontSize_Acreage", "type": "esriFieldTypeDouble", "alias": "FontSize_Acreage", "domain": null }, { "name": "TextString_Lot", "type": "esriFieldTypeString", "alias": "TextString_Lot", "length": 255, "domain": null }, { "name": "FontSize_Lot", "type": "esriFieldTypeDouble", "alias": "FontSize_Lot", "domain": null }, { "name": "Record", "type": "esriFieldTypeString", "alias": "Record", "length": 255, "domain": null }, { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null }, { "name": "Shape.STArea()", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null }, { "name": "Shape.STLength()", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape" }, "indexes": [ { "name": "R1115_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "UUID_1115", "fields": "GlobalID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S1102_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "description": "" } ], "subtypes": [], "relationships": [], "canModifyLayer": false, "canScaleSymbols": false, "hasLabels": true, "capabilities": "Map,Query,Data", "maxRecordCount": 2000, "maxSelectionCount": 2000, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "hasZ": true, "supportedQueryFormats": "JSON, geoJSON, PBF", "isDataVersioned": false, "ownershipBasedAccessControlForFeatures": {"allowOthersToQuery": true}, "useStandardizedQueries": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "advancedQueryCapabilities": { "useStandardizedQueries": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsQueryRelatedPagination": true, "supportsPagination": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsTrueCurve": true, "supportsQueryWithDatumTransformation": true, "supportsReturningQueryExtent": true, "supportsQueryWithDistance": true, "supportsSqlExpression": true, "supportsTimeRelation": true, "supportsSqlFormat": false, "supportsQueryAnalytic": true, "supportsCurrentUserQueries": true }, "supportsDatumTransformation": true, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": false, "supportsPercentileAnalytic": true }, "dateFieldsTimeReference": { "timeZone": "Central Standard Time", "timeZoneIANA": "Etc/GMT+6", "respectsDaylightSaving": false }, "preferredTimeReference": { "timeZone": "Central Standard Time", "timeZoneIANA": "Etc/GMT+6", "respectsDaylightSaving": false }, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape.STArea()", "shapeLengthFieldName": "Shape.STLength()", "units": "esriMeters", "mapUnits": {"uwkid": 9001} }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true, "serviceItemId": "5d10a99a20894fe6b427c72e0fd99a79" }