{ "currentVersion": 11.3, "cimVersion": "3.3.0", "id": 62, "name": "TaxParcel", "type": "Feature Layer", "description": "Tax", "geometryType": "esriGeometryPolygon", "sourceSpatialReference": { "wkid": 102630, "latestWkid": 102630, "xyTolerance": 6.561666666666666E-4, "zTolerance": 2.0E-4, "mTolerance": 0.001, "falseX": -16478800, "falseY": -43705000, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": 0, "mUnits": 1 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 24000, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "uniqueValue", "valueExpression": "if ($feature.IsSeed!=1) {\n return 0;\n}\nreturn 1;", "valueExpressionTitle": "Custom", "uniqueValueGroups": [ { "heading": "", "classes": [ { "label": "Parcel", "description": "Parcel", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 178, 178, 178, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 52, 52, 52, 255 ], "width": 0.7 } }, "values": [ [ "0" ] ] }, { "label": "Seed", "description": "Seed", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 0, 0, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 92, 230, 255 ], "width": 6 } }, "values": [ [ "1" ] ] } ] } ], "uniqueValueInfos": [ { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 178, 178, 178, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 52, 52, 52, 255 ], "width": 0.7 } }, "value": "0", "label": "Parcel" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 0, 0, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 92, 230, 255 ], "width": 6 } }, "value": "1", "label": "Seed" } ], "fieldDelimiter": ",", "authoringInfo": { "colorRamp": { "type": "multipart", "colorRamps": [ { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 215, 251, 252, 255 ], "toColor": [ 215, 251, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 235, 179, 252, 255 ], "toColor": [ 235, 179, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 184, 182, 255 ], "toColor": [ 252, 184, 182, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 250, 252, 182, 255 ], "toColor": [ 250, 252, 182, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 189, 205, 252, 255 ], "toColor": [ 189, 205, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 179, 252, 183, 255 ], "toColor": [ 179, 252, 183, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 210, 242, 255 ], "toColor": [ 252, 210, 242, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 235, 210, 255 ], "toColor": [ 252, 235, 210, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 218, 252, 207, 255 ], "toColor": [ 218, 252, 207, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 182, 252, 224, 255 ], "toColor": [ 182, 252, 224, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 199, 184, 252, 255 ], "toColor": [ 199, 184, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 179, 210, 255 ], "toColor": [ 252, 179, 210, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 212, 212, 255 ], "toColor": [ 252, 212, 212, 255 ] } ] } } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": [ { "labelExpressionInfo": { "expression": "// this label expression Limestone 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, 7) // 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": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "none", "repeatLabel": false, "useClippedGeometry": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "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, 7) // 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,2) +\" 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", "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, 7) // 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 textAcre = \"\"\n\niif (acre >= 5, textAcre = Round(acre,2) + \" AC\", 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": "StatedArea IS NOT NULL And TextString_Acreage IS NULL", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "PARCELID_wStatedArea", "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": 2035191.034935996, "ymin": 1649129.8702989891, "xmax": 2183249.1807482466, "ymax": 1818871.4619174898, "spatialReference": { "wkid": 102630, "latestWkid": 102630, "xyTolerance": 6.561666666666666E-4, "zTolerance": 2.0E-4, "mTolerance": 0.001, "falseX": -16478800, "falseY": -43705000, "xyUnits": 3048.0060960121928, "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": "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": "PF_ParcelType", "description": "Parcel SubTypes for Tax Parcels and Conveyance", "codedValues": [ { "name": "New SubType", "code": 1 }, { "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": "P_SCALE", "type": "esriFieldTypeString", "alias": "P_SCALE", "length": 50, "domain": null }, { "name": "PIN", "type": "esriFieldTypeDouble", "alias": "PIN", "domain": null }, { "name": "StatedArea", "type": "esriFieldTypeDouble", "alias": "Stated Area", "domain": null }, { "name": "StatedAreaUnit", "type": "esriFieldTypeInteger", "alias": "Stated Area Unit", "domain": { "type": "codedValue", "name": "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": "TextString_Acreage", "type": "esriFieldTypeString", "alias": "TextString_Acreage", "length": 255, "domain": null }, { "name": "TextString_Lot", "type": "esriFieldTypeString", "alias": "TextString_Lot", "length": 255, "domain": null }, { "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": "Shape.STArea()", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null }, { "name": "Shape.STLength()", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null }, { "name": "ReMapped", "type": "esriFieldTypeInteger", "alias": "ReMapped", "domain": { "type": "codedValue", "name": "PF_ReMapped", "description": "TaxParcels that have been remapped", "codedValues": [ { "name": "No", "code": 0 }, { "name": "Yes", "code": 1 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" } } ], "geometryField": {}, "indexes": null, "subtypes": [], "relationships": [], "canModifyLayer": true, "canScaleSymbols": false, "hasLabels": true, "capabilities": "Query,Map,Data", "maxRecordCount": 2000, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "hasZ": true, "supportedQueryFormats": "JSON, geoJSON, PBF", "isDataVersioned": true, "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": false, "supportsCurrentUserQueries": true }, "supportsDatumTransformation": true, "dateFieldsTimeReference": { "timeZone": "Central Standard Time", "respectsDaylightSaving": false }, "preferredTimeReference": { "timeZone": "Central Standard Time", "respectsDaylightSaving": false }, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape.STArea()", "shapeLengthFieldName": "Shape.STLength()", "units": "esriFeet", "mapUnits": {"uwkid": 9003} }, "hasMetadata": true, "isDataArchived": true, "archivingInfo": { "supportsQueryWithHistoricMoment": true, "startArchivingMoment": 1726586872000 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true, "serviceItemId": "c4bb4493091f4212b2356cb1d377a3a5" }