{ "currentVersion": 10.91, "cimVersion": "2.9.0", "id": 1, "name": "Records", "type": "Feature Layer", "parentLayer": { "id": 0, "name": "Parcel_Fabric_Coyoacan_suroeste" }, "defaultVisibility": true, "minScale": 0, "maxScale": 0, "canScaleSymbols": false, "geometryType": "esriGeometryPolygon", "description": "Record", "copyrightText": "", "editFieldsInfo": { "creationDateField": "create_date", "creatorField": "created_user", "editDateField": "last_edited_date", "editorField": "last_edited_user" }, "ownershipBasedAccessControlForFeatures": null, "syncCanReturnChanges": true, "relationships": [ { "id": 0, "name": "Cartografico", "relatedTableId": 16, "cardinality": "esriRelCardinalityOneToMany", "role": "esriRelRoleOrigin", "keyField": "GlobalID", "composite": false }, { "id": 1, "name": "Cartografico", "relatedTableId": 15, "cardinality": "esriRelCardinalityOneToMany", "role": "esriRelRoleOrigin", "keyField": "GlobalID", "composite": false }, { "id": 2, "name": "Pärcel_Fabric_Coyoacan_suroeste_Connections", "relatedTableId": 7, "cardinality": "esriRelCardinalityOneToMany", "role": "esriRelRoleOrigin", "keyField": "GlobalID", "composite": false }, { "id": 3, "name": "Fiscal", "relatedTableId": 13, "cardinality": "esriRelCardinalityOneToMany", "role": "esriRelRoleOrigin", "keyField": "GlobalID", "composite": false }, { "id": 4, "name": "Fiscal", "relatedTableId": 12, "cardinality": "esriRelCardinalityOneToMany", "role": "esriRelRoleOrigin", "keyField": "GlobalID", "composite": false }, { "id": 5, "name": "Redactor_Parcelas", "relatedTableId": 10, "cardinality": "esriRelCardinalityOneToMany", "role": "esriRelRoleOrigin", "keyField": "GlobalID", "composite": false }, { "id": 6, "name": "Redactor_Parcelas", "relatedTableId": 9, "cardinality": "esriRelCardinalityOneToMany", "role": "esriRelRoleOrigin", "keyField": "GlobalID", "composite": false } ], "isDataVersioned": true, "isDataArchived": true, "infoInEstimates": [ "extent", "count" ], "isDataBranchVersioned": true, "isDataReplicaTracked": false, "isCoGoEnabled": false, "supportsRollbackOnFailureParameter": false, "archivingInfo": { "supportsQueryWithHistoricMoment": true, "startArchivingMoment": 1574178196000 }, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "supportsValidateSQL": true, "supportsCoordinatesQuantization": true, "supportsQuantizationEditMode": true, "supportsCalculate": true, "supportsASyncCalculate": true, "supportsDatumTransformation": true, "advancedQueryCapabilities": { "supportsPagination": true, "supportsTrueCurve": true, "supportsQueryWithDistance": true, "supportsReturningQueryExtent": true, "supportsStatistics": true, "supportsPercentileStatistics": true, "supportsHavingClause": true, "supportsOrderBy": true, "supportsDistinct": true, "supportsCountDistinct": true, "supportsQueryWithResultType": true, "supportsReturningGeometryCentroid": true, "supportsSqlExpression": true, "supportsQueryWithDatumTransformation": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsQueryAnalytic": false }, "advancedEditingCapabilities": { "supportedSqlFormatsInCalculate": [ "standard" ], "supportsAsyncApplyEdits": true }, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape__Area", "shapeLengthFieldName": "Shape__Length", "units": "esriMeters" }, "hasMetadata": true, "extent": { "xmin": 479646.6719000023, "ymin": 2134312.4845000003, "xmax": 481050.8764999993, "ymax": 2135136.636600001, "spatialReference": { "wkid": 32614, "latestWkid": 32614, "xyTolerance": 0.001, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -5120900, "falseY": -9998100, "xyUnits": 10000, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "sourceSpatialReference": { "wkid": 32614, "latestWkid": 32614, "xyTolerance": 0.001, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -5120900, "falseY": -9998100, "xyUnits": 4.504455473910538E8, "falseZ": -100000, "zUnits": 10000, "falseM": 0, "mUnits": 1 }, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 235, 175, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 92, 230, 255 ], "width": 2 } } }, "scaleSymbols": true, "transparency": 50, "labelingInfo": [ { "labelExpressionInfo": {"expression": "// Change the settings portion to configure the label\n// This is an Arcade expression\n\n// SETTINGS\nvar ShowRecordType = true; //Set 'true' to show the Record Type (or 'false')\nvar RecordTypePrefix = \"Type: \"; //Set the record type prefix\nvar ShowRecordedDate = true; //Set to 'true' to show recorded date (or 'false')\nvar mmddyyyy = true; //date format: set to 'false' to see ddmmyyyy format\nvar RecordedDatePrefix = \"Recordation Date: \"; //Set the recorded data prefix\nvar MissingRecordName = \"Missing Record Name\"; //Set the missing record string \n\n// VARIABLES\nvar Label;\nvar recordName = $feature.Name;\nvar recordType = $feature.RecordType;\nvar recordDate = $feature.RecordedDate;\nvar dd = day(recordDate);\nvar mm = month(recordDate)+1; //months are returned between 0 (January) to 11 (December)\nvar yyyy = year(recordDate);\n\nif (!IsEmpty(recordName)){ \n Label = recordName + \"\\n\"\nif (ShowRecordType) {\n if (!IsEmpty(recordType)){ Label = Label + RecordTypePrefix + DomainName($feature, 'RecordType') + \"\\n\"}\n}\nif (ShowRecordedDate){\n if (!IsEmpty(recordDate)){ \n if (mmddyyyy) {\n Label = Label + RecordedDatePrefix + mm + \"-\" + dd + \"-\" + yyyy}\n else{\n Label = Label + RecordedDatePrefix + dd + \"-\" + mm + \"-\" + yyyy}\n } \n}\n}\nelse { Label = \"\" + MissingRecordName + \"\" }\nreturn Label"}, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelPerPart", "allowOverrun": false, "deconflictionStrategy": "none", "repeatLabel": false, "allowOverlapOfFeatureInterior": "avoid", "allowOverlapOfFeatureBoundary": "avoid", "stackLabel": true, "stackRowLength": 24, "stackAlignment": "dynamic", "removeDuplicates": "none", "useCodedValues": true, "maxScale": 1200, "minScale": 5000, "name": "Records < 5000", "priority": -1, "symbol": { "type": "esriTS", "color": [ 0, 92, 230, 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": 10, "style": "normal", "weight": "normal", "decoration": "none" } } }, { "labelExpressionInfo": {"expression": "// Change the settings portion to configure the label\n// This is an Arcade expression\n\n// SETTINGS\nvar ShowRecordType = true; //Set 'true' to show the Record Type (or 'false')\nvar RecordTypePrefix = \"Type: \"; //Set the record type prefix\nvar ShowRecordedDate = true; //Set to 'true' to show recorded date (or 'false')\nvar mmddyyyy = true; //date format: set to 'false' to see ddmmyyyy format\nvar RecordedDatePrefix = \"Recordation Date: \"; //Set the recorded data prefix\nvar MissingRecordName = \"Missing Record Name\"; //Set the missing record string \n\n// VARIABLES\nvar Label;\nvar recordName = $feature.Name;\nvar recordType = $feature.RecordType;\nvar recordDate = $feature.RecordedDate;\nvar dd = day(recordDate);\nvar mm = month(recordDate)+1; //months are returned between 0 (January) to 11 (December)\nvar yyyy = year(recordDate);\n\nif (!IsEmpty(recordName)){ \n Label = recordName + \"\\n\"\nif (ShowRecordType) {\n if (!IsEmpty(recordType)){ Label = Label + RecordTypePrefix + DomainName($feature, 'RecordType') + \"\\n\"}\n}\nif (ShowRecordedDate){\n if (!IsEmpty(recordDate)){ \n if (mmddyyyy) {\n Label = Label + RecordedDatePrefix + mm + \"-\" + dd + \"-\" + yyyy}\n else{\n Label = Label + RecordedDatePrefix + dd + \"-\" + mm + \"-\" + yyyy}\n } \n}\n}\nelse { Label = \"\" + MissingRecordName + \"\" }\nreturn Label"}, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelPerPart", "allowOverrun": false, "deconflictionStrategy": "dynamicNeverRemove", "repeatLabel": false, "allowOverlapOfFeatureInterior": "avoid", "allowOverlapOfFeatureBoundary": "avoid", "stackLabel": true, "stackRowLength": 24, "stackAlignment": "dynamic", "removeDuplicates": "none", "useCodedValues": true, "maxScale": 0, "minScale": 1199, "name": "Records < 1200", "priority": -1, "symbol": { "type": "esriTS", "color": [ 0, 92, 230, 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": 10, "style": "normal", "weight": "normal", "decoration": "none" } } } ] }, "hasM": false, "hasZ": true, "enableZDefaults": true, "zDefault": 0, "supportsVCSProjection": true, "allowGeometryUpdates": true, "allowTrueCurvesUpdates": true, "onlyAllowTrueCurveUpdatesByTrueCurveClients": true, "hasAttachments": false, "supportsApplyEditsWithGlobalIds": true, "supportsOidReservation": true, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "objectIdField": "OBJECTID", "globalIdField": "GlobalID", "displayField": "Name", "typeIdField": "", "subtypeField": "", "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "OBJECTID" }, { "name": "Name", "type": "esriFieldTypeString", "alias": "Name", "domain": null, "editable": true, "nullable": true, "length": 255, "defaultValue": null, "modelName": "Name" }, { "name": "RecordType", "type": "esriFieldTypeInteger", "alias": "Record Type", "domain": { "type": "codedValue", "name": "Pärcel_Fabric_Coyoacan_suroeste_Records_1", "description": "Pärcel Fabric Coyoacan suroeste Records", "codedValues": [ { "name": "Escritura", "code": 1 }, { "name": "Constancia tenencia de la tierra (RAN)", "code": 2 }, { "name": "Contrato de arrendamiento", "code": 3 }, { "name": "Constancia judicial o notario público", "code": 4 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "editable": true, "nullable": true, "defaultValue": null, "modelName": "RecordType" }, { "name": "RecordedDate", "type": "esriFieldTypeDate", "alias": "Recorded Date", "domain": null, "editable": true, "nullable": true, "length": 8, "defaultValue": null, "modelName": "RecordedDate" }, { "name": "COGOAccuracy", "type": "esriFieldTypeInteger", "alias": "COGO Accuracy", "domain": { "type": "codedValue", "name": "PF_COGOAccuracy", "description": "Parcel Fabric Accuracy", "codedValues": [ { "name": "1 - Highest", "code": 1 }, { "name": "2", "code": 2 }, { "name": "3", "code": 3 }, { "name": "4", "code": 4 }, { "name": "5", "code": 5 }, { "name": "6 - Lowest", "code": 6 }, { "name": "7 - Excluded from LSA", "code": 7 } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDefaultValue" }, "editable": true, "nullable": true, "defaultValue": null, "modelName": "COGOAccuracy" }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "Created By", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "created_user" }, { "name": "create_date", "type": "esriFieldTypeDate", "alias": "Created Date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "create_date" }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "Modified By", "domain": null, "editable": false, "nullable": true, "length": 255, "defaultValue": null, "modelName": "last_edited_user" }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "Modified Date", "domain": null, "editable": false, "nullable": true, "length": 8, "defaultValue": null, "modelName": "last_edited_date" }, { "name": "GlobalID", "type": "esriFieldTypeGlobalID", "alias": "GlobalID", "domain": null, "editable": false, "nullable": false, "length": 38, "defaultValue": null, "modelName": "GlobalID" }, { "name": "Shape__Area", "type": "esriFieldTypeDouble", "alias": "Shape.STArea()", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "Shape.STArea()" }, { "name": "Shape__Length", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null, "editable": false, "nullable": false, "defaultValue": null, "modelName": "Shape.STLength()" } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null, "editable": true, "nullable": true, "defaultValue": null, "modelName": "Shape" }, "indexes": [ { "name": "UUID_212", "fields": "GlobalID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "I348Name", "fields": "Name", "isAscending": true, "isUnique": false, "description": "" }, { "name": "R212_SDE_ROWID_UK", "fields": "OBJECTID", "isAscending": true, "isUnique": false, "description": "" }, { "name": "S201_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "description": "" } ], "datesInUnknownTimezone": false, "dateFieldsTimeReference": { "timeZone": "UTC", "respectsDaylightSaving": false }, "preferredTimeReference": null, "types": [], "templates": [ { "name": "Records", "description": "", "prototype": { "attributes": { "RecordedDate": null, "COGOAccuracy": null, "Name": null, "RecordType": null } }, "drawingTool": "esriFeatureEditToolPolygon" } ], "maxRecordCount": 2000, "supportedQueryFormats": "JSON, geoJSON, PBF", "supportedExportFormats": "sqlite,filegdb", "capabilities": "Query,Create,Update,Delete,Uploads,Editing,ChangeTracking", "useStandardizedQueries": true, "userTypeExtensions": [ "parcelFabric" ], "supportedSpatialRelationships": [ "esriSpatialRelIntersects", "esriSpatialRelContains", "esriSpatialRelCrosses", "esriSpatialRelEnvelopeIntersects", "esriSpatialRelIndexIntersects", "esriSpatialRelOverlaps", "esriSpatialRelTouches", "esriSpatialRelWithin", "esriSpatialRelRelation" ], "standardMaxRecordCount": 4000, "tileMaxRecordCount": 4000, "standardMaxRecordCountNoGeometry": 32000, "maxRecordCountFactor": 1, "serviceItemId": "2f9c4a53617a4f91877606ef8322aa35" }