{ "isCoGoEnabled": true, "extent": { "ymin": 116810.22675055265, "zmin": -11317.984100000001, "xmin": 2779961.2405527979, "ymax": 372751.66204513609, "zmax": 15054652891.301001, "xmax": 2968402.717999801, "spatialReference": { "xyTolerance": 0.0032808333333333331, "mUnits": 1, "zUnits": 10000, "latestWkid": 102721, "xyUnits": 3048.00609601219276, "mTolerance": 0.001, "falseX": -117105100, "falseY": -98987300, "falseZ": -100000, "latestVcsWkid": 5703, "falseM": 0, "zTolerance": 0.001, "wkid": 102721, "vcsWkid": 5703 } }, "isDataBranchVersioned": true, "supportsApplyEditsWithGlobalIds": true, "maxRecordCount": 2000, "infoInEstimates": [ "extent", "count" ], "datesInUnknownTimezone": false, "ownershipBasedAccessControlForFeatures": null, "type": "Feature Layer", "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "displayFieldExpressionInfo": { "expression": "// Change the settings portion to configure direction format, rounding and abbreviations\n// This is an Arcade expression\n\n// SETTINGS\nvar ShowDistance = true; //set as 'true' to show distance\nvar ShowDirection = true; //set as 'true' to show direction\nvar DirectionType = 1; // 1 = Quadrant Bearing; 2 = North Azimuth; 3 = South Azimuth\nvar ShowRadius = true; //set as 'true' to show radius\nvar ShowCurveParameter = true; //set as 'true' to show a curve parameter\nvar ShowCOGOType = true; //set as 'true' to show prefixes and postfixes defined below for each cogo line label\nvar COGOType_Entered = ['', ''] //Change prefix and postfix for Entered courses\nvar COGOType_Computed = ['±', ''] //Change prefix and postfix for Computed courses\nvar COGOType_FromGeom = ['<', '>'] //Change for prefix and postfix From Geometry courses. The < is a special character to represent the left angle bracket\nvar CurveParameter = \"ArcLength\"; //set as 'ArcLength' or 'Chord' or 'Angle' for central angle. Case sensitive!\nvar ErrorString = \"COGO ERROR\"; //set to display invalid COGO combinations\nvar RadiusAbbr = 'R='; //radius abbreviation\nvar Radius2Abbr = 'R2='; //radius2 abbreviation for spiral curves\nvar ArclengthAbrr = 'L='; //arclength abbreviation\nvar ChordAbbr = 'C='; //chord abbreviation\nvar AngleAbbr = 'A='; //central Angle abbreviation\nvar DistUnitRounding = 2; //number of decimal places for distance units: distance, radius, arclength & chord\nvar NumberFormat = \"#,###.00\" //number format. In this example: thousands separator with padding of 2 zeros\n\n// VARIABLES\nvar cogo_direction = $feature.Direction;\nvar cogo_distance = $feature.Distance;\nvar cogo_radius = $feature.Radius;\nvar cogo_arclength = $feature.Arclength;\nvar cogo_radius2 = $feature.Radius2\nvar cogotype = $feature.COGOType\nvar binaryDictionary; //binary dictionary to check COGO combinations\nvar checksum = 0; //initialize checksum\nvar validValuesArray; //array of valid values for COGO combinations\nvar partialValuesArray; //array of partial values for COGO\nvar directionStr = \"\"; //direction string using for label\nvar distanceStr = \"\"; //distance string using for label\nvar radiusStr = \"\"; //radius string using for label\nvar radius2Str = \"\"; //radius2 string using for labeling spiral curves\nvar curveStr = \"\"; //curve parameter string using for label\nvar prefixPostfix = ['', ''] //Used for prefix and postfix of COGO Type\nvar angleRad; //curve angle in radians\nvar COGOValidity; //COGO combinations validity. can be valid, partial or invalid.\n\nif (IsEmpty(cogo_direction) && IsEmpty(cogo_distance) && IsEmpty(cogo_radius) && IsEmpty(cogo_radius2) && IsEmpty(cogo_arclength)){\n return \"\"\n}\n\nfunction NorthAzimuth2Quadbearing(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'Quadrant', angleType: 'DMS', outputType: 'text', format: 'pd[°]mm[\\']ss[\"]b'})\n}\n\nfunction DMS_North(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'North', angleType: 'DMS', outputType: 'text', format: 'd[°]mm[\\']ss[\"]'})\n}\n\nfunction DMS_South(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'South', angleType: 'DMS', outputType: 'text', format: 'd[°]mm[\\']ss[\"]'})\n}\n\nfunction IsValidCOGO(cogo_direction, cogo_distance, cogo_radius, cogo_arclength, cogo_radius2) {\n binaryDictionary= Dictionary('dir', 1, 'dist',2, 'rad',4, 'arc',8, 'rad2',16)\n if (!IsEmpty(cogo_direction)) {checksum+=binaryDictionary.dir}\n if (!IsEmpty(cogo_distance)) {checksum+=binaryDictionary.dist}\n if (!IsEmpty(cogo_radius)) {checksum+=binaryDictionary.rad}\n if (!IsEmpty(cogo_arclength)) {checksum+=binaryDictionary.arc}\n if (!IsEmpty(cogo_radius2)) {checksum+=binaryDictionary.rad2}\n \n validValuesArray=[0,3,13,29]; //array of valid combinations: '0' for nothing, ... '13' for direction & radius & arclength ...\n partialValuesArray=[1,2,4,5,8,9,12,16,17,20,21,24,25,27,28]; //array of partial combinations: '1' for only direction, '2' for only distance, '4' for only radius...\n //Invalid Values = [6,7,10,11,14,15,18,19,22,23,26,30,31]\n\n if (IndexOf(validValuesArray,checksum)>-1) { // a negative value is returned if checksum value is not in the a valid combination array\n return \"valid\";\n }\n if (IndexOf(partialValuesArray,checksum)>-1){\n return \"partial\";\n }\n return \"invalid\";\n}\n\nfunction COGOTypePrefixPostfix(cogotypeValue){\n if (ShowCOGOType){\n if (cogotypeValue == 1) { //Entered\n return COGOType_Entered\n }\n else if(cogotypeValue == 2) { //From Geometry\n return COGOType_FromGeom\n }\n else if(cogotypeValue == 3) { //Computed\n return COGOType_Computed\n }\n else { //If not set or invalid value\n return ['', '']\n }\n }\n else{\n return(['', ''])\n }\n}\n\nCOGOValidity = IsValidCOGO(cogo_direction, cogo_distance, cogo_radius, cogo_arclength, cogo_radius2);\nif ( COGOValidity == \"invalid\") { //if invalid COGO return error string\n return ErrorString;\n}\n\n\n// Direction string\nif (ShowDirection) {\n if (IsEmpty(cogo_direction)==false) {\n if (DirectionType == 1) { //using quadrant bearing format\n directionStr = NorthAzimuth2Quadbearing(cogo_direction);\n }\n else if (DirectionType == 2) { //using north azimuth format\n directionStr = DMS_North(cogo_direction);\n }\n else if (DirectionType == 3) { //using south azimuth format\n directionStr = DMS_South(cogo_direction);\n }\n }\n}\n\n// Distance string\nif (ShowDistance) {\n if (IsEmpty(cogo_distance)==false) {\n distanceStr = text(round(cogo_distance,DistUnitRounding), NumberFormat);\n }\n}\n\n//Radius String\nif (ShowRadius) {\n if (!IsEmpty(cogo_radius)) { //it can be a curve or a spiral\n if (IsEmpty(cogo_radius2)) { //if radius2 is empty this is a curve\n radiusStr = RadiusAbbr + \" \" + text(round(cogo_radius, DistUnitRounding), NumberFormat);\n }\n else { // it is a spiral\n radiusStr = RadiusAbbr + \" \" + text(round(cogo_radius, DistUnitRounding),NumberFormat);\n radius2Str = Radius2Abbr + \" \" + text(round(cogo_radius2, DistUnitRounding),NumberFormat);\n if (cogo_radius == 0) { //substitute to infinity sign\n radiusStr = RadiusAbbr + \" ∞ \";\n }\n if (cogo_radius2 == 0) { //substitute to infinity sign\n radius2Str = Radius2Abbr + \" ∞ \";\n }\n }\n\n }\n}\n\n// Curve Parameter\nif (ShowCurveParameter) {\n if (!IsEmpty(cogo_arclength)) {\n if (CurveParameter == 'ArcLength') {\n curveStr = text(round(cogo_arclength, DistUnitRounding), NumberFormat); //return Arc length\n }\n angleRad = cogo_arclength/(abs(cogo_radius)) //calculate angle in radians\n if (CurveParameter == 'Angle') {\n curveStr = DMS_North(angleRad * 180 / pi); // convert radian to degrees and show as DMS\n }\n if (CurveParameter == 'Chord') {\n curveStr = text(round((2 * abs(cogo_radius) * Sin(angleRad/2)),DistUnitRounding), NumberFormat); //calculate chord length\n }\n }\n}\n\n//Determine type of curve displayed\nvar CurveTypePrefix = \"\"\nif (!IsEmpty(curveStr)){\n if (CurveParameter == 'ArcLength'){\n CurveTypePrefix = ArclengthAbrr\n }\n else if (CurveParameter == 'Angle'){\n CurveTypePrefix = AngleAbbr\n }\n else if (CurveParameter == 'Chord'){\n CurveTypePrefix = ChordAbbr\n }\n}\n\nvar isStraightLine = IsEmpty(radiusStr) && IsEmpty(radius2Str) && IsEmpty(curveStr)\n\n//Get prefix and postfix if either distance or curve is not empty. NOTE If both aren't empty it's invalid COGO\nif (!IsEmpty(distanceStr) || !IsEmpty(curveStr)){\n prefixPostfix = COGOTypePrefixPostfix(cogotype)\n}\n\n// Assemble label string\nif (isStraightLine){\n if (!IsEmpty(directionStr) && !IsEmpty(distanceStr)){ //If Direction and Distance are both NOT Empty\n return directionStr + ' ' + prefixPostfix[0] + distanceStr + prefixPostfix[1];\n }\n else if (IsEmpty(directionStr)){ //If Direction is empty\n return prefixPostfix[0] + distanceStr + prefixPostfix[1];\n }\n else{ //If Distance is empty\n return directionStr\n }\n}\n\n//Curves\n//If one or both radii and the curve string are NOT empty show the full curve\nif ((!IsEmpty(radiusStr) || !IsEmpty(radius2Str)) && !IsEmpty(curveStr)){\n return radiusStr + \" \" + radius2Str + ' ' + CurveTypePrefix + ' ' + prefixPostfix[0] + curveStr + prefixPostfix[1];\n}\n//If the curve is empty\nelse if (IsEmpty(curveStr)){\n return radiusStr + \" \" + radius2Str\n}\n//If both radius are empty\nelse{\n return CurveTypePrefix + ' ' + prefixPostfix[0] + curveStr + prefixPostfix[1];\n}\n\n\n", "title": "DisplayExpression" }, "relationships": [{ "keyField": "CreatedByRecord", "role": "esriRelRoleDestination", "catalogID": "{94E99643-2C92-443C-B5DC-DB1489D6AA52}", "composite": false, "name": "Richland_Parcels_Records", "relatedTableId": 52, "id": 0, "cardinality": "esriRelCardinalityOneToMany" }], "cimVersion": "3.6.0", "isDataArchived": true, "id": 7, "archivingInfo": { "startArchivingMoment": 1724428179000, "supportsQueryWithHistoricMoment": true }, "spatialReference": { "xyTolerance": 0.0032808333333333331, "mUnits": 1, "zUnits": 10000, "latestWkid": 102721, "xyUnits": 3048.00609601219276, "mTolerance": 0.001, "falseX": -117105100, "falseY": -98987300, "falseZ": -100000, "latestVcsWkid": 5703, "falseM": 0, "zTolerance": 0.001, "wkid": 102721, "vcsWkid": 5703 }, "supportsStatistics": true, "supportedExportFormats": "sqlite,filegdb,shapefile,csv,geojson,kml", "standardMaxRecordCount": 8000, "isDataVersioned": true, "hasGeometryProperties": true, "templates": [{ "name": "Connection Lines", "description": "", "drawingTool": "esriFeatureEditToolLine", "prototype": {"attributes": { "Hide": null, "Radius": null, "Category": null, "RadialBearing": null, "LegalEndDate": null, "COGOType": null, "Direction": null, "Accuracy": null, "DirectionAccuracy": 30, "IsCOGOGround": null, "ArcLength": null, "Distance": null, "CreatedByRecord": null, "TangentBearing": null, "RetiredByRecord": null, "Scale": null, "DistanceAccuracy": 0.49212499999999992, "Rotation": null, "OriginalFeatureOID": null, "LegalStartDate": null, "Type": null, "FloorDesignator": null, "COGOAccuracy": null, "Delta": null, "Radius2": null, "Historical": null }} }], "supportsAdvancedQueries": true, "parentLayer": null, "currentVersion": 12, "canScaleSymbols": false, "heightModelInfo": { "vertCRS": "NAVD_1988", "heightModel": "gravity_related_height", "heightUnit": "meter" }, "hasZ": true, "advancedEditingCapabilities": { "supportsAsyncApplyEdits": true, "supportsApplyEditsbyUploadID": true, "supportedSqlFormatsInCalculate": ["standard"], "supportedApplyEditsUploadIDFormats": "JSON,PBF" }, "supportsQuantizationEditMode": true, "objectIdField": "OBJECTID", "name": "Connection Lines", "allowTrueCurvesUpdates": true, "displayField": "created_user", "supportsCalculate": true, "fields": [ { "modelName": "OBJECTID", "nullable": false, "editable": false, "defaultValue": null, "domain": null, "name": "OBJECTID", "alias": "OBJECTID", "type": "esriFieldTypeOID" }, { "modelName": "Direction", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "Direction", "alias": "Direction", "type": "esriFieldTypeDouble", "required": true }, { "modelName": "Distance", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "Distance", "alias": "Distance", "type": "esriFieldTypeDouble", "required": true }, { "modelName": "Radius", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "Radius", "alias": "Radius", "type": "esriFieldTypeDouble", "required": true }, { "modelName": "ArcLength", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "ArcLength", "alias": "Arc Length", "type": "esriFieldTypeDouble", "required": true }, { "modelName": "Radius2", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "Radius2", "alias": "Radius2", "type": "esriFieldTypeDouble", "required": true }, { "modelName": "RetiredByRecord", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "RetiredByRecord", "length": 38, "alias": "Retired By Record", "type": "esriFieldTypeGUID", "required": true }, { "modelName": "COGOType", "nullable": true, "editable": true, "defaultValue": null, "domain": { "splitPolicy": "esriSPTDuplicate", "name": "PF_COGOType", "description": "Parcel Fabric COGO Type", "type": "codedValue", "codedValues": [ { "code": 1, "name": "Entered" }, { "code": 2, "name": "From Geometry" }, { "code": 3, "name": "Computed" } ], "mergePolicy": "esriMPTDefaultValue" }, "name": "COGOType", "alias": "COGO Type", "type": "esriFieldTypeInteger", "required": true }, { "modelName": "IsCOGOGround", "nullable": true, "editable": true, "defaultValue": null, "domain": { "splitPolicy": "esriSPTDuplicate", "name": "PF_YesNo", "description": "Parcel Fabric Yes No", "type": "codedValue", "codedValues": [ { "code": 0, "name": "No" }, { "code": 1, "name": "Yes" } ], "mergePolicy": "esriMPTDefaultValue" }, "name": "IsCOGOGround", "alias": "Is COGO Ground", "type": "esriFieldTypeInteger", "required": true }, { "modelName": "Rotation", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "Rotation", "alias": "Rotation", "type": "esriFieldTypeDouble", "required": true }, { "modelName": "Scale", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "Scale", "alias": "Scale", "type": "esriFieldTypeDouble", "required": true }, { "modelName": "GlobalID", "nullable": false, "editable": false, "defaultValue": null, "domain": null, "name": "GlobalID", "length": 38, "alias": "GlobalID", "type": "esriFieldTypeGlobalID" }, { "modelName": "CreatedByRecord", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "CreatedByRecord", "length": 38, "alias": "Created By Record", "type": "esriFieldTypeGUID", "required": true }, { "modelName": "created_user", "nullable": true, "editable": false, "defaultValue": null, "domain": null, "name": "created_user", "length": 255, "alias": "Created By", "type": "esriFieldTypeString", "required": true }, { "modelName": "last_edited_user", "nullable": true, "editable": false, "defaultValue": null, "domain": null, "name": "last_edited_user", "length": 255, "alias": "Modified By", "type": "esriFieldTypeString", "required": true }, { "modelName": "last_edited_date", "nullable": true, "editable": false, "defaultValue": null, "domain": null, "name": "last_edited_date", "length": 8, "alias": "Modified Date", "type": "esriFieldTypeDate", "required": true }, { "modelName": "COGOAccuracy", "nullable": true, "editable": true, "defaultValue": null, "domain": { "splitPolicy": "esriSPTDuplicate", "name": "PF_COGOAccuracy", "description": "Parcel Fabric Accuracy", "type": "codedValue", "codedValues": [ { "code": 1, "name": "1 - Highest" }, { "code": 2, "name": "2" }, { "code": 3, "name": "3" }, { "code": 4, "name": "4" }, { "code": 5, "name": "5" }, { "code": 6, "name": "6 - Lowest" }, { "code": 7, "name": "7 - Excluded from LSA" } ], "mergePolicy": "esriMPTDefaultValue" }, "name": "COGOAccuracy", "alias": "COGO Accuracy", "type": "esriFieldTypeInteger" }, { "modelName": "create_date", "nullable": true, "editable": false, "defaultValue": null, "domain": null, "name": "create_date", "length": 8, "alias": "Created Date", "type": "esriFieldTypeDate", "required": true }, { "modelName": "Type", "nullable": true, "editable": true, "defaultValue": null, "domain": { "splitPolicy": "esriSPTDuplicate", "name": "lrParcelType", "description": "descField", "type": "codedValue", "codedValues": [ { "code": 1, "name": "PLSS Township" }, { "code": 2, "name": "PLSS Section" }, { "code": 3, "name": "PLSS Quarter Section" }, { "code": 4, "name": "Special Survey" }, { "code": 5, "name": "Simultaneous Conveyance" }, { "code": 6, "name": "Conveyance Division" }, { "code": 7, "name": "Tax" }, { "code": 8, "name": "Ownership" }, { "code": 9, "name": "Encumbrance" }, { "code": 10, "name": "Separated Right" }, { "code": 11, "name": "Other" }, { "code": 12, "name": "PLSS Second Division" } ], "mergePolicy": "esriMPTDefaultValue" }, "name": "Type", "alias": "Type", "type": "esriFieldTypeInteger" }, { "modelName": "Category", "nullable": true, "editable": true, "defaultValue": null, "domain": { "splitPolicy": "esriSPTDefaultValue", "name": "lrLineCategory", "description": "descField", "type": "codedValue", "codedValues": [ { "code": 0, "name": "Boundary Line" }, { "code": 1, "name": "Dependent Line" }, { "code": 2, "name": "Precise Connection (high accuracy)" }, { "code": 3, "name": "Connection" }, { "code": 4, "name": "Radial Line (system generated)" }, { "code": 5, "name": "Road Frontage" }, { "code": 6, "name": "Origin Connection (from CP to parcel)" }, { "code": 7, "name": "Multipart parcel Connector" } ], "mergePolicy": "esriMPTDefaultValue" }, "name": "Category", "alias": "Category", "type": "esriFieldTypeInteger" }, { "modelName": "Delta", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "Delta", "alias": "Delta", "type": "esriFieldTypeDouble" }, { "modelName": "Historical", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "Historical", "alias": "Historical", "type": "esriFieldTypeInteger" }, { "modelName": "RadialBearing", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "RadialBearing", "alias": "RadialBearing", "type": "esriFieldTypeDouble" }, { "modelName": "TangentBearing", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "TangentBearing", "alias": "TangentBearing", "type": "esriFieldTypeDouble" }, { "modelName": "Accuracy", "nullable": true, "editable": true, "defaultValue": null, "domain": { "splitPolicy": "esriSPTDuplicate", "name": "lrAccuracy", "description": "descField", "type": "codedValue", "codedValues": [ { "code": 1, "name": "1 - Highest" }, { "code": 2, "name": "2 - After 1980" }, { "code": 3, "name": "3 - 1908 to 1980" }, { "code": 4, "name": "4 - 1881 to 1907" }, { "code": 5, "name": "5 - Before 1881" }, { "code": 6, "name": "6 - 1800" }, { "code": 7, "name": "7 - Lowest" } ], "mergePolicy": "esriMPTDefaultValue" }, "name": "Accuracy", "alias": "Accuracy", "type": "esriFieldTypeInteger" }, { "modelName": "Hide", "nullable": true, "editable": true, "defaultValue": null, "domain": { "splitPolicy": "esriSPTDuplicate", "name": "lrYesNo_2", "description": "descField", "type": "codedValue", "codedValues": [ { "code": 0, "name": "No" }, { "code": 1, "name": "Yes" } ], "mergePolicy": "esriMPTDefaultValue" }, "name": "Hide", "alias": "Hide", "type": "esriFieldTypeInteger" }, { "modelName": "LegalStartDate", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "LegalStartDate", "length": 8, "alias": "LegalStartDate", "type": "esriFieldTypeDate" }, { "modelName": "LegalEndDate", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "LegalEndDate", "length": 8, "alias": "LegalEndDate", "type": "esriFieldTypeDate" }, { "modelName": "FloorDesignator", "nullable": true, "editable": true, "defaultValue": null, "domain": { "splitPolicy": "esriSPTDefaultValue", "name": "lrFloorDesignator", "description": "descField", "type": "codedValue", "codedValues": [ { "code": -10, "name": "Min value" }, { "code": 100, "name": "Max value" } ], "mergePolicy": "esriMPTDefaultValue" }, "name": "FloorDesignator", "alias": "Floor Number", "type": "esriFieldTypeSmallInteger" }, { "modelName": "OriginalFeatureOID", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "OriginalFeatureOID", "alias": "OriginalFeatureOID", "type": "esriFieldTypeInteger" }, { "modelName": "DirectionAccuracy", "nullable": true, "editable": true, "defaultValue": 30, "domain": null, "name": "DirectionAccuracy", "alias": "Direction Accuracy", "type": "esriFieldTypeDouble", "required": true }, { "modelName": "DistanceAccuracy", "nullable": true, "editable": true, "defaultValue": 0.49212499999999992, "domain": null, "name": "DistanceAccuracy", "alias": "Distance Accuracy", "type": "esriFieldTypeDouble", "required": true }, { "modelName": "VALIDATIONSTATUS", "nullable": true, "editable": false, "defaultValue": 6, "domain": { "splitPolicy": "esriSPTDefaultValue", "name": "Validation Status", "description": "The current record's validation status.", "type": "codedValue", "codedValues": [ { "code": 0, "name": "No calculation required, no validation required, no error" }, { "code": 1, "name": "No calculation required, no validation required, has error(s)" }, { "code": 2, "name": "No calculation required, validation required, no error" }, { "code": 3, "name": "No calculation required, validation required, has error(s)" }, { "code": 4, "name": "Calculation required, no validation required, no error" }, { "code": 5, "name": "Calculation required, no validation required, has error(s)" }, { "code": 6, "name": "Calculation required, validation required, no error" }, { "code": 7, "name": "Calculation required, validation required, has error(s)" } ], "mergePolicy": "esriMPTDefaultValue" }, "name": "VALIDATIONSTATUS", "alias": "Validation status", "type": "esriFieldTypeSmallInteger", "required": true }, { "modelName": "Shape.STLength()", "nullable": true, "editable": false, "defaultValue": null, "domain": null, "name": "Shape__Length", "alias": "Shape.STLength()", "type": "esriFieldTypeDouble", "required": true } ], "maxRecordCountFactor": 1, "dateFieldsTimeReference": { "timeZoneIANA": "America/Chicago", "respectsDaylightSaving": true, "timeZone": "Central Standard Time" }, "bigIntegerRestrictedTo53Bits": true, "hasM": false, "allowGeometryUpdates": true, "preferredTimeReference": null, "userTypeExtensions": ["advancedEditing"], "useStandardizedQueries": true, "sourceSpatialReference": { "falseM": 0, "xyTolerance": 0.0032808333333333331, "mUnits": 1, "zUnits": 10000, "latestWkid": 102721, "zTolerance": 0.001, "wkid": 102721, "xyUnits": 3048.00609601219276, "mTolerance": 0.001, "falseX": -117105100, "falseY": -98987300, "falseZ": -100000 }, "globalIdField": "GlobalID", "description": "Lines", "syncCanReturnChanges": true, "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "geometryProperties": { "shapeLengthFieldName": "Shape__Length", "units": "esriFeet" }, "supportsRollbackOnFailureParameter": false, "isDataReplicaTracked": false, "standardMaxRecordCountNoGeometry": 32000, "indexes": [ { "name": "UUID_42", "isUnique": true, "description": "", "isAscending": true, "fields": "GlobalID" }, { "name": "G86VALIDATIONSTA", "isUnique": false, "description": "", "isAscending": true, "fields": "VALIDATIONSTATUS" }, { "name": "R42_SDE_ROWID_UK", "isUnique": false, "description": "", "isAscending": true, "fields": "OBJECTID" }, { "name": "S28_idx", "isUnique": true, "description": "", "isAscending": true, "fields": "Shape" } ], "editFieldsInfo": { "editDateField": "last_edited_date", "editorField": "last_edited_user", "creationDateField": "create_date", "creatorField": "created_user", "dateFieldsTimeReference": { "timeZoneIANA": "Etc/UTC", "respectsDaylightSaving": false, "timeZone": "UTC" } }, "supportsDatumTransformation": true, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "minScale": 0, "hasAttachments": false, "advancedQueryCapabilities": { "supportsSqlExpression": true, "supportsQueryWithResultType": true, "supportsQueryRelatedPagination": true, "supportsQueryWithDatumTransformation": true, "supportsCurrentUserQueries": true, "fullTextSearchCapabilities": { "supportsSqlExpressionInFullText": true, "supportsOperator": false, "supportsSearchOperator": true }, "supportsQueryWithLodSR": false, "supportsPagination": true, "fullTextSearchableFields": [], "supportsStatistics": true, "supportsTrueCurve": true, "supportsOrderBy": true, "supportsFullTextSearch": true, "supportsQueryWithDistance": true, "supportsLod": false, "supportsCountDistinct": true, "supportsAdvancedQueryRelated": true, "supportsReturningQueryExtent": true, "supportsReturningGeometryEnvelope": true, "supportedCurveTypes": [ "esriGeometryCircularArc", "esriGeometryEllipticArc", "esriGeometryBezier3Curve" ], "supportsDistinct": true, "supportsReturningGeometryCentroid": false, "supportsQueryAnalytic": false, "supportsPercentileStatistics": true, "supportsHavingClause": true }, "subtypeField": "", "supportsValidateSQL": true, "enableZDefaults": false, "serviceItemId": "7f304cbc091d4b04b3256afc12c213c8", "supportsCoordinatesQuantization": true, "types": [], "capabilities": "Query,Create,Update,Delete,Uploads,Editing,ChangeTracking", "maxScale": 0, "supportsAppend": true, "supportsExceedsLimitStatistics": true, "defaultVisibility": true, "hasMetadata": true, "supportedAppendFormats": "FILEGDB,PBF", "tileMaxRecordCount": 4000, "typeIdField": "", "supportsASyncCalculate": true, "supportsVCSProjection": true, "supportsOidReservation": true, "supportedQueryFormats": "JSON, geoJSON, PBF", "drawingInfo": { "renderer": { "symbol": { "color": [ 102, 153, 205, 255 ], "width": 1, "style": "esriSLSDash", "type": "esriSLS" }, "type": "simple" }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [{ "symbol": { "backgroundColor": null, "kerning": true, "color": [ 0, 112, 255, 255 ], "yoffset": 0, "xoffset": 0, "haloColor": [ 255, 255, 255, 255 ], "type": "esriTS", "borderLineColor": null, "borderLineSize": null, "horizontalAlignment": "left", "haloSize": 1, "angle": 0, "rightToLeft": false, "verticalAlignment": "bottom", "font": { "size": 10, "weight": "normal", "style": "normal", "family": "Tahoma", "decoration": "none" } }, "stackLabel": true, "stackRowLength": 24, "maxScale": 0, "allowOverrun": true, "lineConnection": "unambiguousLabels", "allowOverlapOfFeatureInterior": "avoid", "useClippedGeometry": true, "labelExpressionInfo": { "expression": "if(!isEmpty($feature.distance)){\n round($feature.distance,2)+round($feature.arclength,2)\n}", "title": "Distance" }, "deconflictionStrategy": "dynamic", "priority": -1, "labelPlacement": "esriServerLinePlacementAboveAlong", "removeDuplicates": "none", "textLayout": "followFeature", "stackSeparators": [], "lineOrientation": "unconstrained", "name": "Distance", "repeatLabel": false, "minScale": 1000, "stackAlignment": "dynamic", "useCodedValues": false }] }, "geometryField": { "modelName": "Shape", "nullable": true, "editable": true, "defaultValue": null, "domain": null, "name": "Shape", "alias": "Shape", "type": "esriFieldTypeGeometry" }, "copyrightText": "", "geometryType": "esriGeometryPolyline" }