diff --git a/specifyweb/businessrules/migrations/0002_default_unique_rules.py b/specifyweb/businessrules/migrations/0002_default_unique_rules.py index 1a3b0d2d563..f8cc544bf06 100644 --- a/specifyweb/businessrules/migrations/0002_default_unique_rules.py +++ b/specifyweb/businessrules/migrations/0002_default_unique_rules.py @@ -1,14 +1,53 @@ from django.db import migrations -from specifyweb.businessrules.uniqueness_rules import apply_default_uniqueness_rules +from specifyweb.specify.datamodel import datamodel +from specifyweb.businessrules.uniqueness_rules import apply_default_uniqueness_rules, rule_is_global, DEFAULT_UNIQUENESS_RULES -def apply_rules_to_discipline(apps, schema_editor): +def apply_default_rules(apps, schema_editor): Discipline = apps.get_model('specify', 'Discipline') for disp in Discipline.objects.all(): apply_default_uniqueness_rules(disp) +def remove_default_rules(apps, schema_editor): + Discipline = apps.get_model('specify', 'Discipline') + UniquenessRule = apps.get_model('businessrules', 'UniquenessRule') + UniquenessRuleFields = apps.get_model( + 'businessrules', 'UniquenessRuleField') + + for discipline in Discipline.objects.all(): + remove_rules_from_discipline( + discipline, UniquenessRule, UniquenessRuleFields) + + +def remove_rules_from_discipline(discipline, uniqueness_rule, uniquenessrule_fields): + for table, rules in DEFAULT_UNIQUENESS_RULES.items(): + model_name = datamodel.get_table_strict(table).django_name + for rule in rules: + to_remove = set() + fields, scopes = rule["rule"] + isDatabaseConstraint = rule["isDatabaseConstraint"] + + is_global = rule_is_global(scopes) + + for field in fields: + found_fields = uniquenessrule_fields.objects.filter(uniquenessrule__modelName=model_name, uniquenessrule__isDatabaseConstraint=isDatabaseConstraint, + uniquenessrule__discipline_id=None if is_global else discipline.id, fieldPath=field, isScope=False) + + to_remove.update( + tuple(found_fields.values_list('uniquenessrule_id', flat=True))) + found_fields.delete() + for scope in scopes: + found_scopes = uniquenessrule_fields.objects.filter(uniquenessrule__modelName=model_name, uniquenessrule__isDatabaseConstraint=isDatabaseConstraint, + uniquenessrule__discipline_id=None if is_global else discipline.id, fieldPath=scope, isScope=True) + + to_remove.update( + tuple(found_scopes.values_list('uniquenessrule_id', flat=True))) + found_scopes.delete() + uniqueness_rule.objects.filter(id__in=tuple(to_remove)).delete() + + class Migration(migrations.Migration): initial = True @@ -18,5 +57,6 @@ class Migration(migrations.Migration): ] operations = [ - migrations.RunPython(apply_rules_to_discipline), + migrations.RunPython(apply_default_rules, + remove_default_rules, atomic=True), ] diff --git a/specifyweb/businessrules/uniqueness_rules.py b/specifyweb/businessrules/uniqueness_rules.py index b2cf9c1318a..edae82d318a 100644 --- a/specifyweb/businessrules/uniqueness_rules.py +++ b/specifyweb/businessrules/uniqueness_rules.py @@ -6,13 +6,13 @@ from django.db import connections from django.db.migrations.recorder import MigrationRecorder from django.core.exceptions import ObjectDoesNotExist -from specifyweb.specify import models +from specifyweb.specify.api import get_model from specifyweb.specify.datamodel import datamodel from specifyweb.middleware.general import serialize_django_obj from specifyweb.specify.scoping import in_same_scope from .orm_signal_handler import orm_signal_handler from .exceptions import BusinessRuleException -from .models import UniquenessRule +from . import models DEFAULT_UNIQUENESS_RULES: Dict[str, List[Dict[str, Union[List[List[str]], bool]]]] = json.load( open('specifyweb/businessrules/uniqueness_rules.json')) @@ -29,7 +29,13 @@ @orm_signal_handler('pre_save', None, dispatch_uid=UNIQUENESS_DISPATCH_UID) def check_unique(model, instance): model_name = instance.__class__.__name__ - rules = UniquenessRule.objects.filter(modelName=model_name) + cannonical_model = get_model(model_name) + + if not cannonical_model: + # The model is not a Specify Model + # probably a Django-specific model + return + applied_migrations = MigrationRecorder( connections['default']).applied_migrations() @@ -40,14 +46,23 @@ def check_unique(model, instance): else: return + # We can't directly use the main app registry in the context of migrations, which uses fake models + registry = model._meta.apps + + UniquenessRule = registry.get_model('businessrules', 'UniquenessRule') + UniquenessRuleField = registry.get_model( + 'businessrules', 'UniquenessRuleField') + + rules = UniquenessRule.objects.filter(modelName=model_name) for rule in rules: - if not rule_is_global(tuple(field.fieldPath for field in rule.fields.filter(isScope=True))) and not in_same_scope(rule, instance): + rule_fields = UniquenessRuleField.objects.filter(uniquenessrule=rule) + if not rule_is_global(tuple(field.fieldPath for field in rule_fields.filter(isScope=True))) and not in_same_scope(rule, instance): continue field_names = [ - field.fieldPath.lower() for field in rule.fields.filter(isScope=False)] + field.fieldPath.lower() for field in rule_fields.filter(isScope=False)] - _scope = rule.fields.filter(isScope=True) + _scope = rule_fields.filter(isScope=True) scope = None if len(_scope) == 0 else _scope[0] all_fields = [*field_names] @@ -138,7 +153,9 @@ def join_with_and(fields): return ' and '.join(fields) -def apply_default_uniqueness_rules(discipline: models.Discipline): +def apply_default_uniqueness_rules(discipline, registry=None): + UniquenessRule = registry.get_model( + 'businessrules', 'UniquenessRule') if registry else models.UniquenessRule has_set_global_rules = len( UniquenessRule.objects.filter(discipline=None)) > 0 @@ -156,15 +173,34 @@ def apply_default_uniqueness_rules(discipline: models.Discipline): _discipline = None create_uniqueness_rule( - model_name, _discipline, isDatabaseConstraint, fields, scopes) + model_name, _discipline, isDatabaseConstraint, fields, scopes, registry) + + +def create_uniqueness_rule(model_name, discipline, is_database_constraint, fields, scopes, registry=None): + UniquenessRule = registry.get_model( + 'businessrules', 'UniquenessRule') if registry else models.UniquenessRule + UniquenessRuleField = registry.get_model( + 'businessrules', 'UniquenessRuleField') if registry else models.UniquenessRuleField + + matching_fields = UniquenessRuleField.objects.filter( + fieldPath__in=fields, uniquenessrule__modelName=model_name, uniquenessrule__isDatabaseConstraint=is_database_constraint, uniquenessrule__discipline=discipline, isScope=False) + + matching_scopes = UniquenessRuleField.objects.filter( + fieldPath__in=scopes, uniquenessrule__modelName=model_name, uniquenessrule__isDatabaseConstraint=is_database_constraint, uniquenessrule__discipline=discipline, isScope=True) + + # If the rule already exists, skip creating the rule + if len(matching_fields) == len(fields) and len(matching_scopes) == len(scopes): + return + rule = UniquenessRule.objects.create( + discipline=discipline, modelName=model_name, isDatabaseConstraint=is_database_constraint) -def create_uniqueness_rule(model_name, discipline, is_database_constraint, fields, scopes) -> UniquenessRule: - created_rule = UniquenessRule.objects.create(discipline=discipline, - modelName=model_name, isDatabaseConstraint=is_database_constraint) - created_rule.fields.set(fields) - created_rule.fields.add( - *scopes, through_defaults={"isScope": True}) + for field in fields: + UniquenessRuleField.objects.create( + uniquenessrule=rule, fieldPath=field, isScope=False) + for scope in scopes: + UniquenessRuleField.objects.create( + uniquenessrule=rule, fieldPath=scope, isScope=True) """If a uniqueness rule has a scope which traverses through a hiearchy diff --git a/specifyweb/context/schema_localization.py b/specifyweb/context/schema_localization.py index 4c1b422ecc2..2509a0ceba5 100644 --- a/specifyweb/context/schema_localization.py +++ b/specifyweb/context/schema_localization.py @@ -117,7 +117,7 @@ def get_schema_localization(collection, schematype, lang): cfields = ('format', 'ishidden', 'isuiformatter', 'picklistname', 'type', 'aggregator', 'defaultui', 'name', 'desc') containers = { - row[0]: dict(items={}, **{field: row[i+1] for i, field in enumerate(cfields)}) + row[0].lower(): dict(items={}, **{field: row[i+1] for i, field in enumerate(cfields)}) for row in cursor.fetchall() } @@ -172,7 +172,7 @@ def get_schema_localization(collection, schematype, lang): ifields = ('format', 'ishidden', 'isuiformatter', 'picklistname', 'type', 'isrequired', 'weblinkname', 'name', 'desc') for row in cursor.fetchall(): - containers[row[0]]['items'][row[1].lower()] = {field: row[i+2] for i, field in enumerate(ifields)} + containers[row[0].lower()]['items'][row[1].lower()] = {field: row[i+2] for i, field in enumerate(ifields)} return containers diff --git a/specifyweb/context/views.py b/specifyweb/context/views.py index 896a066ad7b..972d260cdb3 100644 --- a/specifyweb/context/views.py +++ b/specifyweb/context/views.py @@ -28,6 +28,7 @@ from specifyweb.specify.models import Collection, Institution, \ Specifyuser, Spprincipal, Spversion from specifyweb.specify.schema import base_schema +from specifyweb.specify.api import uri_for_model from specifyweb.specify.serialize_datamodel import datamodel_to_json from specifyweb.specify.specify_jar import specify_jar from specifyweb.specify.views import login_maybe_required, openapi @@ -340,7 +341,8 @@ def domain(request): 'embeddedPaleoContext': collection.discipline.ispaleocontextembedded, 'paleoContextChildTable': collection.discipline.paleocontextchildtable, 'catalogNumFormatName': collection.catalognumformatname, - } + 'defaultCollectionObjectType': uri_for_model(collection.collectionobjecttype.__class__, collection.collectionobjecttype.id) if collection.collectionobjecttype is not None else None + } return HttpResponse(json.dumps(domain), content_type='application/json') diff --git a/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/businessRules.test.ts b/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/businessRules.test.ts index a3a04754ab0..9574f1f04c5 100644 --- a/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/businessRules.test.ts +++ b/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/businessRules.test.ts @@ -85,7 +85,6 @@ describe('Collection Object business rules', () => { const getBaseCollectionObject = () => new tables.CollectionObject.Resource({ id: collectionObjectlId, - collectionobjecttype: collectionObjectTypeUrl, determinations: [ { taxon: getResourceApiUrl('Taxon', otherTaxonId), @@ -116,6 +115,9 @@ describe('Collection Object business rules', () => { const collectionObject = getBaseCollectionObject(); expect(collectionObject.get('collectingEvent')).toBeDefined(); + expect(collectionObject.get('collectionObjectType')).toEqual( + schema.defaultCollectionObjectType + ); }); const otherCollectionObjectTypeUrl = getResourceApiUrl( diff --git a/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/resourceApi.test.ts b/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/resourceApi.test.ts index 57c4118a250..5c765575805 100644 --- a/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/resourceApi.test.ts +++ b/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/resourceApi.test.ts @@ -34,6 +34,7 @@ const determinationsResponse: RA>> = [ const collectionObjectResponse = { id: collectionObjectId, + collectionobjecttype: getResourceApiUrl('CollectionObjectType', 1), resource_uri: collectionObjectUrl, accession: accessionUrl, catalognumber: '000029432', @@ -203,6 +204,7 @@ describe('needsSaved', () => { const resource = new tables.CollectionObject.Resource({ id: collectionObjectId, }); + expect(resource.needsSaved).toBe(false); resource.set('text1', 'a'); expect(resource.needsSaved).toBe(true); @@ -212,6 +214,7 @@ describe('needsSaved', () => { const resource = new tables.CollectionObject.Resource({ id: collectionObjectId, }); + expect(resource.needsSaved).toBe(false); resource.set('determinations', []); expect(resource.needsSaved).toBe(true); @@ -329,7 +332,7 @@ describe('placeInSameHierarchy', () => { test('invalid hierarchy', async () => { const collectionObject = new tables.CollectionObject.Resource({ - id: 100, + id: collectionObjectId, }); const author = new tables.Author.Resource(); await expect( diff --git a/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/schemaBase.test.ts b/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/schemaBase.test.ts index 78524afc219..d57482e7d67 100644 --- a/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/schemaBase.test.ts +++ b/specifyweb/frontend/js_src/lib/components/DataModel/__tests__/schemaBase.test.ts @@ -14,6 +14,7 @@ test('domain data is fetched and parsed correctly', async () => }, embeddedCollectingEvent: false, embeddedPaleoContext: true, + defaultCollectionObjectType: '/api/specify/collectionobjecttype/1/', fieldPartSeparator: '-', orgHierarchy: [ 'CollectionObject', diff --git a/specifyweb/frontend/js_src/lib/components/DataModel/businessRuleDefs.ts b/specifyweb/frontend/js_src/lib/components/DataModel/businessRuleDefs.ts index 328c12df255..cf7d36d305b 100644 --- a/specifyweb/frontend/js_src/lib/components/DataModel/businessRuleDefs.ts +++ b/specifyweb/frontend/js_src/lib/components/DataModel/businessRuleDefs.ts @@ -13,6 +13,7 @@ import { import type { SpecifyResource } from './legacyTypes'; import { fetchResource, idFromUrl } from './resource'; import { setSaveBlockers } from './saveBlockers'; +import { schema } from './schema'; import type { Collection } from './specifyTable'; import { tables } from './tables'; import type { @@ -154,6 +155,16 @@ export const businessRuleDefs: MappedBusinessRuleDefs = { new tables.CollectingEvent.Resource() ); } + + // Set the default CoType + if ( + typeof schema.defaultCollectionObjectType === 'string' && + typeof collectionObject.get('collectionObjectType') !== 'string' + ) + collectionObject.set( + 'collectionObjectType', + schema.defaultCollectionObjectType + ); }, fieldChecks: { collectionObjectType: async (resource): Promise => { diff --git a/specifyweb/frontend/js_src/lib/components/DataModel/schema.ts b/specifyweb/frontend/js_src/lib/components/DataModel/schema.ts index a121851d82c..190632e21e0 100644 --- a/specifyweb/frontend/js_src/lib/components/DataModel/schema.ts +++ b/specifyweb/frontend/js_src/lib/components/DataModel/schema.ts @@ -21,6 +21,7 @@ type Schema = { readonly embeddedPaleoContext: boolean; readonly paleoContextChildTable: string; readonly catalogNumFormatName: string; + readonly defaultCollectionObjectType: string | null; readonly orgHierarchy: readonly [ 'CollectionObject', 'Collection', @@ -50,6 +51,9 @@ const schemaBase: Writable = { paleoContextChildTable: undefined!, catalogNumFormatName: undefined!, + // Default collectionObjectType for the collection + defaultCollectionObjectType: undefined!, + // The scoping hierarchy of Specify objects. orgHierarchy: [ 'CollectionObject', @@ -90,6 +94,7 @@ export const fetchContext = load< schemaBase.embeddedPaleoContext = data.embeddedPaleoContext; schemaBase.paleoContextChildTable = data.paleoContextChildTable; schemaBase.catalogNumFormatName = data.catalogNumFormatName; + schemaBase.defaultCollectionObjectType = data.defaultCollectionObjectType; return schemaBase; }); diff --git a/specifyweb/frontend/js_src/lib/components/InitialContext/remotePrefs.ts b/specifyweb/frontend/js_src/lib/components/InitialContext/remotePrefs.ts index d90d72ad737..c70f2292ded 100644 --- a/specifyweb/frontend/js_src/lib/components/InitialContext/remotePrefs.ts +++ b/specifyweb/frontend/js_src/lib/components/InitialContext/remotePrefs.ts @@ -160,7 +160,7 @@ export const remotePrefsDefinitions = f.store( description: 'Sort order for nodes in the tree viewer', defaultValue: 'name', formatters: [formatter.trim], - isLegacy: true, + isLegacy: false, }, 'TreeEditor.Rank.Threshold.GeologicTimePeriod': { description: @@ -280,7 +280,8 @@ export const remotePrefsDefinitions = f.store( isLegacy: false, }, 'sp7.allow_adding_child_to_synonymized_parent.TectonicUnit': { - description: 'Allowed to add children to synopsized TectonicUnit records', + description: + 'Allowed to add children to synopsized TectonicUnit records', defaultValue: false, parser: 'java.lang.Boolean', isLegacy: false, diff --git a/specifyweb/frontend/js_src/lib/components/QueryBuilder/fromTree.ts b/specifyweb/frontend/js_src/lib/components/QueryBuilder/fromTree.ts index 5b04dea474b..86f5faf9d7e 100644 --- a/specifyweb/frontend/js_src/lib/components/QueryBuilder/fromTree.ts +++ b/specifyweb/frontend/js_src/lib/components/QueryBuilder/fromTree.ts @@ -152,15 +152,28 @@ const defaultFields: RR< : []), ]; }, - TectonicUnit: async (_nodeId, _rankName) => { + TectonicUnit: async (nodeId, rankName) => { // TODO: Fields below are a placeholder. Remove once we determine the requirements for querying Tectonic trees + const paleoPath = await fetchPaleoPath(); return [ makeField('catalogNumber', {}), - makeField('determinations.taxon.fullName', {}), + makeField('determinations.taxon.fullName', { + sortType: flippedSortTypes.ascending, + }), makeField('determinations.isCurrent', { isDisplay: false, operStart: queryFieldFilters.trueOrNull.id, }), + ...(typeof paleoPath === 'string' + ? [ + makeField(`${paleoPath}.tectonicUnit.fullName`, {}), + makeField(`${paleoPath}.tectonicUnit.${rankName}.lithoStratId`, { + operStart: queryFieldFilters.equal.id, + startValue: nodeId.toString(), + isDisplay: false, + }), + ] + : []), ]; }, }; diff --git a/specifyweb/frontend/js_src/lib/components/SchemaConfig/Fields.tsx b/specifyweb/frontend/js_src/lib/components/SchemaConfig/Fields.tsx index bbe118b1884..af860fcb76f 100644 --- a/specifyweb/frontend/js_src/lib/components/SchemaConfig/Fields.tsx +++ b/specifyweb/frontend/js_src/lib/components/SchemaConfig/Fields.tsx @@ -66,15 +66,7 @@ export function SchemaConfigFields({ {relationships.length > 0 && ( - name !== 'collectionObjectType' - ) - : relationships - } - /> + )} diff --git a/specifyweb/frontend/js_src/lib/components/SchemaConfig/TableUniquenessRules.tsx b/specifyweb/frontend/js_src/lib/components/SchemaConfig/TableUniquenessRules.tsx index b2334201c4e..8b6d783d5ee 100644 --- a/specifyweb/frontend/js_src/lib/components/SchemaConfig/TableUniquenessRules.tsx +++ b/specifyweb/frontend/js_src/lib/components/SchemaConfig/TableUniquenessRules.tsx @@ -71,9 +71,7 @@ export function TableUniquenessRules(): JSX.Element { (relationship) => (['many-to-one', 'one-to-one'] as RA).includes( relationship.type - ) && - !relationship.isVirtual && - relationship.name !== 'collectionObjectType' + ) && !relationship.isVirtual ), [table] ); diff --git a/specifyweb/frontend/js_src/lib/components/SchemaConfig/Tables.tsx b/specifyweb/frontend/js_src/lib/components/SchemaConfig/Tables.tsx index 276956a0286..1edf5436416 100644 --- a/specifyweb/frontend/js_src/lib/components/SchemaConfig/Tables.tsx +++ b/specifyweb/frontend/js_src/lib/components/SchemaConfig/Tables.tsx @@ -21,7 +21,6 @@ import { Dialog } from '../Molecules/Dialog'; import { TableIcon } from '../Molecules/TableIcon'; import { hasTablePermission } from '../Permissions/helpers'; import { formatUrl } from '../Router/queryString'; -import { HIDDEN_GEO_TABLES } from '../Toolbar/QueryTablesEdit'; export function SchemaConfigTables(): JSX.Element { const { language = '' } = useParams(); @@ -127,8 +126,6 @@ export function TableList({ () => Object.values(genericTables) .filter((table) => filter(showHiddenTables, table)) - // TODO: temp fix, remove this, use to hide geo tables for COG until 9.8 release - .filter((table) => !HIDDEN_GEO_TABLES.has(table.name)) .sort(sortFunction(({ name }) => name)), [filter, showHiddenTables] ); diff --git a/specifyweb/frontend/js_src/lib/components/SchemaConfig/UniquenessRuleRow.tsx b/specifyweb/frontend/js_src/lib/components/SchemaConfig/UniquenessRuleRow.tsx index 287815056d8..98f78b552e7 100644 --- a/specifyweb/frontend/js_src/lib/components/SchemaConfig/UniquenessRuleRow.tsx +++ b/specifyweb/frontend/js_src/lib/components/SchemaConfig/UniquenessRuleRow.tsx @@ -84,7 +84,7 @@ export function UniquenessRuleRow({ name === field) ?? diff --git a/specifyweb/frontend/js_src/lib/components/SchemaConfig/UniquenessRuleScope.tsx b/specifyweb/frontend/js_src/lib/components/SchemaConfig/UniquenessRuleScope.tsx index dbcc94d0c71..e37f7e78178 100644 --- a/specifyweb/frontend/js_src/lib/components/SchemaConfig/UniquenessRuleScope.tsx +++ b/specifyweb/frontend/js_src/lib/components/SchemaConfig/UniquenessRuleScope.tsx @@ -61,7 +61,7 @@ export function UniquenessRuleScope({ isDefault: false, isEnabled: true, isRelationship: true, - optionLabel: relationship.localization.name!, + optionLabel: relationship.localization.name ?? relationship.name, tableName: relationship.relatedTable.name, }, ]) diff --git a/specifyweb/frontend/js_src/lib/components/Toolbar/QueryTablesEdit.tsx b/specifyweb/frontend/js_src/lib/components/Toolbar/QueryTablesEdit.tsx index 613975104d3..5e07f49b1cc 100644 --- a/specifyweb/frontend/js_src/lib/components/Toolbar/QueryTablesEdit.tsx +++ b/specifyweb/frontend/js_src/lib/components/Toolbar/QueryTablesEdit.tsx @@ -37,16 +37,7 @@ export function QueryTablesEdit({ /> ); } -/* - * TODO: temp fix, remove this, use to hide geo tables for COG until 9.8 release - * TODO: Revert #5236 to unhide COType - */ -export const HIDDEN_GEO_TABLES = new Set([ - 'CollectionObjectType', - 'CollectionObjectGroup', - 'CollectionObjectGroupJoin', - 'CollectionObjectGroupType', -]); + export function TablesListEdit({ isNoRestrictionMode, defaultTables, @@ -67,8 +58,6 @@ export function TablesListEdit({ .filter((table) => tablesFilter(isNoRestrictionMode, false, true, table, selectedValues) ) - // TODO: temp fix, remove this, use to hide geo tables for COG until 9.8 release - .filter((table) => !HIDDEN_GEO_TABLES.has(table.name)) .map(({ name, label }) => ({ name, label })); const handleChanged = (items: RA): void => diff --git a/specifyweb/frontend/js_src/lib/components/WbPlanView/LineComponents.tsx b/specifyweb/frontend/js_src/lib/components/WbPlanView/LineComponents.tsx index 433a4761b77..d4c7648c1e0 100644 --- a/specifyweb/frontend/js_src/lib/components/WbPlanView/LineComponents.tsx +++ b/specifyweb/frontend/js_src/lib/components/WbPlanView/LineComponents.tsx @@ -227,8 +227,7 @@ export function MappingElement({ fieldsData, ...props }: MappingElementProps): JSX.Element { - const { collectionObjectType, ...rest } = fieldsData; - const fieldGroups = Object.entries(rest).reduce< + const fieldGroups = Object.entries(fieldsData).reduce< R> >((fieldGroups, [fieldName, fieldData]) => { const groupName = getFieldGroupName( diff --git a/specifyweb/frontend/js_src/lib/tests/ajax/static/context/domain.json b/specifyweb/frontend/js_src/lib/tests/ajax/static/context/domain.json index 0d9791e5ca0..2a1e2172d0a 100644 --- a/specifyweb/frontend/js_src/lib/tests/ajax/static/context/domain.json +++ b/specifyweb/frontend/js_src/lib/tests/ajax/static/context/domain.json @@ -6,5 +6,6 @@ "embeddedCollectingEvent": false, "embeddedPaleoContext": true, "paleoContextChildTable": "collectionobject", - "catalogNumFormatName": "CatalogNumberNumeric" + "catalogNumFormatName": "CatalogNumberNumeric", + "defaultCollectionObjectType": "/api/specify/collectionobjecttype/1/" } diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/accession.1.json b/specifyweb/frontend/js_src/lib/tests/fixtures/accession.1.json deleted file mode 100644 index 85a06cf8d7a..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/accession.1.json +++ /dev/null @@ -1,45 +0,0 @@ -{"accessionnumber": "2004-IC-073", - "collectionobjects": "/api/specify/collectionobject/?accession=1", - "dateaccessioned": "2004-07-20", - "id": 1, - "addressofrecord": "/api/specify/addressofrecord/57/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2004-07-26T09:06:33", - "accessioncondition": null, - "version": 1, - "timestampmodified": "2004-07-26T09:08:56", - "yesno1": null, - "yesno2": null, - "type": "Field Work", - "deaccessions": "/api/specify/deaccession/?accession=1", - "status": "complete", - "division": "/api/specify/division/2/", - "accessionattachments": [], - "text2": null, - "text3": null, - "text1": null, - "number2": 132.0, - "verbatimdate": null, - "number1": 19.0, - "remarks": "Common Kansas fishes collected by Ed Wiley in Anderson County, KS on 17 August 1989", - "totalvalue": null, - "repositoryagreement": null, - "appraisals": "/api/specify/appraisal/?accession=1", - "treatmentevents": "/api/specify/treatmentevent/?accession=1", - "datereceived": "1989-08-17", - "createdbyagent": "/api/specify/agent/1/", - "dateacknowledged": null, - "accessionauthorizations": [], - "accessionagents": [{"repositoryagreement": null, - "createdbyagent": "/api/specify/agent/1/", - "modifiedbyagent": "/api/specify/agent/1514/", - "accession": "/api/specify/accession/1/", - "agent": "/api/specify/agent/1452/", - "timestampcreated": "2004-07-26T09:06:33", - "version": 0, - "role": "Collector", - "remarks": null, - "timestampmodified": "2004-07-26T09:08:56", - "id": 168, - "resource_uri": "/api/specify/accessionagent/168/"}], - "resource_uri": "/api/specify/accession/1/"} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/accession.3.json b/specifyweb/frontend/js_src/lib/tests/fixtures/accession.3.json deleted file mode 100644 index d019c4d9a54..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/accession.3.json +++ /dev/null @@ -1,45 +0,0 @@ -{"accessionnumber": "1997-IC-066", - "collectionobjects": "/api/specify/collectionobject/?accession=3", - "dateaccessioned": "1997-11-18", - "id": 3, - "addressofrecord": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2001-05-04T03:42:53", - "accessioncondition": null, - "version": 0, - "timestampmodified": "2004-07-13T09:04:15", - "yesno1": null, - "yesno2": null, - "type": "collecting", - "deaccessions": "/api/specify/deaccession/?accession=3", - "status": "complete", - "division": "/api/specify/division/2/", - "accessionattachments": [], - "text2": null, - "text3": null, - "text1": null, - "number2": 9.0, - "verbatimdate": null, - "number1": 3.0, - "remarks": "Six specimens of sand roller (Percopsis transmontana) and three specimens of peamouth (Mylocheilus caurinus) collected during September 1997 by Michael Parsley in Bonneville Reservoir, under licence from the state of Washington, Department of Fish and Wildlife", - "totalvalue": null, - "repositoryagreement": null, - "appraisals": "/api/specify/appraisal/?accession=3", - "treatmentevents": "/api/specify/treatmentevent/?accession=3", - "datereceived": "1997-10-20", - "createdbyagent": "/api/specify/agent/1/", - "dateacknowledged": null, - "accessionauthorizations": [], - "accessionagents": [{"repositoryagreement": null, - "createdbyagent": "/api/specify/agent/1/", - "modifiedbyagent": "/api/specify/agent/1514/", - "accession": "/api/specify/accession/3/", - "agent": "/api/specify/agent/449/", - "timestampcreated": "2004-07-13T09:04:15", - "version": 0, - "role": "Collector", - "remarks": null, - "timestampmodified": "2004-07-13T09:04:15", - "id": 171, - "resource_uri": "/api/specify/accessionagent/171/"}], - "resource_uri": "/api/specify/accession/3/"} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.accession=1&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.accession=1&offset=0.json deleted file mode 100644 index cf0c3fecbb7..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.accession=1&offset=0.json +++ /dev/null @@ -1,17 +0,0 @@ -{"meta": {"limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total_count": 1}, - "objects": [{"accession": "/api/specify/accession/1/", - "agent": "/api/specify/agent/1441/", - "createdbyagent": "/api/specify/agent/1/", - "id": "165", - "modifiedbyagent": "/api/specify/agent/3/", - "remarks": "", - "repositoryagreement": null, - "resource_uri": "/api/specify/accessionagent/165/", - "role": "Collector", - "timestampcreated": "2004-07-26T09:06:33", - "timestampmodified": "2012-04-13T14:47:15", - "version": 2}]} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.repositoryagreement=1&offset=0&limit=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.repositoryagreement=1&offset=0&limit=0.json deleted file mode 100644 index b3417f3157d..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.repositoryagreement=1&offset=0&limit=0.json +++ /dev/null @@ -1 +0,0 @@ -{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null, "total_count": 0}, "objects": []} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.role=Collector&accession=1&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.role=Collector&accession=1&offset=0.json deleted file mode 100644 index cf0c3fecbb7..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.role=Collector&accession=1&offset=0.json +++ /dev/null @@ -1,17 +0,0 @@ -{"meta": {"limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total_count": 1}, - "objects": [{"accession": "/api/specify/accession/1/", - "agent": "/api/specify/agent/1441/", - "createdbyagent": "/api/specify/agent/1/", - "id": "165", - "modifiedbyagent": "/api/specify/agent/3/", - "remarks": "", - "repositoryagreement": null, - "resource_uri": "/api/specify/accessionagent/165/", - "role": "Collector", - "timestampcreated": "2004-07-26T09:06:33", - "timestampmodified": "2012-04-13T14:47:15", - "version": 2}]} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.role=Collector&repositoryagreement=1&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.role=Collector&repositoryagreement=1&offset=0.json deleted file mode 100644 index b3417f3157d..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.role=Collector&repositoryagreement=1&offset=0.json +++ /dev/null @@ -1 +0,0 @@ -{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null, "total_count": 0}, "objects": []} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.role=Donor&accession=1&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.role=Donor&accession=1&offset=0.json deleted file mode 100644 index 3e7f9b6efe5..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/accessionagent.role=Donor&accession=1&offset=0.json +++ /dev/null @@ -1,6 +0,0 @@ -{"meta": {"limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total_count": 0}, - "objects": []} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/agent.3.json b/specifyweb/frontend/js_src/lib/tests/fixtures/agent.3.json deleted file mode 100644 index 092c43d3adb..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/agent.3.json +++ /dev/null @@ -1,41 +0,0 @@ -{"abbreviation": "tcu", - "addresses": "/api/specify/address/?agent=3", - "agentattachments": "/api/specify/agentattachment/?agent=3", - "agentgeographies": "/api/specify/agentgeography/?agent=3", - "agentspecialties": "/api/specify/agentspecialty/?agent=3", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=3", - "colltechcontact": null, - "createdbyagent": null, - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": "testuser@ku.edu", - "firstname": "Test", - "groups": "/api/specify/groupperson/?group=3", - "guid": null, - "id": "3", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "User", - "members": "/api/specify/groupperson/?member=3", - "middleinitial": "C", - "modifiedbyagent": "/api/specify/agent/3/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=3", - "remarks": "bar", - "resource_uri": "/api/specify/agent/3/", - "specifyuser": "/api/specify/specifyuser/1/", - "timestampcreated": "2012-02-22T12:55:16", - "timestampmodified": "2012-05-08T16:13:43", - "title": "Mr.", - "url": null, - "variants": "/api/specify/agentvariant/?agent=3", - "version": 144} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/agent.66.json b/specifyweb/frontend/js_src/lib/tests/fixtures/agent.66.json deleted file mode 100644 index 5e5764a08a2..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/agent.66.json +++ /dev/null @@ -1,41 +0,0 @@ -{"dateofbirthprecision": null, - "specifyuser": null, - "addresses": [], - "collectors": "/api/specify/collector/?agent=66", - "middleinitial": "R", - "orgmembers": "/api/specify/agent/?organization=66", - "abbreviation": null, - "guid": null, - "datetype": null, - "id": 66, - "insttechcontact": null, - "dateofdeath": null, - "title": "mr", - "jobtitle": null, - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-09-09T10:58:10", - "dateofbirth": null, - "version": 0, - "timestampmodified": "2006-09-19T11:45:41", - "email": null, - "interests": null, - "division": "/api/specify/division/2/", - "firstname": "Geffery", - "lastname": "Luttrell", - "agenttype": 1, - "dateofdeathprecision": null, - "colltechcontact": null, - "members": "/api/specify/groupperson/?member=66", - "remarks": null, - "agentspecialties": [], - "variants": [], - "agentgeographies": [], - "collcontentcontact": null, - "groups": [], - "url": null, - "instcontentcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "agentattachments": [], - "organization": null, - "resource_uri": "/api/specify/agent/66/", - "initials": null} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/agent.offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/agent.offset=0.json deleted file mode 100644 index 217baf303d5..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/agent.offset=0.json +++ /dev/null @@ -1,825 +0,0 @@ -{"meta": {"limit": 20, - "next": "/api/specify/agent/?offset=20&limit=20&format=json", - "offset": 0, - "previous": null, - "total_count": 1970}, - "objects": [{"abbreviation": null, - "addresses": "/api/specify/address/?agent=1", - "agentattachments": "/api/specify/agentattachment/?agent=1", - "agentgeographies": "/api/specify/agentgeography/?agent=1", - "agentspecialties": "/api/specify/agentspecialty/?agent=1", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=1", - "colltechcontact": null, - "createdbyagent": null, - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": null, - "email": null, - "firstname": "DB", - "groups": "/api/specify/groupperson/?group=1", - "guid": null, - "id": "1", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Creator", - "members": "/api/specify/groupperson/?member=1", - "middleinitial": null, - "modifiedbyagent": null, - "organization": null, - "orgmembers": "/api/specify/agent/?organization=1", - "remarks": "", - "resource_uri": "/api/specify/agent/1/", - "specifyuser": null, - "timestampcreated": "2012-02-22T12:51:56", - "timestampmodified": "2012-02-22T12:51:56", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=1", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=2", - "agentattachments": "/api/specify/agentattachment/?agent=2", - "agentgeographies": "/api/specify/agentgeography/?agent=2", - "agentspecialties": "/api/specify/agentspecialty/?agent=2", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=2", - "colltechcontact": null, - "createdbyagent": null, - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": null, - "email": null, - "firstname": "DB", - "groups": "/api/specify/groupperson/?group=2", - "guid": null, - "id": "2", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Modifier", - "members": "/api/specify/groupperson/?member=2", - "middleinitial": null, - "modifiedbyagent": null, - "organization": null, - "orgmembers": "/api/specify/agent/?organization=2", - "remarks": "", - "resource_uri": "/api/specify/agent/2/", - "specifyuser": null, - "timestampcreated": "2012-02-22T12:51:56", - "timestampmodified": "2012-02-22T12:51:56", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=2", - "version": 0}, - {"abbreviation": "tcu", - "addresses": "/api/specify/address/?agent=3", - "agentattachments": "/api/specify/agentattachment/?agent=3", - "agentgeographies": "/api/specify/agentgeography/?agent=3", - "agentspecialties": "/api/specify/agentspecialty/?agent=3", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=3", - "colltechcontact": null, - "createdbyagent": null, - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": "testuser@ku.edu", - "firstname": "Test", - "groups": "/api/specify/groupperson/?group=3", - "guid": null, - "id": "3", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "User", - "members": "/api/specify/groupperson/?member=3", - "middleinitial": "C", - "modifiedbyagent": "/api/specify/agent/3/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=3", - "remarks": "bar", - "resource_uri": "/api/specify/agent/3/", - "specifyuser": "/api/specify/specifyuser/1/", - "timestampcreated": "2012-02-22T12:55:16", - "timestampmodified": "2012-05-08T16:13:43", - "title": "Mr.", - "url": null, - "variants": "/api/specify/agentvariant/?agent=3", - "version": 144}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=4", - "agentattachments": "/api/specify/agentattachment/?agent=4", - "agentgeographies": "/api/specify/agentgeography/?agent=4", - "agentspecialties": "/api/specify/agentspecialty/?agent=4", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=4", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "Tom", - "groups": "/api/specify/groupperson/?group=4", - "guid": null, - "id": "4", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Laird", - "members": "/api/specify/groupperson/?member=4", - "middleinitial": null, - "modifiedbyagent": "/api/specify/agent/1503/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=4", - "remarks": "", - "resource_uri": "/api/specify/agent/4/", - "specifyuser": null, - "timestampcreated": "2011-09-09T10:39:45", - "timestampmodified": "2011-09-09T10:39:45", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=4", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=5", - "agentattachments": "/api/specify/agentattachment/?agent=5", - "agentgeographies": "/api/specify/agentgeography/?agent=5", - "agentspecialties": "/api/specify/agentspecialty/?agent=5", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=5", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "W", - "groups": "/api/specify/groupperson/?group=5", - "guid": null, - "id": "5", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Boles", - "members": "/api/specify/groupperson/?member=5", - "middleinitial": "E", - "modifiedbyagent": "/api/specify/agent/1503/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=5", - "remarks": "", - "resource_uri": "/api/specify/agent/5/", - "specifyuser": null, - "timestampcreated": "2001-06-01T12:47:48", - "timestampmodified": "2001-06-01T12:47:48", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=5", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=6", - "agentattachments": "/api/specify/agentattachment/?agent=6", - "agentgeographies": "/api/specify/agentgeography/?agent=6", - "agentspecialties": "/api/specify/agentspecialty/?agent=6", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=6", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "Reuben", - "groups": "/api/specify/groupperson/?group=6", - "guid": null, - "id": "6", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Bell", - "members": "/api/specify/groupperson/?member=6", - "middleinitial": "P", - "modifiedbyagent": "/api/specify/agent/2/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=6", - "remarks": "", - "resource_uri": "/api/specify/agent/6/", - "specifyuser": null, - "timestampcreated": "2003-02-12T04:14:13", - "timestampmodified": "2003-02-12T04:14:19", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=6", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=7", - "agentattachments": "/api/specify/agentattachment/?agent=7", - "agentgeographies": "/api/specify/agentgeography/?agent=7", - "agentspecialties": "/api/specify/agentspecialty/?agent=7", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=7", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "Joan", - "groups": "/api/specify/groupperson/?group=7", - "guid": null, - "id": "7", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Tajchman", - "members": "/api/specify/groupperson/?member=7", - "middleinitial": null, - "modifiedbyagent": "/api/specify/agent/2/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=7", - "remarks": "", - "resource_uri": "/api/specify/agent/7/", - "specifyuser": null, - "timestampcreated": "2001-06-13T12:43:00", - "timestampmodified": "2001-06-13T12:43:00", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=7", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=8", - "agentattachments": "/api/specify/agentattachment/?agent=8", - "agentgeographies": "/api/specify/agentgeography/?agent=8", - "agentspecialties": "/api/specify/agentspecialty/?agent=8", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=8", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "D", - "groups": "/api/specify/groupperson/?group=8", - "guid": null, - "id": "8", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Treanor", - "members": "/api/specify/groupperson/?member=8", - "middleinitial": null, - "modifiedbyagent": "/api/specify/agent/1503/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=8", - "remarks": "", - "resource_uri": "/api/specify/agent/8/", - "specifyuser": null, - "timestampcreated": "2001-04-24T12:48:18", - "timestampmodified": "2001-04-24T12:48:18", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=8", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=9", - "agentattachments": "/api/specify/agentattachment/?agent=9", - "agentgeographies": "/api/specify/agentgeography/?agent=9", - "agentspecialties": "/api/specify/agentspecialty/?agent=9", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=9", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": null, - "groups": "/api/specify/groupperson/?group=9", - "guid": null, - "id": "9", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Unknown", - "members": "/api/specify/groupperson/?member=9", - "middleinitial": null, - "modifiedbyagent": "/api/specify/agent/2/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=9", - "remarks": "", - "resource_uri": "/api/specify/agent/9/", - "specifyuser": null, - "timestampcreated": "2004-07-26T02:37:44", - "timestampmodified": "2004-07-26T02:37:44", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=9", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=10", - "agentattachments": "/api/specify/agentattachment/?agent=10", - "agentgeographies": "/api/specify/agentgeography/?agent=10", - "agentspecialties": "/api/specify/agentspecialty/?agent=10", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=10", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "Mohd", - "groups": "/api/specify/groupperson/?group=10", - "guid": null, - "id": "10", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": "Director", - "lastname": "Haq", - "members": "/api/specify/groupperson/?member=10", - "middleinitial": "F", - "modifiedbyagent": "/api/specify/agent/2/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=10", - "remarks": "", - "resource_uri": "/api/specify/agent/10/", - "specifyuser": null, - "timestampcreated": "2001-08-31T01:11:39", - "timestampmodified": "2001-08-31T01:11:39", - "title": "Dr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=10", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=11", - "agentattachments": "/api/specify/agentattachment/?agent=11", - "agentgeographies": "/api/specify/agentgeography/?agent=11", - "agentspecialties": "/api/specify/agentspecialty/?agent=11", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=11", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "T", - "groups": "/api/specify/groupperson/?group=11", - "guid": null, - "id": "11", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Martin", - "members": "/api/specify/groupperson/?member=11", - "middleinitial": null, - "modifiedbyagent": "/api/specify/agent/2/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=11", - "remarks": "", - "resource_uri": "/api/specify/agent/11/", - "specifyuser": null, - "timestampcreated": "2001-05-03T11:18:06", - "timestampmodified": "2001-05-03T11:18:06", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=11", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=12", - "agentattachments": "/api/specify/agentattachment/?agent=12", - "agentgeographies": "/api/specify/agentgeography/?agent=12", - "agentspecialties": "/api/specify/agentspecialty/?agent=12", - "agenttype": 2, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=12", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": null, - "groups": "/api/specify/groupperson/?group=12", - "guid": null, - "id": "12", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Fenton Carbine", - "members": "/api/specify/groupperson/?member=12", - "middleinitial": null, - "modifiedbyagent": "/api/specify/agent/2/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=12", - "remarks": "", - "resource_uri": "/api/specify/agent/12/", - "specifyuser": null, - "timestampcreated": "1999-10-22T05:11:08", - "timestampmodified": "1999-10-22T05:11:08", - "title": null, - "url": null, - "variants": "/api/specify/agentvariant/?agent=12", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=13", - "agentattachments": "/api/specify/agentattachment/?agent=13", - "agentgeographies": "/api/specify/agentgeography/?agent=13", - "agentspecialties": "/api/specify/agentspecialty/?agent=13", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=13", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "Stirling", - "groups": "/api/specify/groupperson/?group=13", - "guid": null, - "id": "13", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Robertson", - "members": "/api/specify/groupperson/?member=13", - "middleinitial": "J", - "modifiedbyagent": "/api/specify/agent/1503/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=13", - "remarks": "", - "resource_uri": "/api/specify/agent/13/", - "specifyuser": null, - "timestampcreated": "2002-02-25T02:12:45", - "timestampmodified": "2002-02-25T02:12:45", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=13", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=14", - "agentattachments": "/api/specify/agentattachment/?agent=14", - "agentgeographies": "/api/specify/agentgeography/?agent=14", - "agentspecialties": "/api/specify/agentspecialty/?agent=14", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=14", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "R", - "groups": "/api/specify/groupperson/?group=14", - "guid": null, - "id": "14", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Le Duc", - "members": "/api/specify/groupperson/?member=14", - "middleinitial": null, - "modifiedbyagent": "/api/specify/agent/1503/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=14", - "remarks": "", - "resource_uri": "/api/specify/agent/14/", - "specifyuser": null, - "timestampcreated": "2001-05-02T11:50:29", - "timestampmodified": "2001-05-02T11:50:29", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=14", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=15", - "agentattachments": "/api/specify/agentattachment/?agent=15", - "agentgeographies": "/api/specify/agentgeography/?agent=15", - "agentspecialties": "/api/specify/agentspecialty/?agent=15", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=15", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "S", - "groups": "/api/specify/groupperson/?group=15", - "guid": null, - "id": "15", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Ahuja", - "members": "/api/specify/groupperson/?member=15", - "middleinitial": "K", - "modifiedbyagent": "/api/specify/agent/1503/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=15", - "remarks": "", - "resource_uri": "/api/specify/agent/15/", - "specifyuser": null, - "timestampcreated": "2001-04-24T01:45:25", - "timestampmodified": "2001-04-24T01:45:25", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=15", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=16", - "agentattachments": "/api/specify/agentattachment/?agent=16", - "agentgeographies": "/api/specify/agentgeography/?agent=16", - "agentspecialties": "/api/specify/agentspecialty/?agent=16", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=16", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "N", - "groups": "/api/specify/groupperson/?group=16", - "guid": null, - "id": "16", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Dean", - "members": "/api/specify/groupperson/?member=16", - "middleinitial": "K", - "modifiedbyagent": "/api/specify/agent/1503/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=16", - "remarks": "", - "resource_uri": "/api/specify/agent/16/", - "specifyuser": null, - "timestampcreated": "2001-04-25T04:36:18", - "timestampmodified": "2001-04-25T04:36:18", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=16", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=17", - "agentattachments": "/api/specify/agentattachment/?agent=17", - "agentgeographies": "/api/specify/agentgeography/?agent=17", - "agentspecialties": "/api/specify/agentspecialty/?agent=17", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=17", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "Douglas", - "groups": "/api/specify/groupperson/?group=17", - "guid": null, - "id": "17", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Hobden", - "members": "/api/specify/groupperson/?member=17", - "middleinitial": null, - "modifiedbyagent": "/api/specify/agent/1503/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=17", - "remarks": "", - "resource_uri": "/api/specify/agent/17/", - "specifyuser": null, - "timestampcreated": "2011-03-22T02:46:11", - "timestampmodified": "2011-03-22T02:46:11", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=17", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=18", - "agentattachments": "/api/specify/agentattachment/?agent=18", - "agentgeographies": "/api/specify/agentgeography/?agent=18", - "agentspecialties": "/api/specify/agentspecialty/?agent=18", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=18", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "J", - "groups": "/api/specify/groupperson/?group=18", - "guid": null, - "id": "18", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Vial", - "members": "/api/specify/groupperson/?member=18", - "middleinitial": null, - "modifiedbyagent": "/api/specify/agent/2/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=18", - "remarks": "", - "resource_uri": "/api/specify/agent/18/", - "specifyuser": null, - "timestampcreated": "2003-03-04T05:03:40", - "timestampmodified": "2003-03-04T05:03:43", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=18", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=19", - "agentattachments": "/api/specify/agentattachment/?agent=19", - "agentgeographies": "/api/specify/agentgeography/?agent=19", - "agentspecialties": "/api/specify/agentspecialty/?agent=19", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=19", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "R", - "groups": "/api/specify/groupperson/?group=19", - "guid": null, - "id": "19", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Manning", - "members": "/api/specify/groupperson/?member=19", - "middleinitial": "B", - "modifiedbyagent": "/api/specify/agent/2/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=19", - "remarks": "", - "resource_uri": "/api/specify/agent/19/", - "specifyuser": null, - "timestampcreated": "2002-09-10T10:51:10", - "timestampmodified": "2002-09-10T10:51:14", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=19", - "version": 0}, - {"abbreviation": null, - "addresses": "/api/specify/address/?agent=20", - "agentattachments": "/api/specify/agentattachment/?agent=20", - "agentgeographies": "/api/specify/agentgeography/?agent=20", - "agentspecialties": "/api/specify/agentspecialty/?agent=20", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=20", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "R", - "groups": "/api/specify/groupperson/?group=20", - "guid": null, - "id": "20", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Kazmaier", - "members": "/api/specify/groupperson/?member=20", - "middleinitial": null, - "modifiedbyagent": "/api/specify/agent/2/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=20", - "remarks": "", - "resource_uri": "/api/specify/agent/20/", - "specifyuser": null, - "timestampcreated": "2001-04-27T01:35:14", - "timestampmodified": "2001-04-27T01:35:14", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=20", - "version": 0}]} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/agent.offset=1980&limit=20.json b/specifyweb/frontend/js_src/lib/tests/fixtures/agent.offset=1980&limit=20.json deleted file mode 100644 index 3b721c59e37..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/agent.offset=1980&limit=20.json +++ /dev/null @@ -1,6 +0,0 @@ -{"meta": {"limit": 20, - "next": null, - "offset": 1980, - "previous": "/api/specify/agent/?offset=1960&limit=20&format=json", - "total_count": 1970}, - "objects": []} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectingevent.715.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectingevent.715.json deleted file mode 100644 index 250a084d659..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectingevent.715.json +++ /dev/null @@ -1,44 +0,0 @@ -{"collectors": [{"collectingevent": "/api/specify/collectingevent/715/", - "division": "/api/specify/division/2/", - "ordernumber": 0, - "modifiedbyagent": "/api/specify/agent/1514/", - "agent": "/api/specify/agent/526/", - "timestampcreated": "2005-05-03T02:21:54", - "version": 0, - "timestampmodified": "2005-05-03T02:21:54", - "remarks": null, - "createdbyagent": "/api/specify/agent/1/", - "isprimary": true, - "id": 1915, - "resource_uri": "/api/specify/collector/1915/"}], - "collectionobjects": "/api/specify/collectionobject/?collectingevent=715", - "collectingeventattribute": null, - "startdateprecision": 1, - "collectingtrip": null, - "guid": "71dbdf31-febe-11e2-82ac-bc305ba00e24", - "verbatimlocality": null, - "collectingeventattrs": [], - "discipline": "/api/specify/discipline/3/", - "startdate": "1911-06-20", - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "id": 715, - "timestampcreated": "2005-05-03T02:22:34", - "version": 1, - "timestampmodified": "2005-05-03T02:22:34", - "stationfieldnumber": "KUBS 733", - "visibilitysetby": null, - "enddateverbatim": null, - "enddateprecision": 1, - "visibility": 4, - "locality": "/api/specify/locality/6051/", - "verbatimdate": null, - "remarks": null, - "endtime": null, - "enddate": "1911-06-20", - "startdateverbatim": null, - "method": null, - "createdbyagent": "/api/specify/agent/1/", - "starttime": null, - "collectingeventattachments": [], - "resource_uri": "/api/specify/collectingevent/715/"} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectingevent.724.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectingevent.724.json deleted file mode 100644 index 6f6b70a8307..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectingevent.724.json +++ /dev/null @@ -1,44 +0,0 @@ -{"collectors": [{"collectingevent": "/api/specify/collectingevent/724/", - "division": "/api/specify/division/2/", - "ordernumber": 0, - "modifiedbyagent": "/api/specify/agent/66/", - "agent": "/api/specify/agent/637/", - "timestampcreated": "2001-04-24T09:22:44", - "version": 0, - "timestampmodified": "2004-04-29T12:04:37", - "remarks": null, - "createdbyagent": "/api/specify/agent/1/", - "isprimary": true, - "id": 419, - "resource_uri": "/api/specify/collector/419/"}], - "collectionobjects": "/api/specify/collectionobject/?collectingevent=724", - "collectingeventattribute": null, - "startdateprecision": 1, - "collectingtrip": null, - "guid": "71dbe7c7-febe-11e2-82ac-bc305ba00e24", - "verbatimlocality": null, - "collectingeventattrs": [], - "discipline": "/api/specify/discipline/3/", - "startdate": "2003-06-25", - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/66/", - "id": 724, - "timestampcreated": "2004-12-15T03:36:26", - "version": 1, - "timestampmodified": "2004-12-15T03:36:26", - "stationfieldnumber": "077-PBLA-03", - "visibilitysetby": null, - "enddateverbatim": null, - "enddateprecision": 1, - "visibility": 4, - "locality": "/api/specify/locality/7323/", - "verbatimdate": null, - "remarks": null, - "endtime": null, - "enddate": "2003-06-25", - "startdateverbatim": null, - "method": "seines & shocker", - "createdbyagent": "/api/specify/agent/1/", - "starttime": null, - "collectingeventattachments": [], - "resource_uri": "/api/specify/collectingevent/724/"} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.4.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collection.4.json deleted file mode 100644 index bc18f9152d1..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.4.json +++ /dev/null @@ -1,36 +0,0 @@ - -{"catalognumformatname": "CatalogNumberNumeric", - "code": null, - "collectionname": "Main", - "collectiontype": null, - "contentcontacts": "/api/specify/agent/?collcontentcontact=4", - "createdbyagent": "/api/specify/agent/1/", - "dbcontentversion": null, - "description": "", - "developmentstatus": null, - "discipline": "/api/specify/discipline/3/", - "estimatedsize": null, - "id": "4", - "institutionnetwork": null, - "institutiontype": null, - "isanumber": null, - "isembeddedcollectingevent": false, - "kingdomcoverage": null, - "leftsidereltypes": "/api/specify/collectionreltype/?leftsidecollection=4", - "modifiedbyagent": "/api/specify/agent/2/", - "picklists": "/api/specify/picklist/?collection=4", - "preptypes": "/api/specify/preptype/?collection=4", - "preservationmethodtype": null, - "primaryfocus": null, - "primarypurpose": null, - "regnumber": "1336074606.29", - "remarks": "", - "resource_uri": "/api/specify/collection/4/", - "rightsidereltypes": "/api/specify/collectionreltype/?rightsidecollection=4", - "scope": "", - "technicalcontacts": "/api/specify/agent/?colltechcontact=4", - "timestampcreated": "2012-02-22T12:50:42", - "timestampmodified": "2012-07-05T16:00:34", - "version": 34, - "webportaluri": null, - "websiteuri": null} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=0&limit=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=0&limit=0.json deleted file mode 100644 index 39a1e81934a..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=0&limit=0.json +++ /dev/null @@ -1,73 +0,0 @@ -{"objects": [{"code": null, - "technicalcontacts": "/api/specify/agent/?colltechcontact=4", - "institutiontype": null, - "isembeddedcollectingevent": false, - "catalognumformatname": "CatalogNumberNumeric", - "websiteuri": null, - "isanumber": null, - "leftsidereltypes": "/api/specify/collectionreltype/?leftsidecollection=4", - "id": 4, - "discipline": "/api/specify/discipline/3/", - "estimatedsize": null, - "rightsidereltypes": "/api/specify/collectionreltype/?rightsidecollection=4", - "modifiedbyagent": "/api/specify/agent/2/", - "picklists": "/api/specify/picklist/?collection=4", - "timestampcreated": "2012-08-09T12:23:29", - "institutionnetwork": null, - "version": 36, - "timestampmodified": "2012-08-09T12:23:29", - "kingdomcoverage": null, - "scope": null, - "primaryfocus": null, - "developmentstatus": null, - "collectionname": "KUFishvoucher", - "description": null, - "dbcontentversion": null, - "regnumber": "1344636812.84", - "remarks": null, - "contentcontacts": "/api/specify/agent/?collcontentcontact=4", - "collectiontype": null, - "webportaluri": null, - "preptypes": "/api/specify/preptype/?collection=4", - "createdbyagent": "/api/specify/agent/1/", - "preservationmethodtype": null, - "primarypurpose": null, - "resource_uri": "/api/specify/collection/4/"}, - {"code": "T", - "technicalcontacts": "/api/specify/agent/?colltechcontact=32768", - "institutiontype": null, - "isembeddedcollectingevent": false, - "catalognumformatname": "CatalogNumberNumeric", - "websiteuri": null, - "isanumber": null, - "leftsidereltypes": "/api/specify/collectionreltype/?leftsidecollection=32768", - "id": 32768, - "discipline": "/api/specify/discipline/3/", - "estimatedsize": 0, - "rightsidereltypes": "/api/specify/collectionreltype/?rightsidecollection=32768", - "modifiedbyagent": null, - "picklists": "/api/specify/picklist/?collection=32768", - "timestampcreated": "2012-08-10T16:13:03", - "institutionnetwork": null, - "version": 4, - "timestampmodified": "2012-08-10T16:13:03", - "kingdomcoverage": null, - "scope": null, - "primaryfocus": null, - "developmentstatus": null, - "collectionname": "KUFishtissue", - "description": null, - "dbcontentversion": null, - "regnumber": "1349105311.49", - "remarks": null, - "contentcontacts": "/api/specify/agent/?collcontentcontact=32768", - "collectiontype": null, - "webportaluri": null, - "preptypes": "/api/specify/preptype/?collection=32768", - "createdbyagent": "/api/specify/agent/3/", - "preservationmethodtype": null, - "primarypurpose": null, - "resource_uri": "/api/specify/collection/32768/"}], - "meta": {"total_count": 2, - "limit": 20, - "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=0.json deleted file mode 100644 index 39a1e81934a..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=0.json +++ /dev/null @@ -1,73 +0,0 @@ -{"objects": [{"code": null, - "technicalcontacts": "/api/specify/agent/?colltechcontact=4", - "institutiontype": null, - "isembeddedcollectingevent": false, - "catalognumformatname": "CatalogNumberNumeric", - "websiteuri": null, - "isanumber": null, - "leftsidereltypes": "/api/specify/collectionreltype/?leftsidecollection=4", - "id": 4, - "discipline": "/api/specify/discipline/3/", - "estimatedsize": null, - "rightsidereltypes": "/api/specify/collectionreltype/?rightsidecollection=4", - "modifiedbyagent": "/api/specify/agent/2/", - "picklists": "/api/specify/picklist/?collection=4", - "timestampcreated": "2012-08-09T12:23:29", - "institutionnetwork": null, - "version": 36, - "timestampmodified": "2012-08-09T12:23:29", - "kingdomcoverage": null, - "scope": null, - "primaryfocus": null, - "developmentstatus": null, - "collectionname": "KUFishvoucher", - "description": null, - "dbcontentversion": null, - "regnumber": "1344636812.84", - "remarks": null, - "contentcontacts": "/api/specify/agent/?collcontentcontact=4", - "collectiontype": null, - "webportaluri": null, - "preptypes": "/api/specify/preptype/?collection=4", - "createdbyagent": "/api/specify/agent/1/", - "preservationmethodtype": null, - "primarypurpose": null, - "resource_uri": "/api/specify/collection/4/"}, - {"code": "T", - "technicalcontacts": "/api/specify/agent/?colltechcontact=32768", - "institutiontype": null, - "isembeddedcollectingevent": false, - "catalognumformatname": "CatalogNumberNumeric", - "websiteuri": null, - "isanumber": null, - "leftsidereltypes": "/api/specify/collectionreltype/?leftsidecollection=32768", - "id": 32768, - "discipline": "/api/specify/discipline/3/", - "estimatedsize": 0, - "rightsidereltypes": "/api/specify/collectionreltype/?rightsidecollection=32768", - "modifiedbyagent": null, - "picklists": "/api/specify/picklist/?collection=32768", - "timestampcreated": "2012-08-10T16:13:03", - "institutionnetwork": null, - "version": 4, - "timestampmodified": "2012-08-10T16:13:03", - "kingdomcoverage": null, - "scope": null, - "primaryfocus": null, - "developmentstatus": null, - "collectionname": "KUFishtissue", - "description": null, - "dbcontentversion": null, - "regnumber": "1349105311.49", - "remarks": null, - "contentcontacts": "/api/specify/agent/?collcontentcontact=32768", - "collectiontype": null, - "webportaluri": null, - "preptypes": "/api/specify/preptype/?collection=32768", - "createdbyagent": "/api/specify/agent/3/", - "preservationmethodtype": null, - "primarypurpose": null, - "resource_uri": "/api/specify/collection/32768/"}], - "meta": {"total_count": 2, - "limit": 20, - "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=2&limit=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=2&limit=0.json deleted file mode 100644 index 953f5082498..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=2&limit=0.json +++ /dev/null @@ -1 +0,0 @@ -{"objects": [], "meta": {"total_count": 2, "limit": 20, "offset": 2}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=2.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=2.json deleted file mode 100644 index 953f5082498..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline=3&offset=2.json +++ /dev/null @@ -1 +0,0 @@ -{"objects": [], "meta": {"total_count": 2, "limit": 20, "offset": 2}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline__division=2&offset=0&limit=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline__division=2&offset=0&limit=0.json deleted file mode 100644 index 39a1e81934a..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline__division=2&offset=0&limit=0.json +++ /dev/null @@ -1,73 +0,0 @@ -{"objects": [{"code": null, - "technicalcontacts": "/api/specify/agent/?colltechcontact=4", - "institutiontype": null, - "isembeddedcollectingevent": false, - "catalognumformatname": "CatalogNumberNumeric", - "websiteuri": null, - "isanumber": null, - "leftsidereltypes": "/api/specify/collectionreltype/?leftsidecollection=4", - "id": 4, - "discipline": "/api/specify/discipline/3/", - "estimatedsize": null, - "rightsidereltypes": "/api/specify/collectionreltype/?rightsidecollection=4", - "modifiedbyagent": "/api/specify/agent/2/", - "picklists": "/api/specify/picklist/?collection=4", - "timestampcreated": "2012-08-09T12:23:29", - "institutionnetwork": null, - "version": 36, - "timestampmodified": "2012-08-09T12:23:29", - "kingdomcoverage": null, - "scope": null, - "primaryfocus": null, - "developmentstatus": null, - "collectionname": "KUFishvoucher", - "description": null, - "dbcontentversion": null, - "regnumber": "1344636812.84", - "remarks": null, - "contentcontacts": "/api/specify/agent/?collcontentcontact=4", - "collectiontype": null, - "webportaluri": null, - "preptypes": "/api/specify/preptype/?collection=4", - "createdbyagent": "/api/specify/agent/1/", - "preservationmethodtype": null, - "primarypurpose": null, - "resource_uri": "/api/specify/collection/4/"}, - {"code": "T", - "technicalcontacts": "/api/specify/agent/?colltechcontact=32768", - "institutiontype": null, - "isembeddedcollectingevent": false, - "catalognumformatname": "CatalogNumberNumeric", - "websiteuri": null, - "isanumber": null, - "leftsidereltypes": "/api/specify/collectionreltype/?leftsidecollection=32768", - "id": 32768, - "discipline": "/api/specify/discipline/3/", - "estimatedsize": 0, - "rightsidereltypes": "/api/specify/collectionreltype/?rightsidecollection=32768", - "modifiedbyagent": null, - "picklists": "/api/specify/picklist/?collection=32768", - "timestampcreated": "2012-08-10T16:13:03", - "institutionnetwork": null, - "version": 4, - "timestampmodified": "2012-08-10T16:13:03", - "kingdomcoverage": null, - "scope": null, - "primaryfocus": null, - "developmentstatus": null, - "collectionname": "KUFishtissue", - "description": null, - "dbcontentversion": null, - "regnumber": "1349105311.49", - "remarks": null, - "contentcontacts": "/api/specify/agent/?collcontentcontact=32768", - "collectiontype": null, - "webportaluri": null, - "preptypes": "/api/specify/preptype/?collection=32768", - "createdbyagent": "/api/specify/agent/3/", - "preservationmethodtype": null, - "primarypurpose": null, - "resource_uri": "/api/specify/collection/32768/"}], - "meta": {"total_count": 2, - "limit": 20, - "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline__division=2&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline__division=2&offset=0.json deleted file mode 100644 index 39a1e81934a..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collection.discipline__division=2&offset=0.json +++ /dev/null @@ -1,73 +0,0 @@ -{"objects": [{"code": null, - "technicalcontacts": "/api/specify/agent/?colltechcontact=4", - "institutiontype": null, - "isembeddedcollectingevent": false, - "catalognumformatname": "CatalogNumberNumeric", - "websiteuri": null, - "isanumber": null, - "leftsidereltypes": "/api/specify/collectionreltype/?leftsidecollection=4", - "id": 4, - "discipline": "/api/specify/discipline/3/", - "estimatedsize": null, - "rightsidereltypes": "/api/specify/collectionreltype/?rightsidecollection=4", - "modifiedbyagent": "/api/specify/agent/2/", - "picklists": "/api/specify/picklist/?collection=4", - "timestampcreated": "2012-08-09T12:23:29", - "institutionnetwork": null, - "version": 36, - "timestampmodified": "2012-08-09T12:23:29", - "kingdomcoverage": null, - "scope": null, - "primaryfocus": null, - "developmentstatus": null, - "collectionname": "KUFishvoucher", - "description": null, - "dbcontentversion": null, - "regnumber": "1344636812.84", - "remarks": null, - "contentcontacts": "/api/specify/agent/?collcontentcontact=4", - "collectiontype": null, - "webportaluri": null, - "preptypes": "/api/specify/preptype/?collection=4", - "createdbyagent": "/api/specify/agent/1/", - "preservationmethodtype": null, - "primarypurpose": null, - "resource_uri": "/api/specify/collection/4/"}, - {"code": "T", - "technicalcontacts": "/api/specify/agent/?colltechcontact=32768", - "institutiontype": null, - "isembeddedcollectingevent": false, - "catalognumformatname": "CatalogNumberNumeric", - "websiteuri": null, - "isanumber": null, - "leftsidereltypes": "/api/specify/collectionreltype/?leftsidecollection=32768", - "id": 32768, - "discipline": "/api/specify/discipline/3/", - "estimatedsize": 0, - "rightsidereltypes": "/api/specify/collectionreltype/?rightsidecollection=32768", - "modifiedbyagent": null, - "picklists": "/api/specify/picklist/?collection=32768", - "timestampcreated": "2012-08-10T16:13:03", - "institutionnetwork": null, - "version": 4, - "timestampmodified": "2012-08-10T16:13:03", - "kingdomcoverage": null, - "scope": null, - "primaryfocus": null, - "developmentstatus": null, - "collectionname": "KUFishtissue", - "description": null, - "dbcontentversion": null, - "regnumber": "1349105311.49", - "remarks": null, - "contentcontacts": "/api/specify/agent/?collcontentcontact=32768", - "collectiontype": null, - "webportaluri": null, - "preptypes": "/api/specify/preptype/?collection=32768", - "createdbyagent": "/api/specify/agent/3/", - "preservationmethodtype": null, - "primarypurpose": null, - "resource_uri": "/api/specify/collection/32768/"}], - "meta": {"total_count": 2, - "limit": 20, - "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.100.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.100.json deleted file mode 100644 index 4c175eaea42..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.100.json +++ /dev/null @@ -1,206 +0,0 @@ -{"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=20462", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=20462", - "id": 20462, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/100/", - "modifiedbyagent": "/api/specify/agent/66/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-09-09T14:04:16", - "version": 0, - "timestampmodified": "2004-11-12T11:25:09", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=20462", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=20462", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=20462", - "resource_uri": "/api/specify/preparation/20462/"}], - "accession": "/api/specify/accession/1/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=100", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000035394", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/66/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 100, - "timestampcreated": "2003-09-09T02:04:24", - "yesno4": null, - "version": 0, - "timestampmodified": "2004-12-15T03:40:24", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/10397/", - "subspqualifier": null, - "guid": "74af2539-febe-11e2-82ac-bc305ba00e24", - "id": 3911, - "preferredtaxon": "/api/specify/taxon/10397/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/100/", - "modifiedbyagent": "/api/specify/agent/66/", - "timestampcreated": "2003-09-09T14:04:24", - "version": 1, - "timestampmodified": "2004-12-15T15:40:24", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "2004-12-15", - "featureorbasis": null, - "determiner": "/api/specify/agent/66/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/3911/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/724/", - "catalogeddate": "2004-12-15", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 42395, - "number42": null, - "timestampcreated": "2003-09-09T14:04:24", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "32mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/42395/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=42395", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=100", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/66/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/100/"} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.102.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.102.json deleted file mode 100644 index 0790fe857a7..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.102.json +++ /dev/null @@ -1,217 +0,0 @@ -{"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=3752", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=3752", - "id": 3752, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/102/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2005-12-02T16:19:08", - "version": 1, - "timestampmodified": "2005-12-02T16:19:08", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=3752", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=3752", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=3752", - "resource_uri": "/api/specify/preparation/3752/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=102", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000037799", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/102/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:24", - "version": 0, - "timestampmodified": "2012-10-03T14:44:24", - "attachment": "/api/specify/attachment/104/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 104, - "resource_uri": "/api/specify/collectionobjectattachment/104/"}], - "id": 102, - "timestampcreated": "2005-12-02T04:28:07", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T04:21:24", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14040/", - "subspqualifier": null, - "guid": "785f26d5-febe-11e2-82ac-bc305ba00e24", - "id": 40308, - "preferredtaxon": "/api/specify/taxon/14040/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/102/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2005-12-02T16:28:07", - "version": 1, - "timestampmodified": "2007-12-05T16:21:24", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "2005-08-30", - "featureorbasis": null, - "determiner": "/api/specify/agent/847/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/40308/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/874/", - "catalogeddate": "2005-12-02", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40291, - "number42": null, - "timestampcreated": "2005-12-02T04:28:07", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "40mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40291/", - "number8": null, - "number9": null, - "text2": "4805", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40291", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=102", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/102/"} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.1748.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.1748.json deleted file mode 100644 index b600a1c7477..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.1748.json +++ /dev/null @@ -1,206 +0,0 @@ -{"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=13010", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=13010", - "id": 13010, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1748/", - "modifiedbyagent": "/api/specify/agent/66/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-09-09T14:04:16", - "version": 0, - "timestampmodified": "2005-06-23T14:46:48", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=13010", - "countamt": 26, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=13010", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=13010", - "resource_uri": "/api/specify/preparation/13010/"}], - "accession": "/api/specify/accession/19/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1748", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000036666", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/66/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 1748, - "timestampcreated": "2003-09-09T02:04:24", - "yesno4": null, - "version": 0, - "timestampmodified": "2005-06-23T02:46:49", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11003/", - "subspqualifier": null, - "guid": "784c3027-febe-11e2-82ac-bc305ba00e24", - "id": 37623, - "preferredtaxon": "/api/specify/taxon/11003/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1748/", - "modifiedbyagent": "/api/specify/agent/66/", - "timestampcreated": "2003-09-09T14:04:24", - "version": 1, - "timestampmodified": "2005-06-23T14:46:49", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "2005-06-23", - "featureorbasis": null, - "determiner": "/api/specify/agent/66/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/37623/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": null, - "catalogeddate": "2005-06-23", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 43472, - "number42": null, - "timestampcreated": "2003-09-09T14:04:24", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "18-45mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/43472/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=43472", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1748", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/66/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1748/"} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=1&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=1&offset=0.json deleted file mode 100644 index 3e7f9b6efe5..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=1&offset=0.json +++ /dev/null @@ -1,6 +0,0 @@ -{"meta": {"limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total_count": 0}, - "objects": []} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=3&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=3&offset=0.json deleted file mode 100644 index a53a81f0fb6..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=3&offset=0.json +++ /dev/null @@ -1,2975 +0,0 @@ -{"objects": [{"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=37924", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=37924", - "id": 37924, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/744/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=37924", - "countamt": 3, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=37924", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=37924", - "resource_uri": "/api/specify/preparation/37924/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=744", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000029776", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 744, - "timestampcreated": "2002-03-06T11:36:32", - "yesno4": null, - "version": 0, - "timestampmodified": "2002-03-06T11:41:24", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11940/", - "subspqualifier": null, - "guid": "74c4fdb9-febe-11e2-82ac-bc305ba00e24", - "id": 6592, - "preferredtaxon": "/api/specify/taxon/11940/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/744/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2002-03-06T11:36:32", - "version": 1, - "timestampmodified": "2002-03-06T11:41:24", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "1997-01-01", - "featureorbasis": null, - "determiner": "/api/specify/agent/1642/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/6592/", - "determineddateprecision": 3, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9401/", - "catalogeddate": "2002-03-06", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 143, - "number42": null, - "timestampcreated": "2002-03-06T11:36:32", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "71-75mm SL", - "text12": null, - "number37": 3.0, - "timestampmodified": "2002-03-06T11:41:24", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/143/", - "number8": null, - "number9": null, - "text2": "1893, 1894, 1895", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=143", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=744", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/744/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=19606", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=19606", - "id": 19606, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1958/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=19606", - "countamt": 3, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=19606", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=19606", - "resource_uri": "/api/specify/preparation/19606/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1958", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000029775", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 1958, - "timestampcreated": "2002-03-06T11:36:28", - "yesno4": null, - "version": 0, - "timestampmodified": "2002-03-06T11:41:09", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11940/", - "subspqualifier": null, - "guid": "7510c579-febe-11e2-82ac-bc305ba00e24", - "id": 7684, - "preferredtaxon": "/api/specify/taxon/11940/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1958/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2002-03-06T11:36:28", - "version": 1, - "timestampmodified": "2002-03-06T11:41:09", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "1997-01-01", - "featureorbasis": null, - "determiner": "/api/specify/agent/1642/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/7684/", - "determineddateprecision": 3, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1054/", - "catalogeddate": "2002-03-06", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 378, - "number42": null, - "timestampcreated": "2002-03-06T11:36:28", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "68-74mm SL", - "text12": null, - "number37": 3.0, - "timestampmodified": "2002-03-06T11:41:09", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/378/", - "number8": null, - "number9": null, - "text2": "1890, 1891, 1892", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=378", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1958", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1958/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=16956", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=16956", - "id": 16956, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/39081/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:55", - "version": 0, - "timestampmodified": "2002-07-29T16:08:55", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=16956", - "countamt": 3, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=16956", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=16956", - "resource_uri": "/api/specify/preparation/16956/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=39081", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000029777", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 39081, - "timestampcreated": "2002-03-06T11:37:09", - "yesno4": null, - "version": 0, - "timestampmodified": "2002-03-06T11:41:45", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11627/", - "subspqualifier": null, - "guid": "73f5f932-febe-11e2-82ac-bc305ba00e24", - "id": 3162, - "preferredtaxon": "/api/specify/taxon/11627/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/39081/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2002-03-06T11:37:09", - "version": 1, - "timestampmodified": "2002-03-06T11:41:45", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "1997-01-01", - "featureorbasis": null, - "determiner": "/api/specify/agent/1642/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/3162/", - "determineddateprecision": 3, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/765/", - "catalogeddate": "2002-03-06", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 29569, - "number42": null, - "timestampcreated": "2002-03-06T11:37:09", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "135-197mm SL", - "text12": null, - "number37": 3.0, - "timestampmodified": "2002-03-06T11:41:45", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/29569/", - "number8": null, - "number9": null, - "text2": "1896, 1897, 1898", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=29569", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=39081", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/39081/"}, - {"deaccessioned": null, - "dnasequences": [{"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": null, - "targetmarker": null, - "sequencer": null, - "id": 17667, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43121/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-08-22T17:02:22", - "version": 0, - "timestampmodified": null, - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": null, - "collectionmemberid": 32768, - "compg": null, - "ambiguousresidues": null, - "text2": "AY308766 ", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": null, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "Rag1", - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/dnasequence/17667/", - "totalresidues": null}], - "preparations": [{"storagelocation": "KU 29775", - "loanpreparations": "/api/specify/loanpreparation/?preparation=45422", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=45422", - "id": 45422, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/43121/", - "modifiedbyagent": "/api/specify/agent/2151/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2001-11-28T08:27:56", - "version": 0, - "timestampmodified": "2001-11-28T00:00:00", - "yesno3": null, - "yesno1": false, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 32768, - "description": null, - "text2": null, - "text1": "B15", - "number2": null, - "number1": 1.0, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=45422", - "countamt": 100, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=45422", - "createdbyagent": "/api/specify/agent/1986/", - "preptype": "/api/specify/preptype/15/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=45422", - "resource_uri": "/api/specify/preparation/45422/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=43121", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 32768, - "otheridentifiers": [], - "catalognumber": "000001890", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 43121, - "timestampcreated": "2000-03-15T03:33:43", - "yesno4": null, - "version": 0, - "timestampmodified": "2011-06-29T03:25:27", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11940/", - "subspqualifier": null, - "guid": "7920da9e-febe-11e2-82ac-bc305ba00e24", - "id": 49049, - "preferredtaxon": "/api/specify/taxon/11940/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/43121/", - "modifiedbyagent": "/api/specify/agent/2151/", - "timestampcreated": "2000-03-15T15:42:36", - "version": 1, - "timestampmodified": "2011-06-29T15:25:27", - "yesno1": null, - "yesno2": null, - "alternatename": "Percopsis transmontana", - "method": null, - "collectionmemberid": 32768, - "qualifier": null, - "text2": "Percopsis transmontana", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/2011/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1986/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/49049/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1054/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 35312, - "number42": null, - "timestampcreated": "2009-08-26T01:04:05", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": "Frozen in liquid N2", - "text11": "70.8mm SL", - "text12": "Muscle", - "number37": null, - "timestampmodified": "2011-06-29T03:25:31", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 32768, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/35312/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1986/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=35312", - "text7": null}, - "text1": "K3", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=43121", - "number1": 1.0, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": "KUI_TISSUE_COLLECTION", - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [{"collectionmemberid": 4, - "isfigured": null, - "collectionobject": "/api/specify/collectionobject/43121/", - "modifiedbyagent": "/api/specify/agent/2151/", - "timestampcreated": "2009-08-26T01:04:01", - "version": 0, - "timestampmodified": "2009-08-26T01:04:01", - "referencework": "/api/specify/referencework/124/", - "remarks": null, - "createdbyagent": "/api/specify/agent/1986/", - "id": 882, - "resource_uri": "/api/specify/collectionobjectcitation/882/"}], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": "KU 29775", - "cataloger": "/api/specify/agent/2044/", - "collection": "/api/specify/collection/32768/", - "yesno6": null, - "modifier": "1997-IC-066", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1986/", - "resource_uri": "/api/specify/collectionobject/43121/"}, - {"deaccessioned": null, - "dnasequences": [{"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": 0, - "targetmarker": null, - "sequencer": null, - "id": 16683, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-08-22T17:02:22", - "version": 1, - "timestampmodified": null, - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": 0, - "collectionmemberid": 32768, - "compg": 0, - "ambiguousresidues": 0, - "text2": "FJ906686 ", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": 0, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "zic1", - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/dnasequence/16683/", - "totalresidues": 0}, - {"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": null, - "targetmarker": null, - "sequencer": null, - "id": 19543, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-08-22T17:02:22", - "version": 0, - "timestampmodified": null, - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": null, - "collectionmemberid": 32768, - "compg": null, - "ambiguousresidues": null, - "text2": "FJ918890 ", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": null, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "myh6", - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/dnasequence/19543/", - "totalresidues": null}, - {"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": 0, - "targetmarker": null, - "sequencer": "/api/specify/agent/2491/", - "id": 20228, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-12-04T09:09:47", - "version": 1, - "timestampmodified": "2012-12-04T09:09:47", - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": 0, - "collectionmemberid": 32768, - "compg": 0, - "ambiguousresidues": 0, - "text2": "JX459167", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": 0, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "plagl2", - "createdbyagent": "/api/specify/agent/2151/", - "resource_uri": "/api/specify/dnasequence/20228/", - "totalresidues": 0}, - {"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": 0, - "targetmarker": null, - "sequencer": "/api/specify/agent/2491/", - "id": 20229, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-12-04T09:12:17", - "version": 1, - "timestampmodified": "2012-12-04T09:12:17", - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": 0, - "collectionmemberid": 32768, - "compg": 0, - "ambiguousresidues": 0, - "text2": "JX459180", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": 0, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "myh6", - "createdbyagent": "/api/specify/agent/2151/", - "resource_uri": "/api/specify/dnasequence/20229/", - "totalresidues": 0}, - {"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": 0, - "targetmarker": null, - "sequencer": "/api/specify/agent/2491/", - "id": 20230, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-12-04T09:11:58", - "version": 1, - "timestampmodified": "2012-12-04T09:11:58", - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": 0, - "collectionmemberid": 32768, - "compg": 0, - "ambiguousresidues": 0, - "text2": "JX459194", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": 0, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "Rag1", - "createdbyagent": "/api/specify/agent/2151/", - "resource_uri": "/api/specify/dnasequence/20230/", - "totalresidues": 0}, - {"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": 0, - "targetmarker": null, - "sequencer": "/api/specify/agent/2491/", - "id": 20231, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-12-04T09:12:56", - "version": 1, - "timestampmodified": "2012-12-04T09:12:56", - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": 0, - "collectionmemberid": 32768, - "compg": 0, - "ambiguousresidues": 0, - "text2": "JX459116", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": 0, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "ptr", - "createdbyagent": "/api/specify/agent/2151/", - "resource_uri": "/api/specify/dnasequence/20231/", - "totalresidues": 0}, - {"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": 0, - "targetmarker": null, - "sequencer": "/api/specify/agent/2491/", - "id": 20232, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-12-04T09:12:36", - "version": 1, - "timestampmodified": "2012-12-04T09:12:36", - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": 0, - "collectionmemberid": 32768, - "compg": 0, - "ambiguousresidues": 0, - "text2": "JX459150", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": 0, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "SH3PX3", - "createdbyagent": "/api/specify/agent/2151/", - "resource_uri": "/api/specify/dnasequence/20232/", - "totalresidues": 0}, - {"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": 0, - "targetmarker": null, - "sequencer": "/api/specify/agent/2491/", - "id": 20233, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-12-04T09:11:43", - "version": 1, - "timestampmodified": "2012-12-04T09:11:43", - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": 0, - "collectionmemberid": 32768, - "compg": 0, - "ambiguousresidues": 0, - "text2": "JX459208", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": 0, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "ND2", - "createdbyagent": "/api/specify/agent/2151/", - "resource_uri": "/api/specify/dnasequence/20233/", - "totalresidues": 0}, - {"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": 0, - "targetmarker": null, - "sequencer": "/api/specify/agent/2491/", - "id": 20234, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-12-04T09:08:46", - "version": 1, - "timestampmodified": "2012-12-04T09:08:46", - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": 0, - "collectionmemberid": 32768, - "compg": 0, - "ambiguousresidues": 0, - "text2": "JX459236", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": 0, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "Rho", - "createdbyagent": "/api/specify/agent/2151/", - "resource_uri": "/api/specify/dnasequence/20234/", - "totalresidues": 0}, - {"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": 0, - "targetmarker": null, - "sequencer": "/api/specify/agent/2491/", - "id": 20235, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-12-04T09:13:16", - "version": 1, - "timestampmodified": "2012-12-04T09:13:16", - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": 0, - "collectionmemberid": 32768, - "compg": 0, - "ambiguousresidues": 0, - "text2": "JX459102", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": 0, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "tbr1", - "createdbyagent": "/api/specify/agent/2151/", - "resource_uri": "/api/specify/dnasequence/20235/", - "totalresidues": 0}, - {"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": 0, - "targetmarker": null, - "sequencer": "/api/specify/agent/2491/", - "id": 20236, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-12-04T09:10:31", - "version": 1, - "timestampmodified": "2012-12-04T09:10:31", - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": 0, - "collectionmemberid": 32768, - "compg": 0, - "ambiguousresidues": 0, - "text2": "JX459222", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": 0, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "S7", - "createdbyagent": "/api/specify/agent/2151/", - "resource_uri": "/api/specify/dnasequence/20236/", - "totalresidues": 0}, - {"genbankaccessionnumber": null, - "boldtranslationmatrix": null, - "compa": 0, - "targetmarker": null, - "sequencer": "/api/specify/agent/2491/", - "id": 20237, - "attachments": [], - "dnasequencingruns": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "genesequence": null, - "timestampcreated": "2012-12-04T09:10:05", - "version": 1, - "timestampmodified": "2012-12-04T09:10:05", - "yesno3": null, - "yesno1": null, - "boldsampleid": null, - "yesno2": null, - "compc": 0, - "collectionmemberid": 32768, - "compg": 0, - "ambiguousresidues": 0, - "text2": "JX459133", - "text3": null, - "text1": null, - "number2": null, - "number3": null, - "compt": 0, - "number1": null, - "remarks": null, - "boldbarcodeid": null, - "boldlastupdatedate": null, - "moleculetype": "zic1", - "createdbyagent": "/api/specify/agent/2151/", - "resource_uri": "/api/specify/dnasequence/20237/", - "totalresidues": 0}], - "preparations": [{"storagelocation": "KU 29775", - "loanpreparations": "/api/specify/loanpreparation/?preparation=46204", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=46204", - "id": 46204, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": "/api/specify/agent/2151/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-06-14T13:36:45", - "version": 1, - "timestampmodified": "2002-06-14T13:36:44", - "yesno3": null, - "yesno1": false, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 32768, - "description": null, - "text2": null, - "text1": "B15", - "number2": null, - "number1": 1.0, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=46204", - "countamt": 100, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=46204", - "createdbyagent": "/api/specify/agent/1986/", - "preptype": "/api/specify/preptype/15/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=46204", - "resource_uri": "/api/specify/preparation/46204/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=43122", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 32768, - "otheridentifiers": [], - "catalognumber": "000001891", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 43122, - "timestampcreated": "2000-03-15T03:33:43", - "yesno4": null, - "version": 1, - "timestampmodified": "2012-12-04T09:16:14", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11940/", - "subspqualifier": null, - "guid": "7920dbac-febe-11e2-82ac-bc305ba00e24", - "id": 49050, - "preferredtaxon": "/api/specify/taxon/11940/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": "/api/specify/agent/2151/", - "timestampcreated": "2000-03-15T15:42:36", - "version": 1, - "timestampmodified": "2011-06-29T15:25:36", - "yesno1": null, - "yesno2": null, - "alternatename": "Percopsis transmontana", - "method": null, - "collectionmemberid": 32768, - "qualifier": null, - "text2": "Percopsis transmontana", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/2011/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1986/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/49050/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1054/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 35313, - "number42": null, - "timestampcreated": "2009-09-14T04:13:11", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": "Frozen in liquid N2", - "text11": "74.1mm SL", - "text12": "Muscle", - "number37": null, - "timestampmodified": "2011-06-29T03:25:39", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 32768, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/35313/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1986/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=35313", - "text7": null}, - "text1": "K3", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=43122", - "number1": 1.0, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": "KUI_TISSUE_COLLECTION", - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [{"collectionmemberid": 4, - "isfigured": null, - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": "/api/specify/agent/2151/", - "timestampcreated": "2009-09-14T04:13:08", - "version": 0, - "timestampmodified": "2009-09-14T04:13:08", - "referencework": "/api/specify/referencework/149/", - "remarks": null, - "createdbyagent": "/api/specify/agent/1986/", - "id": 657, - "resource_uri": "/api/specify/collectionobjectcitation/657/"}, - {"collectionmemberid": 32768, - "isfigured": null, - "collectionobject": "/api/specify/collectionobject/43122/", - "modifiedbyagent": null, - "timestampcreated": "2012-12-04T09:13:49", - "version": 0, - "timestampmodified": "2012-12-04T09:13:49", - "referencework": "/api/specify/referencework/159/", - "remarks": null, - "createdbyagent": "/api/specify/agent/2151/", - "id": 1660, - "resource_uri": "/api/specify/collectionobjectcitation/1660/"}], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": "KU 29775", - "cataloger": "/api/specify/agent/2044/", - "collection": "/api/specify/collection/32768/", - "yesno6": null, - "modifier": "1997-IC-066", - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1986/", - "resource_uri": "/api/specify/collectionobject/43122/"}, - {"deaccessioned": null, - "dnasequences": [], - "preparations": [{"storagelocation": "KU 29775", - "loanpreparations": "/api/specify/loanpreparation/?preparation=49953", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=49953", - "id": 49953, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/43123/", - "modifiedbyagent": "/api/specify/agent/1987/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T10:25:28", - "version": 0, - "timestampmodified": "2002-07-29T10:25:28", - "yesno3": null, - "yesno1": false, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 32768, - "description": null, - "text2": null, - "text1": "B15", - "number2": null, - "number1": 1.0, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=49953", - "countamt": 100, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=49953", - "createdbyagent": "/api/specify/agent/1986/", - "preptype": "/api/specify/preptype/15/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=49953", - "resource_uri": "/api/specify/preparation/49953/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=43123", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 32768, - "otheridentifiers": [], - "catalognumber": "000001892", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 43123, - "timestampcreated": "2000-03-15T03:33:43", - "yesno4": null, - "version": 0, - "timestampmodified": "2011-06-29T03:25:46", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11940/", - "subspqualifier": null, - "guid": "7920dcbb-febe-11e2-82ac-bc305ba00e24", - "id": 49051, - "preferredtaxon": "/api/specify/taxon/11940/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/43123/", - "modifiedbyagent": "/api/specify/agent/2151/", - "timestampcreated": "2000-03-15T15:42:36", - "version": 1, - "timestampmodified": "2011-06-29T15:25:46", - "yesno1": null, - "yesno2": null, - "alternatename": "Percopsis transmontana", - "method": null, - "collectionmemberid": 32768, - "qualifier": null, - "text2": "Percopsis transmontana", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/2011/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1986/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/49051/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1054/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 35314, - "number42": null, - "timestampcreated": "2011-06-29T03:25:46", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": "Frozen in liquid N2", - "text11": "68.3mm SL", - "text12": "Muscle", - "number37": null, - "timestampmodified": "2011-06-29T03:25:46", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 32768, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/35314/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1986/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=35314", - "text7": null}, - "text1": "K3", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=43123", - "number1": 1.0, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": "KUI_TISSUE_COLLECTION", - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": "KU 29775", - "cataloger": "/api/specify/agent/2044/", - "collection": "/api/specify/collection/32768/", - "yesno6": null, - "modifier": "1997-IC-066", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1986/", - "resource_uri": "/api/specify/collectionobject/43123/"}, - {"deaccessioned": null, - "dnasequences": [], - "preparations": [{"storagelocation": "KU 29776", - "loanpreparations": "/api/specify/loanpreparation/?preparation=52880", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=52880", - "id": 52880, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/43124/", - "modifiedbyagent": "/api/specify/agent/1987/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T10:25:28", - "version": 0, - "timestampmodified": "2002-07-29T10:25:28", - "yesno3": null, - "yesno1": false, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 32768, - "description": null, - "text2": null, - "text1": "B15", - "number2": null, - "number1": 1.0, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=52880", - "countamt": 100, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=52880", - "createdbyagent": "/api/specify/agent/1986/", - "preptype": "/api/specify/preptype/15/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=52880", - "resource_uri": "/api/specify/preparation/52880/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=43124", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 32768, - "otheridentifiers": [], - "catalognumber": "000001893", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 43124, - "timestampcreated": "2000-03-15T03:33:43", - "yesno4": null, - "version": 0, - "timestampmodified": "2011-06-29T03:25:55", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11940/", - "subspqualifier": null, - "guid": "7920ddcb-febe-11e2-82ac-bc305ba00e24", - "id": 49052, - "preferredtaxon": "/api/specify/taxon/11940/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/43124/", - "modifiedbyagent": "/api/specify/agent/2151/", - "timestampcreated": "2000-03-15T15:42:36", - "version": 1, - "timestampmodified": "2011-06-29T15:25:55", - "yesno1": null, - "yesno2": null, - "alternatename": "Percopsis transmontana", - "method": null, - "collectionmemberid": 32768, - "qualifier": null, - "text2": "Percopsis transmontana", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/2011/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1986/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/49052/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9401/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 35315, - "number42": null, - "timestampcreated": "2011-06-29T03:25:56", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": "Frozen in liquid N2", - "text11": "75.4mm SL", - "text12": "Muscle", - "number37": null, - "timestampmodified": "2011-06-29T03:25:56", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 32768, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/35315/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1986/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=35315", - "text7": null}, - "text1": "K3", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=43124", - "number1": 1.0, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": "KUI_TISSUE_COLLECTION", - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": "KU 29776", - "cataloger": "/api/specify/agent/2044/", - "collection": "/api/specify/collection/32768/", - "yesno6": null, - "modifier": "1997-IC-066", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1986/", - "resource_uri": "/api/specify/collectionobject/43124/"}, - {"deaccessioned": null, - "dnasequences": [], - "preparations": [{"storagelocation": "KU 29776", - "loanpreparations": "/api/specify/loanpreparation/?preparation=46790", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=46790", - "id": 46790, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/43125/", - "modifiedbyagent": "/api/specify/agent/1987/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T10:25:28", - "version": 0, - "timestampmodified": "2002-07-29T10:25:28", - "yesno3": null, - "yesno1": false, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 32768, - "description": null, - "text2": null, - "text1": "B15", - "number2": null, - "number1": 1.0, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=46790", - "countamt": 100, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=46790", - "createdbyagent": "/api/specify/agent/1986/", - "preptype": "/api/specify/preptype/15/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=46790", - "resource_uri": "/api/specify/preparation/46790/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=43125", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 32768, - "otheridentifiers": [], - "catalognumber": "000001894", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 43125, - "timestampcreated": "2000-03-15T03:33:43", - "yesno4": null, - "version": 0, - "timestampmodified": "2011-06-29T03:26:03", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11940/", - "subspqualifier": null, - "guid": "7920ded9-febe-11e2-82ac-bc305ba00e24", - "id": 49053, - "preferredtaxon": "/api/specify/taxon/11940/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/43125/", - "modifiedbyagent": "/api/specify/agent/2151/", - "timestampcreated": "2000-03-15T15:42:36", - "version": 1, - "timestampmodified": "2011-06-29T15:26:03", - "yesno1": null, - "yesno2": null, - "alternatename": "Percopsis transmontana", - "method": null, - "collectionmemberid": 32768, - "qualifier": null, - "text2": "Percopsis transmontana", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/2011/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1986/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/49053/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9401/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 35316, - "number42": null, - "timestampcreated": "2011-06-29T03:26:04", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": "Frozen in liquid N2", - "text11": "71.6mm SL", - "text12": "Muscle", - "number37": null, - "timestampmodified": "2011-06-29T03:26:04", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 32768, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/35316/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1986/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=35316", - "text7": null}, - "text1": "K3", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=43125", - "number1": 1.0, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": "KUI_TISSUE_COLLECTION", - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": "KU 29776", - "cataloger": "/api/specify/agent/2044/", - "collection": "/api/specify/collection/32768/", - "yesno6": null, - "modifier": "1997-IC-066", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1986/", - "resource_uri": "/api/specify/collectionobject/43125/"}, - {"deaccessioned": null, - "dnasequences": [], - "preparations": [{"storagelocation": "KU 29776", - "loanpreparations": "/api/specify/loanpreparation/?preparation=45278", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=45278", - "id": 45278, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/43126/", - "modifiedbyagent": "/api/specify/agent/1987/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T10:25:28", - "version": 0, - "timestampmodified": "2002-07-29T10:25:28", - "yesno3": null, - "yesno1": false, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 32768, - "description": null, - "text2": null, - "text1": "B15", - "number2": null, - "number1": 1.0, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=45278", - "countamt": 100, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=45278", - "createdbyagent": "/api/specify/agent/1986/", - "preptype": "/api/specify/preptype/15/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=45278", - "resource_uri": "/api/specify/preparation/45278/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=43126", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 32768, - "otheridentifiers": [], - "catalognumber": "000001895", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 43126, - "timestampcreated": "2000-03-15T03:33:43", - "yesno4": null, - "version": 0, - "timestampmodified": "2011-06-29T03:26:10", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11940/", - "subspqualifier": null, - "guid": "7920dfee-febe-11e2-82ac-bc305ba00e24", - "id": 49054, - "preferredtaxon": "/api/specify/taxon/11940/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/43126/", - "modifiedbyagent": "/api/specify/agent/2151/", - "timestampcreated": "2000-03-15T15:42:36", - "version": 1, - "timestampmodified": "2011-06-29T15:26:10", - "yesno1": null, - "yesno2": null, - "alternatename": "Percopsis transmontana", - "method": null, - "collectionmemberid": 32768, - "qualifier": null, - "text2": "Percopsis transmontana", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/2011/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1986/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/49054/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9401/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 35317, - "number42": null, - "timestampcreated": "2011-06-29T03:26:12", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": "Frozen in liquid N2", - "text11": "74.0mm SL", - "text12": "Muscle", - "number37": null, - "timestampmodified": "2011-06-29T03:26:12", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 32768, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/35317/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1986/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=35317", - "text7": null}, - "text1": "K3", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=43126", - "number1": 1.0, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": "KUI_TISSUE_COLLECTION", - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": "KU 29776", - "cataloger": "/api/specify/agent/2044/", - "collection": "/api/specify/collection/32768/", - "yesno6": null, - "modifier": "1997-IC-066", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1986/", - "resource_uri": "/api/specify/collectionobject/43126/"}, - {"deaccessioned": null, - "dnasequences": [], - "preparations": [{"storagelocation": "KU 29777", - "loanpreparations": "/api/specify/loanpreparation/?preparation=51353", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=51353", - "id": 51353, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/43127/", - "modifiedbyagent": "/api/specify/agent/1987/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T10:25:28", - "version": 0, - "timestampmodified": "2002-07-29T10:25:28", - "yesno3": null, - "yesno1": false, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 32768, - "description": null, - "text2": null, - "text1": "C1", - "number2": null, - "number1": 1.0, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=51353", - "countamt": 100, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=51353", - "createdbyagent": "/api/specify/agent/1986/", - "preptype": "/api/specify/preptype/15/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=51353", - "resource_uri": "/api/specify/preparation/51353/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=43127", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 32768, - "otheridentifiers": [], - "catalognumber": "000001896", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 43127, - "timestampcreated": "2000-03-15T03:33:43", - "yesno4": null, - "version": 0, - "timestampmodified": "2011-06-29T03:26:18", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11627/", - "subspqualifier": null, - "guid": "7920e14d-febe-11e2-82ac-bc305ba00e24", - "id": 49055, - "preferredtaxon": "/api/specify/taxon/11627/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/43127/", - "modifiedbyagent": "/api/specify/agent/2151/", - "timestampcreated": "2000-03-15T15:42:36", - "version": 1, - "timestampmodified": "2011-06-29T15:26:18", - "yesno1": null, - "yesno2": null, - "alternatename": "Mylocheilus caurinus", - "method": null, - "collectionmemberid": 32768, - "qualifier": null, - "text2": "Mylocheilus caurinus", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/2011/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1986/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/49055/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/765/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 35318, - "number42": null, - "timestampcreated": "2011-06-29T03:26:18", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": "Frozen in liquid N2", - "text11": "197.0mm SL", - "text12": "Muscle", - "number37": null, - "timestampmodified": "2011-06-29T03:26:18", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 32768, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/35318/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1986/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=35318", - "text7": null}, - "text1": "K3", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=43127", - "number1": 1.0, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": "KUI_TISSUE_COLLECTION", - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": "KU 29777", - "cataloger": "/api/specify/agent/2044/", - "collection": "/api/specify/collection/32768/", - "yesno6": null, - "modifier": "1997-IC-066", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1986/", - "resource_uri": "/api/specify/collectionobject/43127/"}, - {"deaccessioned": null, - "dnasequences": [], - "preparations": [{"storagelocation": "KU 29777", - "loanpreparations": "/api/specify/loanpreparation/?preparation=46090", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=46090", - "id": 46090, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/43128/", - "modifiedbyagent": "/api/specify/agent/1987/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T10:25:28", - "version": 0, - "timestampmodified": "2002-07-29T10:25:28", - "yesno3": null, - "yesno1": false, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 32768, - "description": null, - "text2": null, - "text1": "C1", - "number2": null, - "number1": 1.0, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=46090", - "countamt": 100, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=46090", - "createdbyagent": "/api/specify/agent/1986/", - "preptype": "/api/specify/preptype/15/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=46090", - "resource_uri": "/api/specify/preparation/46090/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=43128", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 32768, - "otheridentifiers": [], - "catalognumber": "000001897", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 43128, - "timestampcreated": "2000-03-15T03:33:43", - "yesno4": null, - "version": 0, - "timestampmodified": "2011-06-29T03:26:25", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11627/", - "subspqualifier": null, - "guid": "7920e2a4-febe-11e2-82ac-bc305ba00e24", - "id": 49056, - "preferredtaxon": "/api/specify/taxon/11627/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/43128/", - "modifiedbyagent": "/api/specify/agent/2151/", - "timestampcreated": "2000-03-15T15:42:36", - "version": 1, - "timestampmodified": "2011-06-29T15:26:26", - "yesno1": null, - "yesno2": null, - "alternatename": "Mylocheilus caurinus", - "method": null, - "collectionmemberid": 32768, - "qualifier": null, - "text2": "Mylocheilus caurinus", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/2011/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1986/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/49056/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/765/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 35319, - "number42": null, - "timestampcreated": "2011-06-29T03:26:26", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": "Frozen in liquid N2", - "text11": "179.0mm SL", - "text12": "Muscle", - "number37": null, - "timestampmodified": "2011-06-29T03:26:26", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 32768, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/35319/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1986/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=35319", - "text7": null}, - "text1": "K3", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=43128", - "number1": 1.0, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": "KUI_TISSUE_COLLECTION", - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": "KU 29777", - "cataloger": "/api/specify/agent/2044/", - "collection": "/api/specify/collection/32768/", - "yesno6": null, - "modifier": "1997-IC-066", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1986/", - "resource_uri": "/api/specify/collectionobject/43128/"}, - {"deaccessioned": null, - "dnasequences": [], - "preparations": [{"storagelocation": "KU 29777", - "loanpreparations": "/api/specify/loanpreparation/?preparation=59504", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=59504", - "id": 59504, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/43129/", - "modifiedbyagent": "/api/specify/agent/1987/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T10:25:28", - "version": 0, - "timestampmodified": "2002-07-29T10:25:28", - "yesno3": null, - "yesno1": false, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 32768, - "description": null, - "text2": null, - "text1": "C1", - "number2": null, - "number1": 1.0, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=59504", - "countamt": 100, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=59504", - "createdbyagent": "/api/specify/agent/1986/", - "preptype": "/api/specify/preptype/15/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=59504", - "resource_uri": "/api/specify/preparation/59504/"}], - "accession": "/api/specify/accession/3/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=43129", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 32768, - "otheridentifiers": [], - "catalognumber": "000001898", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 43129, - "timestampcreated": "2000-03-15T03:33:43", - "yesno4": null, - "version": 0, - "timestampmodified": "2011-06-29T03:26:33", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11627/", - "subspqualifier": null, - "guid": "7920e411-febe-11e2-82ac-bc305ba00e24", - "id": 49057, - "preferredtaxon": "/api/specify/taxon/11627/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/43129/", - "modifiedbyagent": "/api/specify/agent/2151/", - "timestampcreated": "2000-03-15T15:42:36", - "version": 1, - "timestampmodified": "2011-06-29T15:26:33", - "yesno1": null, - "yesno2": null, - "alternatename": "Mylocheilus caurinus", - "method": null, - "collectionmemberid": 32768, - "qualifier": null, - "text2": "Mylocheilus caurinus", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/2011/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1986/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/49057/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": false, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/765/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 35320, - "number42": null, - "timestampcreated": "2011-06-29T03:26:33", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/2151/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": "Frozen in liquid N2", - "text11": "135.1mm SL", - "text12": "Muscle", - "number37": null, - "timestampmodified": "2011-06-29T03:26:33", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 32768, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/35320/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1986/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=35320", - "text7": null}, - "text1": "K3", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=43129", - "number1": 1.0, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": "KUI_TISSUE_COLLECTION", - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": "KU 29777", - "cataloger": "/api/specify/agent/2044/", - "collection": "/api/specify/collection/32768/", - "yesno6": null, - "modifier": "1997-IC-066", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1986/", - "resource_uri": "/api/specify/collectionobject/43129/"}], - "meta": {"total_count": 12, - "limit": 20, - "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=62&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=62&offset=0.json deleted file mode 100644 index 769bacc708f..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=62&offset=0.json +++ /dev/null @@ -1,1285 +0,0 @@ -{"meta": {"limit": 20, - "next": "/api/specify/collectionobject/?offset=20&limit=20&accession=62&format=json", - "offset": 0, - "previous": null, - "total_count": 285}, - "objects": [{"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-06-19", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000032581", - "collectingevent": "/api/specify/collectingevent/8660/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=16", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=16", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=16", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=16", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=16", - "dnasequences": "/api/specify/dnasequence/?collectionobject=16", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=16", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "16", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=16", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=16", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=16", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/16/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=16", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-06-19T12:04:40", - "timestampmodified": "2007-12-05T04:02:00", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=16", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2005-12-02", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000037799", - "collectingevent": "/api/specify/collectingevent/861/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=102", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=102", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=102", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=102", - "container": null, - "containerowner": null, - "countamt": 0, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=102", - "dnasequences": "/api/specify/dnasequence/?collectionobject=102", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=102", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "102", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=102", - "modifiedbyagent": "/api/specify/agent/3/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=102", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=102", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/102/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=102", - "sgrstatus": null, - "text1": "http://nhm.ku.edu/fishes/collectionimages/T4801 and 4805.jpg", - "text2": "", - "timestampcreated": "2005-12-02T04:28:07", - "timestampmodified": "2012-04-17T17:35:04", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=102", - "version": 16, - "visibility": 0, - "visibilitysetby": null, - "yesno1": false, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031828", - "collectingevent": "/api/specify/collectingevent/381/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=129", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=129", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=129", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=129", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=129", - "dnasequences": "/api/specify/dnasequence/?collectionobject=129", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=129", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "129", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=129", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=129", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=129", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/129/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=129", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:55:13", - "timestampmodified": "2007-12-05T09:14:41", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=129", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031932", - "collectingevent": "/api/specify/collectingevent/8666/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=195", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=195", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=195", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=195", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=195", - "dnasequences": "/api/specify/dnasequence/?collectionobject=195", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=195", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "195", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=195", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=195", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=195", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/195/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=195", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:57", - "timestampmodified": "2007-12-05T11:29:56", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=195", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031999", - "collectingevent": "/api/specify/collectingevent/8924/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=472", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=472", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=472", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=472", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=472", - "dnasequences": "/api/specify/dnasequence/?collectionobject=472", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=472", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "472", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=472", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=472", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=472", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/472/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=472", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:58:04", - "timestampmodified": "2007-12-05T01:24:13", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=472", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-06-19", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000032577", - "collectingevent": "/api/specify/collectingevent/1132/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=494", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=494", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=494", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=494", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=494", - "dnasequences": "/api/specify/dnasequence/?collectionobject=494", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=494", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "494", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=494", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=494", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=494", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/494/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=494", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-06-19T11:58:30", - "timestampmodified": "2007-12-05T04:01:13", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=494", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-10-06", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000032931", - "collectingevent": "/api/specify/collectingevent/1280/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=581", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=581", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=581", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=581", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=581", - "dnasequences": "/api/specify/dnasequence/?collectionobject=581", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=581", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "581", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=581", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=581", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=581", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/581/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=581", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-10-06T12:14:42", - "timestampmodified": "2007-12-05T04:07:04", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=581", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2005-12-02", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000037789", - "collectingevent": "/api/specify/collectingevent/9452/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=596", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=596", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=596", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=596", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=596", - "dnasequences": "/api/specify/dnasequence/?collectionobject=596", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=596", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "596", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=596", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=596", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=596", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/596/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=596", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2005-12-02T04:28:07", - "timestampmodified": "2007-12-05T04:18:40", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=596", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-06-19", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000032573", - "collectingevent": "/api/specify/collectingevent/867/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=629", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=629", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=629", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=629", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=629", - "dnasequences": "/api/specify/dnasequence/?collectionobject=629", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=629", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "629", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=629", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=629", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=629", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/629/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=629", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-06-19T11:52:55", - "timestampmodified": "2007-12-05T04:00:23", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=629", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031948", - "collectingevent": "/api/specify/collectingevent/1132/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=677", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=677", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=677", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=677", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=677", - "dnasequences": "/api/specify/dnasequence/?collectionobject=677", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=677", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "677", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=677", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=677", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=677", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/677/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=677", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:14", - "timestampmodified": "2007-12-05T01:13:04", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=677", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031946", - "collectingevent": "/api/specify/collectingevent/717/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=691", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=691", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=691", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=691", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=691", - "dnasequences": "/api/specify/dnasequence/?collectionobject=691", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=691", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "691", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=691", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=691", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=691", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/691/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=691", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:12", - "timestampmodified": "2007-12-05T01:12:37", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=691", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2005-12-02", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000037788", - "collectingevent": "/api/specify/collectingevent/9847/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=739", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=739", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=739", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=739", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=739", - "dnasequences": "/api/specify/dnasequence/?collectionobject=739", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=739", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "739", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=739", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=739", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=739", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/739/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=739", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2005-12-02T04:28:07", - "timestampmodified": "2007-12-05T04:18:29", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=739", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-06-19", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000032568", - "collectingevent": "/api/specify/collectingevent/1117/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=757", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=757", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=757", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=757", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=757", - "dnasequences": "/api/specify/dnasequence/?collectionobject=757", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=757", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "757", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=757", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=757", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=757", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/757/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=757", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-06-19T11:45:21", - "timestampmodified": "2007-12-05T03:59:06", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=757", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031853", - "collectingevent": "/api/specify/collectingevent/9047/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=841", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=841", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=841", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=841", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=841", - "dnasequences": "/api/specify/dnasequence/?collectionobject=841", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=841", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "841", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=841", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=841", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=841", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/841/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=841", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:55:39", - "timestampmodified": "2007-12-05T09:31:36", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=841", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031913", - "collectingevent": "/api/specify/collectingevent/8979/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=873", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=873", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=873", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=873", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=873", - "dnasequences": "/api/specify/dnasequence/?collectionobject=873", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=873", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "873", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=873", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=873", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=873", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/873/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=873", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:39", - "timestampmodified": "2007-12-05T09:47:05", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=873", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-06-19", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000032571", - "collectingevent": "/api/specify/collectingevent/1118/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=876", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=876", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=876", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=876", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=876", - "dnasequences": "/api/specify/dnasequence/?collectionobject=876", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=876", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "876", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=876", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=876", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=876", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/876/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=876", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-06-19T11:49:57", - "timestampmodified": "2007-12-05T04:00:00", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=876", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-06-19", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000032556", - "collectingevent": "/api/specify/collectingevent/9496/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=897", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=897", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=897", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=897", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=897", - "dnasequences": "/api/specify/dnasequence/?collectionobject=897", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=897", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "897", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=897", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=897", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=897", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/897/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=897", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-06-19T11:24:58", - "timestampmodified": "2007-12-05T03:56:28", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=897", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-06-19", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000032555", - "collectingevent": "/api/specify/collectingevent/9496/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=939", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=939", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=939", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=939", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=939", - "dnasequences": "/api/specify/dnasequence/?collectionobject=939", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=939", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "939", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=939", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=939", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=939", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/939/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=939", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-06-19T11:23:13", - "timestampmodified": "2007-12-05T03:56:17", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=939", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031993", - "collectingevent": "/api/specify/collectingevent/9790/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=954", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=954", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=954", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=954", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=954", - "dnasequences": "/api/specify/dnasequence/?collectionobject=954", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=954", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "954", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=954", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=954", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=954", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/954/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=954", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:58", - "timestampmodified": "2007-12-05T01:22:55", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=954", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031890", - "collectingevent": "/api/specify/collectingevent/672/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=1035", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=1035", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=1035", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=1035", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=1035", - "dnasequences": "/api/specify/dnasequence/?collectionobject=1035", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=1035", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "1035", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1035", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=1035", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=1035", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/1035/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1035", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:16", - "timestampmodified": "2007-12-05T09:41:00", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=1035", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}]} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=62&offset=100&limit=20.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=62&offset=100&limit=20.json deleted file mode 100644 index 370ef0c22c1..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=62&offset=100&limit=20.json +++ /dev/null @@ -1,1285 +0,0 @@ -{"meta": {"limit": 20, - "next": "/api/specify/collectionobject/?offset=120&limit=20&accession=62&format=json", - "offset": 100, - "previous": "/api/specify/collectionobject/?offset=80&limit=20&accession=62&format=json", - "total_count": 285}, - "objects": [{"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031924", - "collectingevent": "/api/specify/collectingevent/333/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=4700", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=4700", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=4700", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=4700", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=4700", - "dnasequences": "/api/specify/dnasequence/?collectionobject=4700", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=4700", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "4700", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=4700", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=4700", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=4700", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/4700/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=4700", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:50", - "timestampmodified": "2007-12-05T11:27:08", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=4700", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2005-12-02", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000037800", - "collectingevent": "/api/specify/collectingevent/854/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=4767", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=4767", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=4767", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=4767", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=4767", - "dnasequences": "/api/specify/dnasequence/?collectionobject=4767", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=4767", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "4767", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=4767", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=4767", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=4767", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/4767/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=4767", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2005-12-02T04:28:07", - "timestampmodified": "2007-12-05T04:21:33", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=4767", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031888", - "collectingevent": "/api/specify/collectingevent/84/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=4778", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=4778", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=4778", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=4778", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=4778", - "dnasequences": "/api/specify/dnasequence/?collectionobject=4778", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=4778", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "4778", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=4778", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=4778", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=4778", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/4778/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=4778", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:14", - "timestampmodified": "2007-12-05T09:40:26", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=4778", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-10-06", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000032939", - "collectingevent": "/api/specify/collectingevent/8660/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=4963", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=4963", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=4963", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=4963", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=4963", - "dnasequences": "/api/specify/dnasequence/?collectionobject=4963", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=4963", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "4963", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=4963", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=4963", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=4963", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/4963/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=4963", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-10-06T12:14:42", - "timestampmodified": "2007-12-05T04:08:46", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=4963", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031874", - "collectingevent": "/api/specify/collectingevent/535/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5038", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5038", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5038", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5038", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5038", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5038", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5038", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5038", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5038", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5038", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5038", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5038/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5038", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:55:59", - "timestampmodified": "2007-12-05T09:37:05", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5038", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031848", - "collectingevent": "/api/specify/collectingevent/638/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5058", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5058", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5058", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5058", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5058", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5058", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5058", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5058", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5058", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5058", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5058", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5058/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5058", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:55:34", - "timestampmodified": "2007-12-05T09:19:53", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5058", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031896", - "collectingevent": "/api/specify/collectingevent/717/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5139", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5139", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5139", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5139", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5139", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5139", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5139", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5139", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5139", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5139", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5139", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5139/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5139", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:21", - "timestampmodified": "2007-12-05T09:43:20", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5139", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031867", - "collectingevent": "/api/specify/collectingevent/9766/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5181", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5181", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5181", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5181", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5181", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5181", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5181", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5181", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5181", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5181", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5181", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5181/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5181", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:55:52", - "timestampmodified": "2007-12-05T09:35:13", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5181", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031958", - "collectingevent": "/api/specify/collectingevent/633/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5224", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5224", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5224", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5224", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5224", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5224", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5224", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5224", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5224", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5224", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5224", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5224/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5224", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:24", - "timestampmodified": "2007-12-05T01:15:10", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5224", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031983", - "collectingevent": "/api/specify/collectingevent/1061/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5287", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5287", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5287", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5287", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5287", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5287", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5287", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5287", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5287", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5287", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5287", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5287/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5287", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:49", - "timestampmodified": "2007-12-05T01:20:54", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5287", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031850", - "collectingevent": "/api/specify/collectingevent/8637/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5426", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5426", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5426", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5426", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5426", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5426", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5426", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5426", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5426", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5426", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5426", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5426/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5426", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:55:36", - "timestampmodified": "2007-12-05T09:20:19", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5426", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031944", - "collectingevent": "/api/specify/collectingevent/77/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5580", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5580", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5580", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5580", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5580", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5580", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5580", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5580", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5580", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5580", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5580", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5580/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5580", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:10", - "timestampmodified": "2007-12-05T01:12:09", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5580", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031898", - "collectingevent": "/api/specify/collectingevent/717/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5588", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5588", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5588", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5588", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5588", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5588", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5588", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5588", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5588", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5588", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5588", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5588/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5588", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:23", - "timestampmodified": "2007-12-05T09:43:47", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5588", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031976", - "collectingevent": "/api/specify/collectingevent/333/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5609", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5609", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5609", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5609", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5609", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5609", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5609", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5609", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5609", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5609", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5609", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5609/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5609", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:42", - "timestampmodified": "2007-12-05T01:19:30", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5609", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031878", - "collectingevent": "/api/specify/collectingevent/737/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5637", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5637", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5637", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5637", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5637", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5637", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5637", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5637", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5637", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5637", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5637", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5637/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5637", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:04", - "timestampmodified": "2007-12-05T09:38:15", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5637", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031914", - "collectingevent": "/api/specify/collectingevent/8924/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5681", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5681", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5681", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5681", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5681", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5681", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5681", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5681", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5681", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5681", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5681", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5681/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5681", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:40", - "timestampmodified": "2007-12-05T09:47:18", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5681", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031927", - "collectingevent": "/api/specify/collectingevent/1132/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5807", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5807", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5807", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5807", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5807", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5807", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5807", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5807", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5807", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5807", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5807", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5807/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5807", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:52", - "timestampmodified": "2007-12-05T11:27:51", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5807", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031947", - "collectingevent": "/api/specify/collectingevent/9425/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5826", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5826", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5826", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5826", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5826", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5826", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5826", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5826", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5826", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5826", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5826", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5826/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5826", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:13", - "timestampmodified": "2007-12-05T01:12:49", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5826", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031960", - "collectingevent": "/api/specify/collectingevent/9017/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5862", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5862", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5862", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5862", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5862", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5862", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5862", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5862", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5862", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5862", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5862", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5862/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5862", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:26", - "timestampmodified": "2007-12-05T01:15:35", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5862", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031887", - "collectingevent": "/api/specify/collectingevent/959/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5888", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5888", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5888", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5888", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5888", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5888", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5888", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5888", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5888", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5888", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5888", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5888/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5888", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:13", - "timestampmodified": "2007-12-05T09:40:14", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5888", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}]} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=62&offset=100.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=62&offset=100.json deleted file mode 100644 index 370ef0c22c1..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=62&offset=100.json +++ /dev/null @@ -1,1285 +0,0 @@ -{"meta": {"limit": 20, - "next": "/api/specify/collectionobject/?offset=120&limit=20&accession=62&format=json", - "offset": 100, - "previous": "/api/specify/collectionobject/?offset=80&limit=20&accession=62&format=json", - "total_count": 285}, - "objects": [{"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031924", - "collectingevent": "/api/specify/collectingevent/333/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=4700", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=4700", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=4700", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=4700", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=4700", - "dnasequences": "/api/specify/dnasequence/?collectionobject=4700", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=4700", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "4700", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=4700", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=4700", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=4700", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/4700/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=4700", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:50", - "timestampmodified": "2007-12-05T11:27:08", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=4700", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2005-12-02", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000037800", - "collectingevent": "/api/specify/collectingevent/854/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=4767", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=4767", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=4767", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=4767", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=4767", - "dnasequences": "/api/specify/dnasequence/?collectionobject=4767", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=4767", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "4767", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=4767", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=4767", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=4767", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/4767/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=4767", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2005-12-02T04:28:07", - "timestampmodified": "2007-12-05T04:21:33", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=4767", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031888", - "collectingevent": "/api/specify/collectingevent/84/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=4778", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=4778", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=4778", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=4778", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=4778", - "dnasequences": "/api/specify/dnasequence/?collectionobject=4778", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=4778", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "4778", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=4778", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=4778", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=4778", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/4778/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=4778", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:14", - "timestampmodified": "2007-12-05T09:40:26", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=4778", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-10-06", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1503/", - "catalognumber": "000032939", - "collectingevent": "/api/specify/collectingevent/8660/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=4963", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=4963", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=4963", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=4963", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=4963", - "dnasequences": "/api/specify/dnasequence/?collectionobject=4963", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=4963", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "4963", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=4963", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=4963", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=4963", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/4963/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=4963", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-10-06T12:14:42", - "timestampmodified": "2007-12-05T04:08:46", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=4963", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031874", - "collectingevent": "/api/specify/collectingevent/535/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5038", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5038", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5038", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5038", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5038", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5038", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5038", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5038", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5038", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5038", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5038", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5038/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5038", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:55:59", - "timestampmodified": "2007-12-05T09:37:05", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5038", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031848", - "collectingevent": "/api/specify/collectingevent/638/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5058", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5058", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5058", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5058", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5058", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5058", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5058", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5058", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5058", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5058", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5058", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5058/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5058", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:55:34", - "timestampmodified": "2007-12-05T09:19:53", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5058", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031896", - "collectingevent": "/api/specify/collectingevent/717/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5139", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5139", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5139", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5139", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5139", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5139", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5139", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5139", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5139", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5139", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5139", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5139/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5139", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:21", - "timestampmodified": "2007-12-05T09:43:20", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5139", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031867", - "collectingevent": "/api/specify/collectingevent/9766/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5181", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5181", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5181", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5181", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5181", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5181", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5181", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5181", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5181", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5181", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5181", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5181/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5181", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:55:52", - "timestampmodified": "2007-12-05T09:35:13", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5181", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031958", - "collectingevent": "/api/specify/collectingevent/633/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5224", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5224", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5224", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5224", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5224", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5224", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5224", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5224", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5224", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5224", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5224", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5224/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5224", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:24", - "timestampmodified": "2007-12-05T01:15:10", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5224", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031983", - "collectingevent": "/api/specify/collectingevent/1061/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5287", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5287", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5287", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5287", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5287", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5287", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5287", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5287", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5287", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5287", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5287", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5287/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5287", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:49", - "timestampmodified": "2007-12-05T01:20:54", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5287", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031850", - "collectingevent": "/api/specify/collectingevent/8637/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5426", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5426", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5426", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5426", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5426", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5426", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5426", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5426", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5426", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5426", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5426", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5426/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5426", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:55:36", - "timestampmodified": "2007-12-05T09:20:19", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5426", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031944", - "collectingevent": "/api/specify/collectingevent/77/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5580", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5580", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5580", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5580", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5580", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5580", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5580", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5580", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5580", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5580", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5580", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5580/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5580", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:10", - "timestampmodified": "2007-12-05T01:12:09", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5580", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031898", - "collectingevent": "/api/specify/collectingevent/717/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5588", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5588", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5588", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5588", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5588", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5588", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5588", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5588", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5588", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5588", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5588", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5588/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5588", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:23", - "timestampmodified": "2007-12-05T09:43:47", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5588", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031976", - "collectingevent": "/api/specify/collectingevent/333/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5609", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5609", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5609", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5609", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5609", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5609", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5609", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5609", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5609", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5609", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5609", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5609/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5609", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:42", - "timestampmodified": "2007-12-05T01:19:30", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5609", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031878", - "collectingevent": "/api/specify/collectingevent/737/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5637", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5637", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5637", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5637", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5637", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5637", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5637", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5637", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5637", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5637", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5637", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5637/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5637", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:04", - "timestampmodified": "2007-12-05T09:38:15", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5637", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031914", - "collectingevent": "/api/specify/collectingevent/8924/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5681", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5681", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5681", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5681", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5681", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5681", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5681", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5681", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5681", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5681", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5681", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5681/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5681", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:40", - "timestampmodified": "2007-12-05T09:47:18", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5681", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031927", - "collectingevent": "/api/specify/collectingevent/1132/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5807", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5807", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5807", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5807", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5807", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5807", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5807", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5807", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5807", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5807", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5807", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5807/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5807", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:52", - "timestampmodified": "2007-12-05T11:27:51", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5807", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031947", - "collectingevent": "/api/specify/collectingevent/9425/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5826", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5826", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5826", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5826", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5826", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5826", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5826", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5826", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5826", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5826", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5826", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5826/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5826", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:13", - "timestampmodified": "2007-12-05T01:12:49", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5826", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031960", - "collectingevent": "/api/specify/collectingevent/9017/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5862", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5862", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5862", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5862", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5862", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5862", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5862", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5862", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5862", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5862", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5862", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5862/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5862", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:57:26", - "timestampmodified": "2007-12-05T01:15:35", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5862", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}, - {"accession": "/api/specify/accession/62/", - "altcatalognumber": null, - "appraisal": null, - "availability": null, - "catalogeddate": "2003-02-12", - "catalogeddateprecision": 1, - "catalogeddateverbatim": null, - "cataloger": "/api/specify/agent/1688/", - "catalognumber": "000031887", - "collectingevent": "/api/specify/collectingevent/959/", - "collection": "/api/specify/collection/4/", - "collectionmemberid": 4, - "collectionobjectattachments": "/api/specify/collectionobjectattachment/?collectionobject=5888", - "collectionobjectattribute": null, - "collectionobjectattrs": "/api/specify/collectionobjectattr/?collectionobject=5888", - "collectionobjectcitations": "/api/specify/collectionobjectcitation/?collectionobject=5888", - "conservdescriptions": "/api/specify/conservdescription/?collectionobject=5888", - "container": null, - "containerowner": null, - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessioned": false, - "description": null, - "determinations": "/api/specify/determination/?collectionobject=5888", - "dnasequences": "/api/specify/dnasequence/?collectionobject=5888", - "exsiccataitems": "/api/specify/exsiccataitem/?collectionobject=5888", - "fieldnotebookpage": null, - "fieldnumber": null, - "guid": null, - "id": "5888", - "inventorydate": null, - "leftsiderels": "/api/specify/collectionrelationship/?leftside=5888", - "modifiedbyagent": "/api/specify/agent/1503/", - "modifier": null, - "name": null, - "notifications": null, - "number1": null, - "number2": null, - "objectcondition": null, - "ocr": "", - "otheridentifiers": "/api/specify/otheridentifier/?collectionobject=5888", - "paleocontext": null, - "preparations": "/api/specify/preparation/?collectionobject=5888", - "projectnumber": null, - "remarks": "", - "resource_uri": "/api/specify/collectionobject/5888/", - "restrictions": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=5888", - "sgrstatus": null, - "text1": "known", - "text2": null, - "timestampcreated": "2003-02-12T09:56:13", - "timestampmodified": "2007-12-05T09:40:14", - "totalvalue": null, - "treatmentevents": "/api/specify/treatmentevent/?collectionobject=5888", - "version": 0, - "visibility": 0, - "visibilitysetby": null, - "yesno1": null, - "yesno2": null, - "yesno3": null, - "yesno4": null, - "yesno5": null, - "yesno6": null}]} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=64&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=64&offset=0.json deleted file mode 100644 index 5f6fd062c18..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=64&offset=0.json +++ /dev/null @@ -1,4355 +0,0 @@ -{"objects": [{"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=1836", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=1836", - "id": 1836, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/16/", - "modifiedbyagent": "/api/specify/agent/3/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T12:05:30", - "version": 28, - "timestampmodified": "2013-09-13T17:15:30", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=1836", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=1836", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=1836", - "resource_uri": "/api/specify/preparation/1836/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=16", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032581", - "appraisal": null, - "inventorydate": null, - "guid": "768cf1d5-be4c-4946-9393-64aede278bdc", - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/3/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": null, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/16/", - "modifiedbyagent": "/api/specify/agent/3/", - "timestampcreated": "2013-08-01T17:30:16", - "version": 26, - "timestampmodified": "2013-09-13T17:15:29", - "attachment": "/api/specify/attachment/5051/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 4463, - "resource_uri": "/api/specify/collectionobjectattachment/4463/"}], - "id": 16, - "timestampcreated": "2003-06-19T12:04:40", - "yesno4": null, - "version": 28, - "timestampmodified": "2013-09-13T17:15:29", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13621/", - "subspqualifier": null, - "guid": "784ffab3-febe-11e2-82ac-bc305ba00e24", - "id": 38085, - "preferredtaxon": "/api/specify/taxon/13621/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/16/", - "modifiedbyagent": "/api/specify/agent/3/", - "timestampcreated": "2003-06-19T12:04:40", - "version": 28, - "timestampmodified": "2013-09-13T17:15:30", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": "aoeuoa", - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/38085/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9821/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 51274, - "number42": null, - "timestampcreated": "2013-08-23T11:38:20", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/3/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 9, - "text10": null, - "text11": "234234", - "text12": null, - "number37": null, - "timestampmodified": "2013-09-13T17:15:29", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": "Male", - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/51274/", - "number8": null, - "number9": null, - "text2": "324", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/3/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=51274", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=16", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/16/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=3752", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=3752", - "id": 3752, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/102/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2005-12-02T16:19:08", - "version": 1, - "timestampmodified": "2005-12-02T16:19:08", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=3752", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=3752", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=3752", - "resource_uri": "/api/specify/preparation/3752/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=102", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000037799", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/102/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:24", - "version": 0, - "timestampmodified": "2012-10-03T14:44:24", - "attachment": "/api/specify/attachment/104/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 104, - "resource_uri": "/api/specify/collectionobjectattachment/104/"}], - "id": 102, - "timestampcreated": "2005-12-02T04:28:07", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T04:21:24", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14040/", - "subspqualifier": null, - "guid": "785f26d5-febe-11e2-82ac-bc305ba00e24", - "id": 40308, - "preferredtaxon": "/api/specify/taxon/14040/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/102/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2005-12-02T16:28:07", - "version": 1, - "timestampmodified": "2007-12-05T16:21:24", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "2005-08-30", - "featureorbasis": null, - "determiner": "/api/specify/agent/847/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/40308/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/874/", - "catalogeddate": "2005-12-02", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40291, - "number42": null, - "timestampcreated": "2005-12-02T04:28:07", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "40mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40291/", - "number8": null, - "number9": null, - "text2": "4805", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40291", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=102", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/102/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=31664", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=31664", - "id": 31664, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/129/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:55:14", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=31664", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=31664", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=31664", - "resource_uri": "/api/specify/preparation/31664/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=129", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031828", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/129/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:51", - "version": 0, - "timestampmodified": "2012-10-03T14:45:51", - "attachment": "/api/specify/attachment/581/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 581, - "resource_uri": "/api/specify/collectionobjectattachment/581/"}], - "id": 129, - "timestampcreated": "2003-02-12T09:55:13", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T09:14:41", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13633/", - "subspqualifier": null, - "guid": "74b396d2-febe-11e2-82ac-bc305ba00e24", - "id": 4403, - "preferredtaxon": "/api/specify/taxon/13633/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/129/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:55:13", - "version": 1, - "timestampmodified": "2007-12-05T09:14:41", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/4403/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/388/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40292, - "number42": null, - "timestampcreated": "2003-02-12T09:55:13", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "58mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40292/", - "number8": null, - "number9": null, - "text2": "4946", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40292", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=129", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/129/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=17037", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=17037", - "id": 17037, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/196/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:56:57", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=17037", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=17037", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=17037", - "resource_uri": "/api/specify/preparation/17037/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=196", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031932", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/196/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:43", - "version": 0, - "timestampmodified": "2012-10-03T14:45:43", - "attachment": "/api/specify/attachment/476/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 476, - "resource_uri": "/api/specify/collectionobjectattachment/476/"}], - "id": 196, - "timestampcreated": "2003-02-12T09:56:57", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T11:29:56", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13323/", - "subspqualifier": null, - "guid": "73f3743e-febe-11e2-82ac-bc305ba00e24", - "id": 2702, - "preferredtaxon": "/api/specify/taxon/13323/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/196/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:56:57", - "version": 1, - "timestampmodified": "2007-12-05T11:29:56", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/2702/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/8687/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40299, - "number42": null, - "timestampcreated": "2003-02-12T09:56:57", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "43mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40299/", - "number8": null, - "number9": null, - "text2": "4506", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40299", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=196", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/196/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=10009", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=10009", - "id": 10009, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/475/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:58:04", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=10009", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=10009", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=10009", - "resource_uri": "/api/specify/preparation/10009/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=475", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031999", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/475/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:37", - "version": 0, - "timestampmodified": "2012-10-03T14:45:37", - "attachment": "/api/specify/attachment/410/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 410, - "resource_uri": "/api/specify/collectionobjectattachment/410/"}], - "id": 475, - "timestampcreated": "2003-02-12T09:58:04", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T01:24:13", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13930/", - "subspqualifier": null, - "guid": "787a89e4-febe-11e2-82ac-bc305ba00e24", - "id": 42110, - "preferredtaxon": "/api/specify/taxon/13930/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/475/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:58:04", - "version": 1, - "timestampmodified": "2007-12-05T13:24:13", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/42110/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/8948/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40320, - "number42": null, - "timestampcreated": "2003-02-12T09:58:04", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "364mm TL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40320/", - "number8": null, - "number9": null, - "text2": "4355", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40320", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=475", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/475/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=16112", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=16112", - "id": 16112, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/497/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T11:59:37", - "version": 1, - "timestampmodified": "2003-06-19T11:45:55", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=16112", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=16112", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=16112", - "resource_uri": "/api/specify/preparation/16112/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=497", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032577", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/497/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:31", - "version": 0, - "timestampmodified": "2012-10-03T14:44:31", - "attachment": "/api/specify/attachment/173/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 173, - "resource_uri": "/api/specify/collectionobjectattachment/173/"}], - "id": 497, - "timestampcreated": "2003-06-19T11:58:30", - "yesno4": null, - "version": 1, - "timestampmodified": "2012-08-08T10:29:30", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14544/", - "subspqualifier": null, - "guid": "784c235c-febe-11e2-82ac-bc305ba00e24", - "id": 37611, - "preferredtaxon": "/api/specify/taxon/14544/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/497/", - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-06-19T11:58:31", - "version": 1, - "timestampmodified": "2012-08-08T10:29:30", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/37611/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1150/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40323, - "number42": null, - "timestampcreated": "2003-06-19T11:58:30", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "52 mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40323/", - "number8": null, - "number9": null, - "text2": "4309", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40323", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=497", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/497/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=38846", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=38846", - "id": 38846, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/584/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-10-06T12:09:49", - "version": 1, - "timestampmodified": "2003-10-06T12:09:49", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=38846", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=38846", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=38846", - "resource_uri": "/api/specify/preparation/38846/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=584", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032931", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/584/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:30", - "version": 0, - "timestampmodified": "2012-10-03T14:44:30", - "attachment": "/api/specify/attachment/163/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 163, - "resource_uri": "/api/specify/collectionobjectattachment/163/"}], - "id": 584, - "timestampcreated": "2003-10-06T12:14:42", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T04:07:04", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13783/", - "subspqualifier": null, - "guid": "73ecee44-febe-11e2-82ac-bc305ba00e24", - "id": 1570, - "preferredtaxon": "/api/specify/taxon/13783/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/584/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-10-06T12:14:42", - "version": 1, - "timestampmodified": "2007-12-05T16:07:04", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/1570/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1300/", - "catalogeddate": "2003-10-06", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40329, - "number42": null, - "timestampcreated": "2003-10-06T12:14:42", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "30mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40329/", - "number8": null, - "number9": null, - "text2": "4882", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40329", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=584", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/584/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=7939", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=7939", - "id": 7939, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/600/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2005-12-02T16:19:08", - "version": 1, - "timestampmodified": "2005-12-02T16:19:08", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=7939", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=7939", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=7939", - "resource_uri": "/api/specify/preparation/7939/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=600", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000037789", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/600/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:25", - "version": 0, - "timestampmodified": "2012-10-03T14:44:25", - "attachment": "/api/specify/attachment/114/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 114, - "resource_uri": "/api/specify/collectionobjectattachment/114/"}], - "id": 600, - "timestampcreated": "2005-12-02T04:28:07", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T04:18:40", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14078/", - "subspqualifier": null, - "guid": "7845f993-febe-11e2-82ac-bc305ba00e24", - "id": 36830, - "preferredtaxon": "/api/specify/taxon/14078/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/600/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2005-12-02T16:28:07", - "version": 1, - "timestampmodified": "2007-12-05T16:18:41", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "2005-08-30", - "featureorbasis": null, - "determiner": "/api/specify/agent/1655/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/36830/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9480/", - "catalogeddate": "2005-12-02", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40331, - "number42": null, - "timestampcreated": "2005-12-02T04:28:07", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "71mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40331/", - "number8": null, - "number9": null, - "text2": "4848", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40331", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=600", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/600/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=28108", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=28108", - "id": 28108, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/633/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T11:53:20", - "version": 1, - "timestampmodified": "2003-06-19T11:45:55", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=28108", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=28108", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=28108", - "resource_uri": "/api/specify/preparation/28108/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=633", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032573", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/633/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:31", - "version": 0, - "timestampmodified": "2012-10-03T14:44:31", - "attachment": "/api/specify/attachment/177/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 177, - "resource_uri": "/api/specify/collectionobjectattachment/177/"}], - "id": 633, - "timestampcreated": "2003-06-19T11:52:55", - "yesno4": null, - "version": 1, - "timestampmodified": "2012-08-08T11:38:20", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13916/", - "subspqualifier": null, - "guid": "73f7c7e1-febe-11e2-82ac-bc305ba00e24", - "id": 3475, - "preferredtaxon": "/api/specify/taxon/13916/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/633/", - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-06-19T11:52:55", - "version": 1, - "timestampmodified": "2012-08-08T11:38:20", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/3475/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/880/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40334, - "number42": null, - "timestampcreated": "2003-06-19T11:52:55", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "50 mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40334/", - "number8": null, - "number9": null, - "text2": "4632", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40334", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=633", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/633/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=2708", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=2708", - "id": 2708, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/682/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:57:15", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=2708", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=2708", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=2708", - "resource_uri": "/api/specify/preparation/2708/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=682", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031948", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/682/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:41", - "version": 0, - "timestampmodified": "2012-10-03T14:45:41", - "attachment": "/api/specify/attachment/461/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 461, - "resource_uri": "/api/specify/collectionobjectattachment/461/"}], - "id": 682, - "timestampcreated": "2003-02-12T09:57:14", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T01:13:04", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14236/", - "subspqualifier": null, - "guid": "73f008d7-febe-11e2-82ac-bc305ba00e24", - "id": 2166, - "preferredtaxon": "/api/specify/taxon/14236/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/682/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:57:14", - "version": 1, - "timestampmodified": "2007-12-05T13:13:05", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/2166/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1150/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40337, - "number42": null, - "timestampcreated": "2003-02-12T09:57:14", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "66mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40337/", - "number8": null, - "number9": null, - "text2": "4325", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40337", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=682", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/682/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=29251", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=29251", - "id": 29251, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/697/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:57:13", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=29251", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=29251", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=29251", - "resource_uri": "/api/specify/preparation/29251/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=697", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031946", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/697/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:42", - "version": 0, - "timestampmodified": "2012-10-03T14:45:42", - "attachment": "/api/specify/attachment/463/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 463, - "resource_uri": "/api/specify/collectionobjectattachment/463/"}], - "id": 697, - "timestampcreated": "2003-02-12T09:57:12", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T01:12:37", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13713/", - "subspqualifier": null, - "guid": "73f09d42-febe-11e2-82ac-bc305ba00e24", - "id": 2252, - "preferredtaxon": "/api/specify/taxon/13713/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/697/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:57:13", - "version": 1, - "timestampmodified": "2007-12-05T13:12:37", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/2252/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/726/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40340, - "number42": null, - "timestampcreated": "2003-02-12T09:57:12", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "40mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40340/", - "number8": null, - "number9": null, - "text2": "4204", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40340", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=697", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/697/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=40893", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=40893", - "id": 40893, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/745/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2005-12-02T16:19:08", - "version": 1, - "timestampmodified": "2005-12-02T16:19:08", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=40893", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=40893", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=40893", - "resource_uri": "/api/specify/preparation/40893/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=745", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000037788", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/745/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:25", - "version": 0, - "timestampmodified": "2012-10-03T14:44:25", - "attachment": "/api/specify/attachment/115/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 115, - "resource_uri": "/api/specify/collectionobjectattachment/115/"}], - "id": 745, - "timestampcreated": "2005-12-02T04:28:07", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T04:18:29", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14507/", - "subspqualifier": null, - "guid": "74c1b106-febe-11e2-82ac-bc305ba00e24", - "id": 5974, - "preferredtaxon": "/api/specify/taxon/14507/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/745/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2005-12-02T16:28:07", - "version": 1, - "timestampmodified": "2007-12-05T16:18:29", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "2005-08-30", - "featureorbasis": null, - "determiner": "/api/specify/agent/847/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/5974/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9880/", - "catalogeddate": "2005-12-02", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40343, - "number42": null, - "timestampcreated": "2005-12-02T04:28:07", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "72mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40343/", - "number8": null, - "number9": null, - "text2": "4920", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40343", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=745", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/745/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=37603", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=37603", - "id": 37603, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/763/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T11:46:06", - "version": 1, - "timestampmodified": "2003-06-19T11:45:55", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=37603", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=37603", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=37603", - "resource_uri": "/api/specify/preparation/37603/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=763", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032568", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/763/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:31", - "version": 0, - "timestampmodified": "2012-10-03T14:44:31", - "attachment": "/api/specify/attachment/182/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 182, - "resource_uri": "/api/specify/collectionobjectattachment/182/"}], - "id": 763, - "timestampcreated": "2003-06-19T11:45:21", - "yesno4": null, - "version": 1, - "timestampmodified": "2012-08-07T03:10:17", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13866/", - "subspqualifier": null, - "guid": "73f018a8-febe-11e2-82ac-bc305ba00e24", - "id": 2178, - "preferredtaxon": "/api/specify/taxon/13866/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/763/", - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-06-19T11:45:21", - "version": 1, - "timestampmodified": "2012-08-07T15:10:17", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/2178/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1135/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40345, - "number42": null, - "timestampcreated": "2003-06-19T11:45:21", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "75 mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40345/", - "number8": null, - "number9": null, - "text2": "4764", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40345", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=763", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/763/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=6869", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=6869", - "id": 6869, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/848/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:55:39", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=6869", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=6869", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=6869", - "resource_uri": "/api/specify/preparation/6869/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=848", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031853", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/848/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:49", - "version": 0, - "timestampmodified": "2012-10-03T14:45:49", - "attachment": "/api/specify/attachment/556/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 556, - "resource_uri": "/api/specify/collectionobjectattachment/556/"}, - {"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/848/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:49", - "version": 0, - "timestampmodified": "2012-10-03T14:45:49", - "attachment": "/api/specify/attachment/557/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 557, - "resource_uri": "/api/specify/collectionobjectattachment/557/"}], - "id": 848, - "timestampcreated": "2003-02-12T09:55:39", - "yesno4": null, - "version": 2, - "timestampmodified": "2007-12-05T09:31:36", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14028/", - "subspqualifier": null, - "guid": "73f3e9c6-febe-11e2-82ac-bc305ba00e24", - "id": 2767, - "preferredtaxon": "/api/specify/taxon/14028/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/848/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:55:39", - "version": 1, - "timestampmodified": "2007-12-05T09:31:36", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/2767/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9072/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40348, - "number42": null, - "timestampcreated": "2003-02-12T09:55:39", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "266mm TL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40348/", - "number8": null, - "number9": null, - "text2": "4710", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40348", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=848", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/848/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=18715", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=18715", - "id": 18715, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/880/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:56:40", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=18715", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=18715", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=18715", - "resource_uri": "/api/specify/preparation/18715/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=880", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031913", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/880/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:44", - "version": 0, - "timestampmodified": "2012-10-03T14:45:44", - "attachment": "/api/specify/attachment/495/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 495, - "resource_uri": "/api/specify/collectionobjectattachment/495/"}], - "id": 880, - "timestampcreated": "2003-02-12T09:56:39", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T09:47:05", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13394/", - "subspqualifier": null, - "guid": "74af4069-febe-11e2-82ac-bc305ba00e24", - "id": 3935, - "preferredtaxon": "/api/specify/taxon/13394/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/880/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:56:39", - "version": 1, - "timestampmodified": "2007-12-05T09:47:05", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/3935/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9003/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40349, - "number42": null, - "timestampcreated": "2003-02-12T09:56:39", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "59mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40349/", - "number8": null, - "number9": null, - "text2": "4802", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40349", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=880", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/880/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=24994", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=24994", - "id": 24994, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/883/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T11:50:22", - "version": 1, - "timestampmodified": "2003-06-19T11:45:55", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=24994", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=24994", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=24994", - "resource_uri": "/api/specify/preparation/24994/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=883", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032571", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/883/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:31", - "version": 0, - "timestampmodified": "2012-10-03T14:44:31", - "attachment": "/api/specify/attachment/179/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 179, - "resource_uri": "/api/specify/collectionobjectattachment/179/"}], - "id": 883, - "timestampcreated": "2003-06-19T11:49:57", - "yesno4": null, - "version": 1, - "timestampmodified": "2012-06-20T04:01:42", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14162/", - "subspqualifier": null, - "guid": "782f8967-febe-11e2-82ac-bc305ba00e24", - "id": 35575, - "preferredtaxon": "/api/specify/taxon/14162/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/883/", - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-06-19T11:49:57", - "version": 1, - "timestampmodified": "2012-06-20T16:01:42", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/35575/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1136/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40350, - "number42": null, - "timestampcreated": "2003-06-19T11:49:57", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "40 mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40350/", - "number8": null, - "number9": null, - "text2": "4195", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40350", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=883", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/883/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=20537", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=20537", - "id": 20537, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/905/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T11:25:18", - "version": 1, - "timestampmodified": "2003-06-19T11:21:14", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=20537", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=20537", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=20537", - "resource_uri": "/api/specify/preparation/20537/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=905", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032556", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/905/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:32", - "version": 0, - "timestampmodified": "2012-10-03T14:44:32", - "attachment": "/api/specify/attachment/195/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 195, - "resource_uri": "/api/specify/collectionobjectattachment/195/"}], - "id": 905, - "timestampcreated": "2003-06-19T11:24:58", - "yesno4": null, - "version": 1, - "timestampmodified": "2012-08-08T11:44:04", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14203/", - "subspqualifier": null, - "guid": "7859f336-febe-11e2-82ac-bc305ba00e24", - "id": 39382, - "preferredtaxon": "/api/specify/taxon/14203/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/905/", - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-06-19T11:24:58", - "version": 1, - "timestampmodified": "2012-08-08T11:44:04", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/39382/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9525/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40351, - "number42": null, - "timestampcreated": "2003-06-19T11:24:58", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "60 mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40351/", - "number8": null, - "number9": null, - "text2": "4233", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40351", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=905", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/905/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=14123", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=14123", - "id": 14123, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/947/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T11:23:28", - "version": 1, - "timestampmodified": "2003-06-19T11:21:14", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=14123", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=14123", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=14123", - "resource_uri": "/api/specify/preparation/14123/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=947", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032555", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/947/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:32", - "version": 0, - "timestampmodified": "2012-10-03T14:44:32", - "attachment": "/api/specify/attachment/196/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 196, - "resource_uri": "/api/specify/collectionobjectattachment/196/"}], - "id": 947, - "timestampcreated": "2003-06-19T11:23:13", - "yesno4": null, - "version": 1, - "timestampmodified": "2012-08-08T10:28:11", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13916/", - "subspqualifier": null, - "guid": "7852c2a8-febe-11e2-82ac-bc305ba00e24", - "id": 38585, - "preferredtaxon": "/api/specify/taxon/13916/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/947/", - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-06-19T11:23:13", - "version": 1, - "timestampmodified": "2012-08-08T10:28:11", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/38585/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9525/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40354, - "number42": null, - "timestampcreated": "2003-06-19T11:23:13", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "100 mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40354/", - "number8": null, - "number9": null, - "text2": "4149", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40354", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=947", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/947/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=3805", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=3805", - "id": 3805, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/962/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:57:59", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=3805", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=3805", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=3805", - "resource_uri": "/api/specify/preparation/3805/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=962", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031993", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/962/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:38", - "version": 0, - "timestampmodified": "2012-10-03T14:45:38", - "attachment": "/api/specify/attachment/416/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 416, - "resource_uri": "/api/specify/collectionobjectattachment/416/"}], - "id": 962, - "timestampcreated": "2003-02-12T09:57:58", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T01:22:55", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13708/", - "subspqualifier": null, - "guid": "7510d534-febe-11e2-82ac-bc305ba00e24", - "id": 7699, - "preferredtaxon": "/api/specify/taxon/13708/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/962/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:57:59", - "version": 1, - "timestampmodified": "2007-12-05T13:22:56", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/7699/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9821/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40355, - "number42": null, - "timestampcreated": "2003-02-12T09:57:58", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "100mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40355/", - "number8": null, - "number9": null, - "text2": "4939", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40355", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=962", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/962/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=3507", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=3507", - "id": 3507, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1043/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:56:16", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=3507", - "countamt": 2, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=3507", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=3507", - "resource_uri": "/api/specify/preparation/3507/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1043", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031890", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1043/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:46", - "version": 0, - "timestampmodified": "2012-10-03T14:45:46", - "attachment": "/api/specify/attachment/518/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 518, - "resource_uri": "/api/specify/collectionobjectattachment/518/"}], - "id": 1043, - "timestampcreated": "2003-02-12T09:56:16", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T09:41:00", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14221/", - "subspqualifier": null, - "guid": "74c654ee-febe-11e2-82ac-bc305ba00e24", - "id": 6818, - "preferredtaxon": "/api/specify/taxon/14221/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1043/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:56:16", - "version": 1, - "timestampmodified": "2007-12-05T09:41:00", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/6818/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/681/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40358, - "number42": null, - "timestampcreated": "2003-02-12T09:56:16", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "40-43mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40358/", - "number8": null, - "number9": null, - "text2": "4288, 4243", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40358", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1043", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1043/"}], - "meta": {"total_count": 1232, - "limit": 20, - "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=64&offset=20.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=64&offset=20.json deleted file mode 100644 index e3186aefb06..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.accession=64&offset=20.json +++ /dev/null @@ -1,4355 +0,0 @@ -{"objects": [{"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=19452", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=19452", - "id": 19452, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1071/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T11:56:46", - "version": 1, - "timestampmodified": "2003-06-19T11:45:55", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=19452", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=19452", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=19452", - "resource_uri": "/api/specify/preparation/19452/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1071", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032575", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1071/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:31", - "version": 0, - "timestampmodified": "2012-10-03T14:44:31", - "attachment": "/api/specify/attachment/175/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 175, - "resource_uri": "/api/specify/collectionobjectattachment/175/"}], - "id": 1071, - "timestampcreated": "2003-06-19T11:56:21", - "yesno4": null, - "version": 1, - "timestampmodified": "2012-08-08T11:44:20", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13900/", - "subspqualifier": null, - "guid": "787d3bc2-febe-11e2-82ac-bc305ba00e24", - "id": 42269, - "preferredtaxon": "/api/specify/taxon/13900/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1071/", - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-06-19T11:56:22", - "version": 1, - "timestampmodified": "2012-08-08T11:44:20", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/42269/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/608/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40359, - "number42": null, - "timestampcreated": "2003-06-19T11:56:21", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "61 mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40359/", - "number8": null, - "number9": null, - "text2": "4758", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40359", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1071", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1071/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=13362", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=13362", - "id": 13362, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1112/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:58:05", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=13362", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=13362", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=13362", - "resource_uri": "/api/specify/preparation/13362/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1112", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032000", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1112/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:37", - "version": 0, - "timestampmodified": "2012-10-03T14:45:37", - "attachment": "/api/specify/attachment/409/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 409, - "resource_uri": "/api/specify/collectionobjectattachment/409/"}], - "id": 1112, - "timestampcreated": "2003-02-12T09:58:05", - "yesno4": null, - "version": 1, - "timestampmodified": "2011-07-14T02:46:09", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13643/", - "subspqualifier": null, - "guid": "74c39365-febe-11e2-82ac-bc305ba00e24", - "id": 6323, - "preferredtaxon": "/api/specify/taxon/13643/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1112/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:58:05", - "version": 1, - "timestampmodified": "2011-07-14T14:46:09", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/6323/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1115/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40364, - "number42": null, - "timestampcreated": "2003-02-12T09:58:05", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "105mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40364/", - "number8": null, - "number9": null, - "text2": "4581", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40364", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1112", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1112/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=33907", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=33907", - "id": 33907, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1154/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:56:42", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=33907", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=33907", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=33907", - "resource_uri": "/api/specify/preparation/33907/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1154", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031915", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1154/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:44", - "version": 0, - "timestampmodified": "2012-10-03T14:45:44", - "attachment": "/api/specify/attachment/493/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 493, - "resource_uri": "/api/specify/collectionobjectattachment/493/"}], - "id": 1154, - "timestampcreated": "2003-02-12T09:56:41", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T09:47:31", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13987/", - "subspqualifier": null, - "guid": "74c48b6d-febe-11e2-82ac-bc305ba00e24", - "id": 6502, - "preferredtaxon": "/api/specify/taxon/13987/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1154/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:56:41", - "version": 1, - "timestampmodified": "2007-12-05T09:47:31", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/6502/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/726/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40366, - "number42": null, - "timestampcreated": "2003-02-12T09:56:41", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "31mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40366/", - "number8": null, - "number9": null, - "text2": "4234", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40366", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1154", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1154/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=9655", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=9655", - "id": 9655, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1269/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:57:02", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=9655", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=9655", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=9655", - "resource_uri": "/api/specify/preparation/9655/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1269", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031937", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1269/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:42", - "version": 0, - "timestampmodified": "2012-10-03T14:45:42", - "attachment": "/api/specify/attachment/471/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 471, - "resource_uri": "/api/specify/collectionobjectattachment/471/"}], - "id": 1269, - "timestampcreated": "2003-02-12T09:57:02", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T11:30:59", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13832/", - "subspqualifier": null, - "guid": "78551ea7-febe-11e2-82ac-bc305ba00e24", - "id": 39000, - "preferredtaxon": "/api/specify/taxon/13832/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1269/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:57:02", - "version": 1, - "timestampmodified": "2007-12-05T11:30:59", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/39000/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9781/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40369, - "number42": null, - "timestampcreated": "2003-02-12T09:57:02", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "50mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40369/", - "number8": null, - "number9": null, - "text2": "4374", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40369", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1269", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1269/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=14268", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=14268", - "id": 14268, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1281/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-10-06T12:09:49", - "version": 1, - "timestampmodified": "2003-10-06T12:09:49", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=14268", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=14268", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=14268", - "resource_uri": "/api/specify/preparation/14268/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1281", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032940", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1281/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:29", - "version": 0, - "timestampmodified": "2012-10-03T14:44:29", - "attachment": "/api/specify/attachment/154/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 154, - "resource_uri": "/api/specify/collectionobjectattachment/154/"}], - "id": 1281, - "timestampcreated": "2003-10-06T12:14:42", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T04:08:57", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14463/", - "subspqualifier": null, - "guid": "73ee6023-febe-11e2-82ac-bc305ba00e24", - "id": 1855, - "preferredtaxon": "/api/specify/taxon/14463/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1281/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-10-06T12:14:42", - "version": 1, - "timestampmodified": "2007-12-05T16:08:57", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/1855/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/368/", - "catalogeddate": "2003-10-06", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40370, - "number42": null, - "timestampcreated": "2003-10-06T12:14:42", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "53mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40370/", - "number8": null, - "number9": null, - "text2": "4521", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40370", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1281", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1281/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=31206", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=31206", - "id": 31206, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1380/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:55:36", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=31206", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=31206", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=31206", - "resource_uri": "/api/specify/preparation/31206/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1380", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031849", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1380/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:49", - "version": 0, - "timestampmodified": "2012-10-03T14:45:49", - "attachment": "/api/specify/attachment/561/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 561, - "resource_uri": "/api/specify/collectionobjectattachment/561/"}], - "id": 1380, - "timestampcreated": "2003-02-12T09:55:35", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T09:20:05", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14659/", - "subspqualifier": null, - "guid": "74c1dd92-febe-11e2-82ac-bc305ba00e24", - "id": 6016, - "preferredtaxon": "/api/specify/taxon/14659/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1380/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:55:35", - "version": 1, - "timestampmodified": "2007-12-05T09:20:05", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/6016/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9480/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40376, - "number42": null, - "timestampcreated": "2003-02-12T09:55:35", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "22mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40376/", - "number8": null, - "number9": null, - "text2": "4820", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40376", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1380", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1380/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=6468", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=6468", - "id": 6468, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1433/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2005-12-02T16:19:08", - "version": 1, - "timestampmodified": "2005-12-02T16:19:08", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=6468", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=6468", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=6468", - "resource_uri": "/api/specify/preparation/6468/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1433", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000037807", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1433/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:23", - "version": 0, - "timestampmodified": "2012-10-03T14:44:23", - "attachment": "/api/specify/attachment/96/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 96, - "resource_uri": "/api/specify/collectionobjectattachment/96/"}], - "id": 1433, - "timestampcreated": "2005-12-02T04:28:07", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T04:22:49", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14211/", - "subspqualifier": null, - "guid": "74c3f4f2-febe-11e2-82ac-bc305ba00e24", - "id": 6408, - "preferredtaxon": "/api/specify/taxon/14211/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1433/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2005-12-02T16:28:07", - "version": 1, - "timestampmodified": "2007-12-05T16:22:49", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "2005-08-30", - "featureorbasis": null, - "determiner": "/api/specify/agent/847/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/6408/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9893/", - "catalogeddate": "2005-12-02", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40379, - "number42": null, - "timestampcreated": "2005-12-02T04:28:07", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "34mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40379/", - "number8": null, - "number9": null, - "text2": "4090", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40379", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1433", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1433/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=40899", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=40899", - "id": 40899, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1514/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:57:55", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=40899", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=40899", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=40899", - "resource_uri": "/api/specify/preparation/40899/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1514", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031989", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1514/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:38", - "version": 0, - "timestampmodified": "2012-10-03T14:45:38", - "attachment": "/api/specify/attachment/420/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 420, - "resource_uri": "/api/specify/collectionobjectattachment/420/"}], - "id": 1514, - "timestampcreated": "2003-02-12T09:57:55", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T01:22:04", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13751/", - "subspqualifier": null, - "guid": "74b19155-febe-11e2-82ac-bc305ba00e24", - "id": 4328, - "preferredtaxon": "/api/specify/taxon/13751/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1514/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:57:55", - "version": 1, - "timestampmodified": "2007-12-05T13:22:04", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/4328/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/8668/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40386, - "number42": null, - "timestampcreated": "2003-02-12T09:57:55", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "118mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40386/", - "number8": null, - "number9": null, - "text2": "4198", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40386", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1514", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1514/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=9434", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=9434", - "id": 9434, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1542/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T11:21:24", - "version": 1, - "timestampmodified": "2003-06-19T11:21:14", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=9434", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=9434", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=9434", - "resource_uri": "/api/specify/preparation/9434/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1542", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032553", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1542/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:33", - "version": 0, - "timestampmodified": "2012-10-03T14:44:33", - "attachment": "/api/specify/attachment/198/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 198, - "resource_uri": "/api/specify/collectionobjectattachment/198/"}], - "id": 1542, - "timestampcreated": "2003-06-19T11:20:58", - "yesno4": null, - "version": 1, - "timestampmodified": "2012-08-08T11:43:49", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13522/", - "subspqualifier": null, - "guid": "74b3c705-febe-11e2-82ac-bc305ba00e24", - "id": 4444, - "preferredtaxon": "/api/specify/taxon/13522/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1542/", - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-06-19T11:20:58", - "version": 1, - "timestampmodified": "2012-08-08T11:43:49", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/4444/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9072/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40389, - "number42": null, - "timestampcreated": "2003-06-19T11:20:58", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "145 mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40389/", - "number8": null, - "number9": null, - "text2": "4686", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40389", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1542", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1542/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=11524", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=11524", - "id": 11524, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1568/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T12:03:57", - "version": 1, - "timestampmodified": "2003-06-19T11:45:55", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=11524", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=11524", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=11524", - "resource_uri": "/api/specify/preparation/11524/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1568", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032579", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1568/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:30", - "version": 0, - "timestampmodified": "2012-10-03T14:44:30", - "attachment": "/api/specify/attachment/171/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 171, - "resource_uri": "/api/specify/collectionobjectattachment/171/"}], - "id": 1568, - "timestampcreated": "2003-06-19T12:03:13", - "yesno4": null, - "version": 1, - "timestampmodified": "2012-08-08T11:44:31", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14203/", - "subspqualifier": null, - "guid": "74c44a6e-febe-11e2-82ac-bc305ba00e24", - "id": 6446, - "preferredtaxon": "/api/specify/taxon/14203/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1568/", - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-06-19T12:03:14", - "version": 1, - "timestampmodified": "2012-08-08T11:44:31", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/6446/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9525/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40390, - "number42": null, - "timestampcreated": "2003-06-19T12:03:13", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "58 mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40390/", - "number8": null, - "number9": null, - "text2": "4221", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40390", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1568", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1568/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=40901", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=40901", - "id": 40901, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1591/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:58:20", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=40901", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=40901", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=40901", - "resource_uri": "/api/specify/preparation/40901/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1591", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032013", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1591/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:36", - "version": 0, - "timestampmodified": "2012-10-03T14:45:36", - "attachment": "/api/specify/attachment/397/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 397, - "resource_uri": "/api/specify/collectionobjectattachment/397/"}], - "id": 1591, - "timestampcreated": "2003-02-12T09:58:19", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T01:30:46", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13952/", - "subspqualifier": null, - "guid": "74bc10e5-febe-11e2-82ac-bc305ba00e24", - "id": 5034, - "preferredtaxon": "/api/specify/taxon/13952/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1591/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:58:19", - "version": 1, - "timestampmodified": "2007-12-05T13:30:46", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/5034/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9228/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40393, - "number42": null, - "timestampcreated": "2003-02-12T09:58:19", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "85mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40393/", - "number8": null, - "number9": null, - "text2": "4650", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40393", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1591", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1591/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=39716", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=39716", - "id": 39716, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1636/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:55:08", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=39716", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=39716", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=39716", - "resource_uri": "/api/specify/preparation/39716/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1636", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031822", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1636/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:51", - "version": 0, - "timestampmodified": "2012-10-03T14:45:51", - "attachment": "/api/specify/attachment/587/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 587, - "resource_uri": "/api/specify/collectionobjectattachment/587/"}], - "id": 1636, - "timestampcreated": "2003-02-12T09:55:08", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T09:12:45", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13255/", - "subspqualifier": null, - "guid": "7851ec68-febe-11e2-82ac-bc305ba00e24", - "id": 38439, - "preferredtaxon": "/api/specify/taxon/13255/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1636/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:55:08", - "version": 1, - "timestampmodified": "2007-12-05T09:12:45", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/38439/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9788/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40395, - "number42": null, - "timestampcreated": "2003-02-12T09:55:08", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "43mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40395/", - "number8": null, - "number9": null, - "text2": "4899", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40395", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1636", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1636/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=13796", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=13796", - "id": 13796, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1668/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:56:34", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=13796", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=13796", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=13796", - "resource_uri": "/api/specify/preparation/13796/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1668", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031909", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1668/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:45", - "version": 0, - "timestampmodified": "2012-10-03T14:45:45", - "attachment": "/api/specify/attachment/499/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 499, - "resource_uri": "/api/specify/collectionobjectattachment/499/"}], - "id": 1668, - "timestampcreated": "2003-02-12T09:56:33", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T09:46:13", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14068/", - "subspqualifier": null, - "guid": "73f51775-febe-11e2-82ac-bc305ba00e24", - "id": 2996, - "preferredtaxon": "/api/specify/taxon/14068/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1668/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:56:33", - "version": 1, - "timestampmodified": "2007-12-05T09:46:13", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/2996/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/726/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40398, - "number42": null, - "timestampcreated": "2003-02-12T09:56:33", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "58mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40398/", - "number8": null, - "number9": null, - "text2": "4268", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40398", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1668", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1668/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=3309", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=3309", - "id": 3309, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1707/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-10-06T12:09:49", - "version": 1, - "timestampmodified": "2003-10-06T12:09:49", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=3309", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=3309", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=3309", - "resource_uri": "/api/specify/preparation/3309/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1707", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032937", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1707/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:29", - "version": 0, - "timestampmodified": "2012-10-03T14:44:29", - "attachment": "/api/specify/attachment/157/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 157, - "resource_uri": "/api/specify/collectionobjectattachment/157/"}], - "id": 1707, - "timestampcreated": "2003-10-06T12:14:42", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T04:08:22", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13783/", - "subspqualifier": null, - "guid": "784997b6-febe-11e2-82ac-bc305ba00e24", - "id": 37146, - "preferredtaxon": "/api/specify/taxon/13783/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1707/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-10-06T12:14:42", - "version": 1, - "timestampmodified": "2007-12-05T16:08:22", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/37146/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/791/", - "catalogeddate": "2003-10-06", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40401, - "number42": null, - "timestampcreated": "2003-10-06T12:14:42", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "38mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40401/", - "number8": null, - "number9": null, - "text2": "4034", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40401", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1707", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1707/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=7461", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=7461", - "id": 7461, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1708/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:55:09", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=7461", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=7461", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=7461", - "resource_uri": "/api/specify/preparation/7461/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1708", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031823", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1708/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:51", - "version": 0, - "timestampmodified": "2012-10-03T14:45:51", - "attachment": "/api/specify/attachment/586/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 586, - "resource_uri": "/api/specify/collectionobjectattachment/586/"}], - "id": 1708, - "timestampcreated": "2003-02-12T09:55:09", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T09:12:59", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14503/", - "subspqualifier": null, - "guid": "7854e25c-febe-11e2-82ac-bc305ba00e24", - "id": 38949, - "preferredtaxon": "/api/specify/taxon/14503/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1708/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:55:09", - "version": 1, - "timestampmodified": "2007-12-05T09:12:59", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/38949/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9850/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40402, - "number42": null, - "timestampcreated": "2003-02-12T09:55:09", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "70mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40402/", - "number8": null, - "number9": null, - "text2": "4219", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40402", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1708", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1708/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=7069", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=7069", - "id": 7069, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1753/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:57:34", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=7069", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=7069", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=7069", - "resource_uri": "/api/specify/preparation/7069/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1753", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031968", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1753/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:40", - "version": 0, - "timestampmodified": "2012-10-03T14:45:40", - "attachment": "/api/specify/attachment/441/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 441, - "resource_uri": "/api/specify/collectionobjectattachment/441/"}], - "id": 1753, - "timestampcreated": "2003-02-12T09:57:33", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T01:17:33", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14262/", - "subspqualifier": null, - "guid": "7886bc23-febe-11e2-82ac-bc305ba00e24", - "id": 43219, - "preferredtaxon": "/api/specify/taxon/14262/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1753/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:57:33", - "version": 1, - "timestampmodified": "2007-12-05T13:17:33", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/43219/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1288/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40406, - "number42": null, - "timestampcreated": "2003-02-12T09:57:33", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "34mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40406/", - "number8": null, - "number9": null, - "text2": "4550", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40406", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1753", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1753/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=25200", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=25200", - "id": 25200, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1858/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T11:33:39", - "version": 1, - "timestampmodified": "2003-06-19T11:30:19", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=25200", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=25200", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=25200", - "resource_uri": "/api/specify/preparation/25200/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1858", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032560", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1858/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:32", - "version": 0, - "timestampmodified": "2012-10-03T14:44:32", - "attachment": "/api/specify/attachment/191/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 191, - "resource_uri": "/api/specify/collectionobjectattachment/191/"}], - "id": 1858, - "timestampcreated": "2003-06-19T11:32:14", - "yesno4": null, - "version": 1, - "timestampmodified": "2012-08-07T03:10:09", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13866/", - "subspqualifier": null, - "guid": "73f001a6-febe-11e2-82ac-bc305ba00e24", - "id": 2159, - "preferredtaxon": "/api/specify/taxon/13866/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1858/", - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-06-19T11:32:14", - "version": 1, - "timestampmodified": "2012-08-07T15:10:09", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/2159/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/880/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40415, - "number42": null, - "timestampcreated": "2003-06-19T11:32:14", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "50 mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40415/", - "number8": null, - "number9": null, - "text2": "4644", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40415", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1858", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1858/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=19771", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=19771", - "id": 19771, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1877/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:58:26", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=19771", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=19771", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=19771", - "resource_uri": "/api/specify/preparation/19771/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1877", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032020", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1877/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:36", - "version": 0, - "timestampmodified": "2012-10-03T14:45:36", - "attachment": "/api/specify/attachment/390/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 390, - "resource_uri": "/api/specify/collectionobjectattachment/390/"}], - "id": 1877, - "timestampcreated": "2003-02-12T09:58:26", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T03:11:52", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13796/", - "subspqualifier": null, - "guid": "784dfb35-febe-11e2-82ac-bc305ba00e24", - "id": 37717, - "preferredtaxon": "/api/specify/taxon/13796/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1877/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:58:26", - "version": 1, - "timestampmodified": "2007-12-05T15:11:52", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/37717/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9850/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40417, - "number42": null, - "timestampcreated": "2003-02-12T09:58:26", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "124mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40417/", - "number8": null, - "number9": null, - "text2": "4203", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40417", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1877", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1877/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=5561", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=5561", - "id": 5561, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/1978/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-02-12T09:55:55", - "version": 1, - "timestampmodified": "2003-02-12T09:54:17", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=5561", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=5561", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=5561", - "resource_uri": "/api/specify/preparation/5561/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=1978", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000031870", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/1978/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:45:48", - "version": 0, - "timestampmodified": "2012-10-03T14:45:48", - "attachment": "/api/specify/attachment/539/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 539, - "resource_uri": "/api/specify/collectionobjectattachment/539/"}], - "id": 1978, - "timestampcreated": "2003-02-12T09:55:55", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T09:36:10", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/13835/", - "subspqualifier": null, - "guid": "78510cff-febe-11e2-82ac-bc305ba00e24", - "id": 38279, - "preferredtaxon": "/api/specify/taxon/13835/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/1978/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2003-02-12T09:55:55", - "version": 1, - "timestampmodified": "2007-12-05T09:36:10", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1051/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/38279/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/1313/", - "catalogeddate": "2003-02-12", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40425, - "number42": null, - "timestampcreated": "2003-02-12T09:55:55", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "97mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40425/", - "number8": null, - "number9": null, - "text2": "4712", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40425", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=1978", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1700/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/1978/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=25198", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=25198", - "id": 25198, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/2048/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-06-19T11:45:18", - "version": 1, - "timestampmodified": "2003-06-19T11:45:09", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=25198", - "countamt": 2, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=25198", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=25198", - "resource_uri": "/api/specify/preparation/25198/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=2048", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000032567", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/2/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/2048/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:31", - "version": 0, - "timestampmodified": "2012-10-03T14:44:31", - "attachment": "/api/specify/attachment/183/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 183, - "resource_uri": "/api/specify/collectionobjectattachment/183/"}, - {"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/2048/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:31", - "version": 0, - "timestampmodified": "2012-10-03T14:44:31", - "attachment": "/api/specify/attachment/184/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 184, - "resource_uri": "/api/specify/collectionobjectattachment/184/"}], - "id": 2048, - "timestampcreated": "2003-06-19T11:42:38", - "yesno4": null, - "version": 2, - "timestampmodified": "2012-06-20T03:08:54", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14060/", - "subspqualifier": null, - "guid": "73e72e19-febe-11e2-82ac-bc305ba00e24", - "id": 480, - "preferredtaxon": "/api/specify/taxon/14060/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/2048/", - "modifiedbyagent": "/api/specify/agent/2/", - "timestampcreated": "2003-06-19T11:42:38", - "version": 1, - "timestampmodified": "2012-06-20T15:08:54", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/1002/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/480/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/542/", - "catalogeddate": "2003-06-19", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40431, - "number42": null, - "timestampcreated": "2003-06-19T11:42:38", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "50-58 mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40431/", - "number8": null, - "number9": null, - "text2": "4048, 4049", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40431", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=2048", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/2048/"}], - "meta": {"total_count": 1232, - "limit": 20, - "offset": 20}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=000000001&collection=4&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=000000001&collection=4&offset=0.json deleted file mode 100644 index a98ea76970c..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=000000001&collection=4&offset=0.json +++ /dev/null @@ -1,209 +0,0 @@ -{"objects": [{"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=9092", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=9092", - "id": 9092, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6846/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 1, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=9092", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=9092", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=9092", - "resource_uri": "/api/specify/preparation/9092/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6846", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000001", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/3/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6846, - "timestampcreated": "1999-10-25T11:53:35", - "yesno4": null, - "version": 2, - "timestampmodified": "2013-01-08T09:25:46", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11355/", - "subspqualifier": null, - "guid": "75130245-febe-11e2-82ac-bc305ba00e24", - "id": 8109, - "preferredtaxon": "/api/specify/taxon/11355/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6846/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:34", - "version": 1, - "timestampmodified": "2002-02-15T09:04:25", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 35.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8109/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/706/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1331, - "number42": null, - "timestampcreated": "1999-12-09T05:26:28", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-15T09:04:25", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1331/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1331", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6846", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6846/"}], - "meta": {"total_count": 1, - "limit": 20, - "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=000035394&collection=4&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=000035394&collection=4&offset=0.json deleted file mode 100644 index 2afb78a27cd..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=000035394&collection=4&offset=0.json +++ /dev/null @@ -1,209 +0,0 @@ -{"objects": [{"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=20462", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=20462", - "id": 20462, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/100/", - "modifiedbyagent": "/api/specify/agent/66/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2003-09-09T14:04:16", - "version": 0, - "timestampmodified": "2004-11-12T11:25:09", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=20462", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=20462", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=20462", - "resource_uri": "/api/specify/preparation/20462/"}], - "accession": "/api/specify/accession/19/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=100", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000035394", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/66/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 100, - "timestampcreated": "2003-09-09T02:04:24", - "yesno4": null, - "version": 0, - "timestampmodified": "2004-12-15T03:40:24", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/10397/", - "subspqualifier": null, - "guid": "74af2539-febe-11e2-82ac-bc305ba00e24", - "id": 3911, - "preferredtaxon": "/api/specify/taxon/10397/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/100/", - "modifiedbyagent": "/api/specify/agent/66/", - "timestampcreated": "2003-09-09T14:04:24", - "version": 1, - "timestampmodified": "2004-12-15T15:40:24", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "2004-12-15", - "featureorbasis": null, - "determiner": "/api/specify/agent/66/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/3911/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/724/", - "catalogeddate": "2004-12-15", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 42395, - "number42": null, - "timestampcreated": "2003-09-09T14:04:24", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "32mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/42395/", - "number8": null, - "number9": null, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=42395", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=100", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/66/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/100/"}], - "meta": {"total_count": 1, - "limit": 20, - "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=000037799&collection=4&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=000037799&collection=4&offset=0.json deleted file mode 100644 index bf6d45e4a87..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=000037799&collection=4&offset=0.json +++ /dev/null @@ -1,220 +0,0 @@ -{"objects": [{"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=3752", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=3752", - "id": 3752, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/102/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2005-12-02T16:19:08", - "version": 1, - "timestampmodified": "2005-12-02T16:19:08", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=3752", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=3752", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=3752", - "resource_uri": "/api/specify/preparation/3752/"}], - "accession": "/api/specify/accession/64/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=102", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000037799", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [{"ordinal": 0, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/102/", - "modifiedbyagent": null, - "timestampcreated": "2012-10-03T14:44:24", - "version": 0, - "timestampmodified": "2012-10-03T14:44:24", - "attachment": "/api/specify/attachment/104/", - "remarks": null, - "createdbyagent": "/api/specify/agent/3/", - "id": 104, - "resource_uri": "/api/specify/collectionobjectattachment/104/"}], - "id": 102, - "timestampcreated": "2005-12-02T04:28:07", - "yesno4": null, - "version": 1, - "timestampmodified": "2007-12-05T04:21:24", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/14040/", - "subspqualifier": null, - "guid": "785f26d5-febe-11e2-82ac-bc305ba00e24", - "id": 40308, - "preferredtaxon": "/api/specify/taxon/14040/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/102/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "2005-12-02T16:28:07", - "version": 1, - "timestampmodified": "2007-12-05T16:21:24", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "determineddate": "2005-08-30", - "featureorbasis": null, - "determiner": "/api/specify/agent/847/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/40308/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/874/", - "catalogeddate": "2005-12-02", - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 40291, - "number42": null, - "timestampcreated": "2005-12-02T04:28:07", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": null, - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": "40mm SL", - "text12": null, - "number37": null, - "timestampmodified": null, - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": null, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": null, - "number1": null, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/40291/", - "number8": null, - "number9": null, - "text2": "4805", - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=40291", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=102", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1514/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": null, - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/102/"}], - "meta": {"total_count": 1, - "limit": 20, - "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=999999999&collection=4&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=999999999&collection=4&offset=0.json deleted file mode 100644 index aee600e4c39..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.catalognumber=999999999&collection=4&offset=0.json +++ /dev/null @@ -1 +0,0 @@ -{"objects": [], "meta": {"total_count": 0, "limit": 20, "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.collection=4&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.collection=4&offset=0.json deleted file mode 100644 index 5f7d342e291..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collectionobject.collection=4&offset=0.json +++ /dev/null @@ -1,4158 +0,0 @@ -{"objects": [{"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=9092", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=9092", - "id": 9092, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6846/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 1, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=9092", - "countamt": 1, - "prepareddateprecision": 1, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=9092", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=9092", - "resource_uri": "/api/specify/preparation/9092/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6846", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000001", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/3/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6846, - "timestampcreated": "1999-10-25T11:53:35", - "yesno4": null, - "version": 2, - "timestampmodified": "2013-01-08T09:25:46", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11355/", - "subspqualifier": null, - "guid": "75130245-febe-11e2-82ac-bc305ba00e24", - "id": 8109, - "preferredtaxon": "/api/specify/taxon/11355/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6846/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:34", - "version": 1, - "timestampmodified": "2002-02-15T09:04:25", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 35.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8109/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/706/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1331, - "number42": null, - "timestampcreated": "1999-12-09T05:26:28", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-15T09:04:25", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1331/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1331", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6846", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": 1, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6846/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=37238", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=37238", - "id": 37238, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6847/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=37238", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=37238", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=37238", - "resource_uri": "/api/specify/preparation/37238/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6847", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000002", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6847, - "timestampcreated": "1999-10-25T11:53:50", - "yesno4": null, - "version": 0, - "timestampmodified": "2002-02-14T12:47:23", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11355/", - "subspqualifier": null, - "guid": "7513034f-febe-11e2-82ac-bc305ba00e24", - "id": 8110, - "preferredtaxon": "/api/specify/taxon/11355/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6847/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:34", - "version": 1, - "timestampmodified": "2002-02-14T12:47:23", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 35.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8110/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/246/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1332, - "number42": null, - "timestampcreated": "1999-12-09T05:26:35", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-14T12:47:23", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1332/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1332", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6847", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6847/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=3839", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=3839", - "id": 3839, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6848/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=3839", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=3839", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=3839", - "resource_uri": "/api/specify/preparation/3839/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6848", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000003", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6848, - "timestampcreated": "1999-10-25T11:53:58", - "yesno4": null, - "version": 0, - "timestampmodified": "2002-02-14T12:47:40", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11355/", - "subspqualifier": null, - "guid": "75130455-febe-11e2-82ac-bc305ba00e24", - "id": 8111, - "preferredtaxon": "/api/specify/taxon/11355/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6848/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:34", - "version": 1, - "timestampmodified": "2002-02-14T12:47:40", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 35.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8111/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/8915/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1333, - "number42": null, - "timestampcreated": "1999-12-09T05:26:39", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-14T12:47:40", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1333/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1333", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6848", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6848/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=32194", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=32194", - "id": 32194, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6849/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=32194", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=32194", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=32194", - "resource_uri": "/api/specify/preparation/32194/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6849", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000004", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6849, - "timestampcreated": "1999-10-25T11:54:00", - "yesno4": null, - "version": 0, - "timestampmodified": "2002-02-14T12:47:56", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11354/", - "subspqualifier": null, - "guid": "7513055c-febe-11e2-82ac-bc305ba00e24", - "id": 8112, - "preferredtaxon": "/api/specify/taxon/11354/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6849/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:33", - "version": 1, - "timestampmodified": "2002-02-14T12:47:56", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 35.0, - "remarks": "Head only", - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8112/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/328/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1334, - "number42": null, - "timestampcreated": "1999-12-09T05:26:39", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-14T12:47:56", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1334/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1334", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6849", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6849/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=4525", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=4525", - "id": 4525, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6850/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=4525", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=4525", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=4525", - "resource_uri": "/api/specify/preparation/4525/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6850", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000005", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6850, - "timestampcreated": "1999-10-25T11:54:01", - "yesno4": null, - "version": 0, - "timestampmodified": "2002-02-14T12:48:13", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11354/", - "subspqualifier": null, - "guid": "75130667-febe-11e2-82ac-bc305ba00e24", - "id": 8113, - "preferredtaxon": "/api/specify/taxon/11354/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6850/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:33", - "version": 1, - "timestampmodified": "2002-02-14T12:48:13", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 35.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8113/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9870/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1335, - "number42": null, - "timestampcreated": "1999-12-09T05:26:40", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-14T12:48:13", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1335/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1335", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6850", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6850/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=151", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=151", - "id": 151, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6851/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=151", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=151", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=151", - "resource_uri": "/api/specify/preparation/151/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6851", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000006", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6851, - "timestampcreated": "1999-10-25T11:54:01", - "yesno4": null, - "version": 0, - "timestampmodified": "2003-08-08T11:35:23", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11354/", - "subspqualifier": null, - "guid": "75130772-febe-11e2-82ac-bc305ba00e24", - "id": 8114, - "preferredtaxon": "/api/specify/taxon/11354/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6851/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:33", - "version": 1, - "timestampmodified": "2003-08-08T11:35:23", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 35.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8114/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/5255/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1336, - "number42": null, - "timestampcreated": "1999-12-09T05:26:40", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-14T12:48:24", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1336/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1336", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6851", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6851/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=17924", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=17924", - "id": 17924, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6852/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:09:13", - "version": 0, - "timestampmodified": "2002-07-29T16:09:13", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=17924", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=17924", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/1/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=17924", - "resource_uri": "/api/specify/preparation/17924/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6852", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000007", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6852, - "timestampcreated": "1999-10-25T11:54:02", - "yesno4": null, - "version": 0, - "timestampmodified": "2003-08-08T11:36:25", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11354/", - "subspqualifier": null, - "guid": "7513087b-febe-11e2-82ac-bc305ba00e24", - "id": 8115, - "preferredtaxon": "/api/specify/taxon/11354/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6852/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:33", - "version": 1, - "timestampmodified": "2003-08-08T11:36:25", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 35.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8115/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/5255/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1337, - "number42": null, - "timestampcreated": "1999-12-09T05:26:41", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 0.0, - "timestampmodified": "2002-02-14T12:12:44", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 1.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1337/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1337", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6852", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6852/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=23150", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=23150", - "id": 23150, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6853/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=23150", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=23150", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=23150", - "resource_uri": "/api/specify/preparation/23150/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6853", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000008", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6853, - "timestampcreated": "1999-10-25T11:54:03", - "yesno4": null, - "version": 0, - "timestampmodified": "2002-02-14T12:12:56", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11354/", - "subspqualifier": null, - "guid": "75130982-febe-11e2-82ac-bc305ba00e24", - "id": 8116, - "preferredtaxon": "/api/specify/taxon/11354/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6853/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:33", - "version": 1, - "timestampmodified": "2002-02-14T12:12:56", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 35.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8116/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/7780/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1338, - "number42": null, - "timestampcreated": "1999-12-09T05:26:41", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-14T12:12:56", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1338/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1338", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6853", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6853/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=9453", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=9453", - "id": 9453, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6854/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=9453", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=9453", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=9453", - "resource_uri": "/api/specify/preparation/9453/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6854", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000009", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6854, - "timestampcreated": "1999-10-25T11:54:03", - "yesno4": null, - "version": 0, - "timestampmodified": "2003-08-08T11:34:42", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11354/", - "subspqualifier": null, - "guid": "75130a8b-febe-11e2-82ac-bc305ba00e24", - "id": 8117, - "preferredtaxon": "/api/specify/taxon/11354/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6854/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:33", - "version": 1, - "timestampmodified": "2003-08-08T11:34:42", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 35.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8117/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/5255/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1339, - "number42": null, - "timestampcreated": "1999-12-09T05:26:41", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-14T12:13:10", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1339/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1339", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6854", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6854/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=40851", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=40851", - "id": 40851, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6855/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=40851", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=40851", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=40851", - "resource_uri": "/api/specify/preparation/40851/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6855", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000010", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6855, - "timestampcreated": "1999-10-25T11:53:35", - "yesno4": null, - "version": 0, - "timestampmodified": "2003-08-08T11:34:57", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11354/", - "subspqualifier": null, - "guid": "75130b94-febe-11e2-82ac-bc305ba00e24", - "id": 8118, - "preferredtaxon": "/api/specify/taxon/11354/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6855/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:33", - "version": 1, - "timestampmodified": "2003-08-08T11:34:57", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 35.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8118/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/5255/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1340, - "number42": null, - "timestampcreated": "1999-12-09T05:26:28", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-14T12:13:21", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1340/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1340", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6855", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6855/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=12190", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=12190", - "id": 12190, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6856/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=12190", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=12190", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=12190", - "resource_uri": "/api/specify/preparation/12190/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6856", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000011", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6856, - "timestampcreated": "1999-10-25T11:53:36", - "yesno4": null, - "version": 0, - "timestampmodified": "2002-02-15T09:05:45", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11184/", - "subspqualifier": null, - "guid": "75130c9e-febe-11e2-82ac-bc305ba00e24", - "id": 8119, - "preferredtaxon": "/api/specify/taxon/11184/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6856/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:25", - "version": 1, - "timestampmodified": "2002-02-15T09:05:45", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 39.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8119/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/8689/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1341, - "number42": null, - "timestampcreated": "1999-12-09T05:26:28", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-15T09:05:45", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1341/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1341", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6856", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6856/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=14006", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=14006", - "id": 14006, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6857/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=14006", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=14006", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=14006", - "resource_uri": "/api/specify/preparation/14006/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6857", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000012", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6857, - "timestampcreated": "1999-10-25T11:53:36", - "yesno4": null, - "version": 0, - "timestampmodified": "2002-02-15T09:06:06", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11184/", - "subspqualifier": null, - "guid": "75130da4-febe-11e2-82ac-bc305ba00e24", - "id": 8120, - "preferredtaxon": "/api/specify/taxon/11184/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6857/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:25", - "version": 1, - "timestampmodified": "2002-02-15T09:06:06", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 39.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8120/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/343/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1342, - "number42": null, - "timestampcreated": "1999-12-09T05:26:28", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-15T09:06:06", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1342/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1342", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6857", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6857/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=5760", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=5760", - "id": 5760, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6858/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=5760", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=5760", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=5760", - "resource_uri": "/api/specify/preparation/5760/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6858", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000013", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6858, - "timestampcreated": "1999-10-25T11:53:36", - "yesno4": null, - "version": 0, - "timestampmodified": "2002-02-14T12:49:33", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11184/", - "subspqualifier": null, - "guid": "75130ea8-febe-11e2-82ac-bc305ba00e24", - "id": 8121, - "preferredtaxon": "/api/specify/taxon/11184/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6858/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:25", - "version": 1, - "timestampmodified": "2002-02-14T12:49:33", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 39.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8121/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9700/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1343, - "number42": null, - "timestampcreated": "1999-12-09T05:26:28", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-14T12:49:33", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1343/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1343", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6858", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6858/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=39005", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=39005", - "id": 39005, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6859/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=39005", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=39005", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=39005", - "resource_uri": "/api/specify/preparation/39005/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6859", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000014", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6859, - "timestampcreated": "1999-10-25T11:53:36", - "yesno4": null, - "version": 0, - "timestampmodified": "2003-09-15T03:54:33", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11184/", - "subspqualifier": null, - "guid": "75130fae-febe-11e2-82ac-bc305ba00e24", - "id": 8122, - "preferredtaxon": "/api/specify/taxon/11184/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6859/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:25", - "version": 1, - "timestampmodified": "2003-09-15T15:54:33", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 39.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8122/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/9700/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1344, - "number42": null, - "timestampcreated": "1999-12-09T05:26:28", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-14T12:49:48", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1344/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1344", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6859", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6859/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=17012", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=17012", - "id": 17012, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6860/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=17012", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=17012", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=17012", - "resource_uri": "/api/specify/preparation/17012/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6860", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000015", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6860, - "timestampcreated": "1999-10-25T11:53:38", - "yesno4": null, - "version": 0, - "timestampmodified": "2003-09-24T09:18:28", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/11184/", - "subspqualifier": null, - "guid": "751310b2-febe-11e2-82ac-bc305ba00e24", - "id": 8123, - "preferredtaxon": "/api/specify/taxon/11184/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6860/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:25", - "version": 1, - "timestampmodified": "2003-09-24T09:18:28", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 39.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8123/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/5488/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": "Jar", - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1345, - "number42": null, - "timestampcreated": "1999-12-09T05:26:29", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2001-03-05T11:27:15", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1345/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1345", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6860", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6860/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=9178", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=9178", - "id": 9178, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6861/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=9178", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=9178", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=9178", - "resource_uri": "/api/specify/preparation/9178/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6861", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000016", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6861, - "timestampcreated": "1999-10-25T11:53:39", - "yesno4": null, - "version": 0, - "timestampmodified": "2003-09-24T09:18:31", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/10740/", - "subspqualifier": null, - "guid": "751311b4-febe-11e2-82ac-bc305ba00e24", - "id": 8124, - "preferredtaxon": "/api/specify/taxon/10740/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6861/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:08", - "version": 1, - "timestampmodified": "2003-09-24T09:18:31", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 69.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8124/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/7804/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": "Jar", - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1346, - "number42": null, - "timestampcreated": "1999-12-09T05:26:30", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2001-03-05T11:27:27", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1346/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1346", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6861", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6861/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=28899", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=28899", - "id": 28899, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6862/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=28899", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=28899", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=28899", - "resource_uri": "/api/specify/preparation/28899/"}, - {"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=35450", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=35450", - "id": 35450, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6862/", - "modifiedbyagent": "/api/specify/agent/1514/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-10-22T10:35:33", - "version": 0, - "timestampmodified": "2002-10-22T10:35:32", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": "Scales only", - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=35450", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=35450", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/1/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=35450", - "resource_uri": "/api/specify/preparation/35450/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6862", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000017", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6862, - "timestampcreated": "1999-10-25T11:53:41", - "yesno4": null, - "version": 0, - "timestampmodified": "2003-08-08T02:11:42", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/10740/", - "subspqualifier": null, - "guid": "751312b8-febe-11e2-82ac-bc305ba00e24", - "id": 8125, - "preferredtaxon": "/api/specify/taxon/10740/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6862/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:08", - "version": 1, - "timestampmodified": "2003-08-08T14:11:42", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 69.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8125/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/117/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": null, - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1347, - "number42": null, - "timestampcreated": "1999-12-09T05:26:31", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2002-02-14T12:49:56", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1347/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1347", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6862", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6862/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=318", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=318", - "id": 318, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6863/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=318", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=318", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=318", - "resource_uri": "/api/specify/preparation/318/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6863", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000018", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6863, - "timestampcreated": "1999-10-25T11:53:44", - "yesno4": null, - "version": 0, - "timestampmodified": "2003-09-24T09:18:34", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/10740/", - "subspqualifier": null, - "guid": "751313b9-febe-11e2-82ac-bc305ba00e24", - "id": 8126, - "preferredtaxon": "/api/specify/taxon/10740/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6863/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:08", - "version": 1, - "timestampmodified": "2003-09-24T09:18:34", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 69.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8126/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/5931/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": "Jar", - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1348, - "number42": null, - "timestampcreated": "1999-12-09T05:26:32", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2001-03-05T11:27:44", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1348/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1348", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6863", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6863/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=2561", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=2561", - "id": 2561, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6864/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=2561", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=2561", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=2561", - "resource_uri": "/api/specify/preparation/2561/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6864", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000019", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6864, - "timestampcreated": "1999-10-25T11:53:47", - "yesno4": null, - "version": 0, - "timestampmodified": "2003-09-24T09:18:43", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/10740/", - "subspqualifier": null, - "guid": "751314bc-febe-11e2-82ac-bc305ba00e24", - "id": 8127, - "preferredtaxon": "/api/specify/taxon/10740/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6864/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:08", - "version": 1, - "timestampmodified": "2003-09-24T09:18:43", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 69.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8127/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/5931/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": "Jar", - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1349, - "number42": null, - "timestampcreated": "1999-12-09T05:26:34", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2001-03-05T11:27:57", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1349/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1349", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6864", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6864/"}, - {"deaccessioned": false, - "dnasequences": [], - "preparations": [{"storagelocation": null, - "loanpreparations": "/api/specify/loanpreparation/?preparation=8016", - "prepareddate": null, - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=8016", - "id": 8016, - "preparedbyagent": null, - "preparationattachments": [], - "collectionobject": "/api/specify/collectionobject/6865/", - "modifiedbyagent": "/api/specify/agent/2/", - "storage": null, - "preparationattrs": [], - "timestampcreated": "2002-07-29T16:08:46", - "version": 0, - "timestampmodified": "2002-07-29T16:08:46", - "yesno3": null, - "yesno1": null, - "yesno2": null, - "samplenumber": null, - "status": null, - "collectionmemberid": 4, - "description": null, - "text2": "Jar", - "text1": null, - "number2": null, - "number1": null, - "remarks": null, - "preparationattribute": null, - "giftpreparations": "/api/specify/giftpreparation/?preparation=8016", - "countamt": 1, - "prepareddateprecision": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=8016", - "createdbyagent": "/api/specify/agent/1/", - "preptype": "/api/specify/preptype/2/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=8016", - "resource_uri": "/api/specify/preparation/8016/"}], - "accession": "/api/specify/accession/155/", - "leftsiderels": "/api/specify/collectionrelationship/?leftside=6865", - "paleocontext": null, - "conservdescriptions": [], - "collectionmemberid": 4, - "otheridentifiers": [], - "catalognumber": "000000020", - "appraisal": null, - "inventorydate": null, - "guid": null, - "availability": null, - "altcatalognumber": null, - "container": null, - "sgrstatus": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "reservedtext": null, - "collectionobjectattachments": [], - "id": 6865, - "timestampcreated": "1999-10-25T11:53:50", - "yesno4": null, - "version": 0, - "timestampmodified": "2003-09-24T09:18:46", - "yesno3": null, - "determinations": [{"typestatusname": null, - "determinationcitations": [], - "taxon": "/api/specify/taxon/10740/", - "subspqualifier": null, - "guid": "751315c2-febe-11e2-82ac-bc305ba00e24", - "id": 8128, - "preferredtaxon": "/api/specify/taxon/10740/", - "confidence": null, - "collectionobject": "/api/specify/collectionobject/6865/", - "modifiedbyagent": "/api/specify/agent/1514/", - "timestampcreated": "1999-10-25T12:31:08", - "version": 1, - "timestampmodified": "2003-09-24T09:18:46", - "yesno1": false, - "yesno2": null, - "alternatename": null, - "method": null, - "collectionmemberid": 4, - "qualifier": null, - "text2": null, - "text1": null, - "number2": null, - "number1": 69.0, - "remarks": null, - "determineddate": null, - "featureorbasis": null, - "determiner": "/api/specify/agent/734/", - "varqualifier": null, - "createdbyagent": "/api/specify/agent/1/", - "iscurrent": true, - "addendum": null, - "resource_uri": "/api/specify/determination/8128/", - "determineddateprecision": 1, - "nameusage": null}], - "yesno1": null, - "yesno2": null, - "ocr": null, - "projectnumber": null, - "collectingevent": "/api/specify/collectingevent/5931/", - "catalogeddate": null, - "description": null, - "fieldnotebookpage": null, - "visibilitysetby": null, - "visibility": 0, - "text2": "Jar", - "notifications": null, - "collectionobjectattribute": {"number21": null, - "number20": null, - "number23": null, - "number22": null, - "number25": null, - "number24": null, - "number27": null, - "number26": null, - "number29": null, - "number28": null, - "text5": null, - "text13": null, - "yesno1": null, - "number30": null, - "yesno7": null, - "id": 1350, - "number42": null, - "timestampcreated": "1999-12-09T05:26:35", - "text9": null, - "number41": null, - "text15": null, - "modifiedbyagent": "/api/specify/agent/1514/", - "number40": null, - "text14": null, - "number36": null, - "yesno4": null, - "version": 0, - "text10": null, - "text11": null, - "text12": null, - "number37": 1.0, - "timestampmodified": "2001-03-05T11:28:06", - "yesno5": null, - "number34": null, - "number35": null, - "yesno3": null, - "number18": null, - "number19": null, - "collectionmemberid": 4, - "number38": 0.0, - "number39": null, - "number10": null, - "number11": null, - "number12": null, - "number13": null, - "number14": null, - "number15": null, - "number16": null, - "number17": null, - "number6": null, - "number7": null, - "number4": null, - "number5": null, - "number2": null, - "number3": null, - "text4": "Jar", - "number1": 0.0, - "remarks": null, - "text8": null, - "number31": null, - "number32": null, - "resource_uri": "/api/specify/collectionobjectattribute/1350/", - "number8": null, - "number9": 0.0, - "text2": null, - "yesno2": null, - "text3": null, - "text1": null, - "createdbyagent": "/api/specify/agent/1/", - "text6": null, - "number33": null, - "yesno6": null, - "collectionobjects": "/api/specify/collectionobject/?collectionobjectattribute=1350", - "text7": null}, - "text1": "known", - "number2": null, - "yesno5": null, - "rightsiderels": "/api/specify/collectionrelationship/?rightside=6865", - "number1": null, - "remarks": null, - "totalvalue": null, - "treatmentevents": [], - "name": null, - "restrictions": null, - "collectionobjectattrs": [], - "collectionobjectcitations": [], - "catalogeddateverbatim": null, - "text3": null, - "countamt": 1, - "exsiccataitems": [], - "objectcondition": null, - "containerowner": null, - "fieldnumber": null, - "cataloger": "/api/specify/agent/1067/", - "collection": "/api/specify/collection/4/", - "yesno6": null, - "modifier": " ", - "catalogeddateprecision": null, - "createdbyagent": "/api/specify/agent/1/", - "resource_uri": "/api/specify/collectionobject/6865/"}], - "meta": {"total_count": 41202, - "limit": 20, - "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collector.1343.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collector.1343.json deleted file mode 100644 index 29b0e2ff321..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collector.1343.json +++ /dev/null @@ -1,53 +0,0 @@ -{"agent": {"abbreviation": null, - "addresses": "/api/specify/address/?agent=638", - "agentattachments": "/api/specify/agentattachment/?agent=638", - "agentgeographies": "/api/specify/agentgeography/?agent=638", - "agentspecialties": "/api/specify/agentspecialty/?agent=638", - "agenttype": 1, - "collcontentcontact": null, - "collectors": "/api/specify/collector/?agent=638", - "colltechcontact": null, - "createdbyagent": "/api/specify/agent/1/", - "dateofbirth": null, - "dateofbirthprecision": null, - "dateofdeath": null, - "dateofdeathprecision": null, - "datetype": null, - "division": "/api/specify/division/2/", - "email": null, - "firstname": "W", - "groups": "/api/specify/groupperson/?group=638", - "guid": null, - "id": "638", - "initials": null, - "instcontentcontact": null, - "insttechcontact": null, - "interests": null, - "jobtitle": null, - "lastname": "Gorman", - "members": "/api/specify/groupperson/?member=638", - "middleinitial": "L", - "modifiedbyagent": "/api/specify/agent/1503/", - "organization": null, - "orgmembers": "/api/specify/agent/?organization=638", - "remarks": "", - "resource_uri": "/api/specify/agent/638/", - "specifyuser": null, - "timestampcreated": "2001-04-25T04:55:44", - "timestampmodified": "2001-04-25T04:55:44", - "title": "mr", - "url": null, - "variants": "/api/specify/agentvariant/?agent=638", - "version": 0}, - "collectingevent": "/api/specify/collectingevent/6006/", - "createdbyagent": "/api/specify/agent/1/", - "division": "/api/specify/division/2/", - "id": "1343", - "isprimary": true, - "modifiedbyagent": "/api/specify/agent/1503/", - "ordernumber": 2, - "remarks": "", - "resource_uri": "/api/specify/collector/1343/", - "timestampcreated": "2001-05-02T09:44:34", - "timestampmodified": "2001-05-02T09:44:34", - "version": 0} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collector.agent=634&collectingevent=715&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collector.agent=634&collectingevent=715&offset=0.json deleted file mode 100644 index 476d6b8cec6..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collector.agent=634&collectingevent=715&offset=0.json +++ /dev/null @@ -1,16 +0,0 @@ -{"objects": [{"collectingevent": "/api/specify/collectingevent/715/", - "division": "/api/specify/division/2/", - "ordernumber": 1, - "modifiedbyagent": "/api/specify/agent/66/", - "agent": "/api/specify/agent/634/", - "timestampcreated": "2001-04-24T09:22:44", - "version": 0, - "timestampmodified": "2004-04-29T12:04:37", - "remarks": null, - "createdbyagent": "/api/specify/agent/1/", - "isprimary": true, - "id": 417, - "resource_uri": "/api/specify/collector/417/"}], - "meta": {"total_count": 1, - "limit": 20, - "offset": 0}} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/collector.agent=66&collectingevent=715&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/collector.agent=66&collectingevent=715&offset=0.json deleted file mode 100644 index 3eb8976141a..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/collector.agent=66&collectingevent=715&offset=0.json +++ /dev/null @@ -1 +0,0 @@ -{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null, "total_count": 0}, "objects": []} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/determination.collectionobject=102&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/determination.collectionobject=102&offset=0.json deleted file mode 100644 index 3ab1350b50f..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/determination.collectionobject=102&offset=0.json +++ /dev/null @@ -1,71 +0,0 @@ -{"meta": {"limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total_count": 2}, - "objects": [{"addendum": null, - "alternatename": null, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/102/", - "confidence": "", - "createdbyagent": "/api/specify/agent/1/", - "determinationcitations": "/api/specify/determinationcitation/?determination=40156", - "determineddate": "2005-08-30", - "determineddateprecision": 1, - "determiner": "/api/specify/agent/841/", - "featureorbasis": null, - "id": "40156", - "iscurrent": true, - "method": null, - "modifiedbyagent": "/api/specify/agent/3/", - "nameusage": null, - "number1": null, - "number2": null, - "preferredtaxon": "/api/specify/taxon/14565/", - "qualifier": null, - "remarks": "", - "resource_uri": "/api/specify/determination/40156/", - "subspqualifier": null, - "taxon": "/api/specify/taxon/14565/", - "text1": "40mm SL", - "text2": null, - "timestampcreated": "2005-12-02T16:28:07", - "timestampmodified": "2012-04-12T11:31:49", - "typestatusname": "", - "varqualifier": null, - "version": 36, - "yesno1": false, - "yesno2": null}, - {"addendum": null, - "alternatename": null, - "collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/102/", - "confidence": null, - "createdbyagent": null, - "determinationcitations": "/api/specify/determinationcitation/?determination=43309", - "determineddate": null, - "determineddateprecision": null, - "determiner": "/api/specify/agent/3/", - "featureorbasis": null, - "id": "43309", - "iscurrent": false, - "method": null, - "modifiedbyagent": "/api/specify/agent/3/", - "nameusage": null, - "number1": null, - "number2": null, - "preferredtaxon": null, - "qualifier": null, - "remarks": "", - "resource_uri": "/api/specify/determination/43309/", - "subspqualifier": null, - "taxon": "/api/specify/taxon/112/", - "text1": null, - "text2": null, - "timestampcreated": "2012-04-09T11:24:44", - "timestampmodified": "2012-04-17T11:22:09", - "typestatusname": "Manuscript Type", - "varqualifier": null, - "version": 12, - "yesno1": false, - "yesno2": null}]} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/discipline.3.json b/specifyweb/frontend/js_src/lib/tests/fixtures/discipline.3.json deleted file mode 100644 index 970518e76c6..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/discipline.3.json +++ /dev/null @@ -1,19 +0,0 @@ -{"attributedefs": "/api/specify/attributedef/?discipline=3", - "collections": "/api/specify/collection/?discipline=3", - "createdbyagent": "/api/specify/agent/1/", - "datatype": "/api/specify/datatype/1/", - "division": "/api/specify/division/2/", - "geographytreedef": "/api/specify/geographytreedef/1/", - "geologictimeperiodtreedef": "/api/specify/geologictimeperiodtreedef/1/", - "id": "3", - "lithostrattreedef": "/api/specify/lithostrattreedef/1/", - "modifiedbyagent": "/api/specify/agent/2/", - "name": "Ichthyology", - "regnumber": "1336074604.58", - "resource_uri": "/api/specify/discipline/3/", - "spexportschemas": "/api/specify/spexportschema/?discipline=3", - "splocalecontainers": "/api/specify/splocalecontainer/?discipline=3", - "timestampcreated": "2012-02-22T12:50:42", - "timestampmodified": "2012-02-22T12:50:42", - "type": "fish", - "version": 4} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/institution.name=Natural+History+Museum&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/institution.name=Natural+History+Museum&offset=0.json deleted file mode 100644 index 48ab677058d..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/institution.name=Natural+History+Museum&offset=0.json +++ /dev/null @@ -1,42 +0,0 @@ -{"meta": {"limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total_count": 1}, - "objects": [{"address": null, - "altname": null, - "code": null, - "contentcontacts": "/api/specify/agent/?instcontentcontact=1", - "copyright": "", - "createdbyagent": "/api/specify/agent/1/", - "currentmanagedrelversion": null, - "currentmanagedschemaversion": null, - "description": "", - "disclaimer": "", - "divisions": "/api/specify/division/?institution=1", - "hasbeenasked": true, - "iconuri": null, - "id": "1", - "ipr": "", - "isaccessionsglobal": false, - "isanonymous": true, - "isreleasemanagedglobally": false, - "issecurityon": false, - "isserverbased": false, - "issharinglocalities": false, - "issinglegeographytree": false, - "license": "", - "lsidauthority": null, - "minimumpwdlength": 0, - "modifiedbyagent": "/api/specify/agent/2/", - "name": "Natural History Museum", - "regnumber": "1336074599.99", - "remarks": "", - "resource_uri": "/api/specify/institution/1/", - "storagetreedef": "/api/specify/storagetreedef/1/", - "technicalcontacts": "/api/specify/agent/?insttechcontact=1", - "termsofuse": "", - "timestampcreated": "2012-02-22T12:50:42", - "timestampmodified": "2012-02-22T12:50:42", - "uri": null, - "version": 5}]} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/institution.name=foobar&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/institution.name=foobar&offset=0.json deleted file mode 100644 index b3417f3157d..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/institution.name=foobar&offset=0.json +++ /dev/null @@ -1 +0,0 @@ -{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null, "total_count": 0}, "objects": []} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/locality.100.json b/specifyweb/frontend/js_src/lib/tests/fixtures/locality.100.json deleted file mode 100644 index 846ddfe96c8..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/locality.100.json +++ /dev/null @@ -1,90 +0,0 @@ -{"localitydetails": [{"sectionpart": null, - "enddepth": null, - "utmoriglongitude": null, - "mgrszone": null, - "utmfalsenorthing": null, - "rangedirection": null, - "waterbody": "Big R.", - "startdepthunit": null, - "utmeasting": null, - "id": 42, - "enddepthverbatim": null, - "gml": null, - "section": null, - "startdepthverbatim": null, - "timestampcreated": "1999-10-22T04:43:43", - "version": 0, - "timestampmodified": "2004-01-05T11:56:35", - "utmfalseeasting": null, - "yesno1": false, - "yesno2": false, - "utmnorthing": null, - "islandgroup": null, - "townshipdirection": null, - "drainage": null, - "text2": null, - "utmzone": null, - "text1": null, - "number2": null, - "utmdatum": null, - "number1": null, - "township": null, - "basemeridian": null, - "huccode": null, - "enddepthunit": null, - "island": null, - "locality": "/api/specify/locality/100/", - "startdepth": null, - "utmscale": null, - "createdbyagent": "/api/specify/agent/1/", - "rangedesc": null, - "utmoriglatitude": null, - "resource_uri": "/api/specify/localitydetail/42/", - "modifiedbyagent": "/api/specify/agent/2/", - "nationalparkname": null}], - "verbatimelevation": null, - "elevationaccuracy": null, - "datum": null, - "guid": "72b041f7-febe-11e2-82ac-bc305ba00e24", - "id": 100, - "geography": "/api/specify/geography/223/", - "discipline": "/api/specify/discipline/3/", - "gml": null, - "latitude1": "37.7550659180", - "modifiedbyagent": "/api/specify/agent/1514/", - "latitude2": null, - "localitynamealiass": [], - "latlongmethod": null, - "timestampcreated": "1999-10-22T04:35:14", - "version": 1, - "timestampmodified": "2004-01-05T11:56:34", - "localityname": "Big River, 3 mi. S of Belgrade at bridge on MO-JJ", - "visibilitysetby": null, - "shortname": null, - "relationtonamedplace": null, - "minelevation": null, - "namedplace": null, - "originallatlongunit": 0, - "localityattachments": [], - "maxelevation": null, - "latlongtype": "Point", - "longitude2": null, - "longitude1": "-90.8846054077", - "text2": null, - "text1": null, - "visibility": null, - "remarks": null, - "geocoorddetails": [], - "long1text": "90.884609 W", - "lat1text": "37.755065 N", - "localitycitations": [], - "srclatlongunit": 0, - "elevationmethod": "Freshwater", - "long2text": null, - "sgrstatus": null, - "createdbyagent": "/api/specify/agent/1/", - "originalelevationunit": null, - "lat2text": null, - "latlonpolygons": [], - "latlongaccuracy": 0.0, - "resource_uri": "/api/specify/locality/100/"} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/locality.341.json b/specifyweb/frontend/js_src/lib/tests/fixtures/locality.341.json deleted file mode 100644 index 6a81caf3a1b..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/locality.341.json +++ /dev/null @@ -1,47 +0,0 @@ -{"localitydetails": [], - "verbatimelevation": null, - "elevationaccuracy": null, - "datum": null, - "guid": "72b35129-febe-11e2-82ac-bc305ba00e24", - "id": 341, - "geography": "/api/specify/geography/431/", - "discipline": "/api/specify/discipline/3/", - "gml": null, - "latitude1": "40.4793891907", - "modifiedbyagent": "/api/specify/agent/1514/", - "latitude2": null, - "localitynamealiass": [], - "latlongmethod": null, - "timestampcreated": "2002-06-18T04:00:15", - "version": 1, - "timestampmodified": "2002-06-18T04:01:37", - "localityname": "Waldo T., stone quarry 2 mi. NE Waldo", - "visibilitysetby": null, - "shortname": null, - "relationtonamedplace": null, - "minelevation": null, - "namedplace": null, - "originallatlongunit": 0, - "localityattachments": [], - "maxelevation": null, - "latlongtype": "Point", - "longitude2": null, - "longitude1": "-83.0503692627", - "text2": null, - "text1": null, - "visibility": null, - "remarks": null, - "geocoorddetails": [], - "long1text": "83.05037 W", - "lat1text": "40.47939 N", - "localitycitations": [], - "srclatlongunit": 0, - "elevationmethod": "Freshwater", - "long2text": null, - "sgrstatus": null, - "createdbyagent": "/api/specify/agent/1/", - "originalelevationunit": null, - "lat2text": null, - "latlonpolygons": [], - "latlongaccuracy": 0.0, - "resource_uri": "/api/specify/locality/341/"} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/localitydetail.locality=100&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/localitydetail.locality=100&offset=0.json deleted file mode 100644 index 3e7f9b6efe5..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/localitydetail.locality=100&offset=0.json +++ /dev/null @@ -1,6 +0,0 @@ -{"meta": {"limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total_count": 0}, - "objects": []} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/localitydetail.locality=341&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/localitydetail.locality=341&offset=0.json deleted file mode 100644 index a8616253db4..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/localitydetail.locality=341&offset=0.json +++ /dev/null @@ -1,49 +0,0 @@ -{"meta": {"limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total_count": 1}, - "objects": [{"basemeridian": null, - "createdbyagent": "/api/specify/agent/1/", - "drainage": null, - "enddepth": null, - "enddepthunit": null, - "enddepthverbatim": null, - "gml": "", - "huccode": null, - "id": "126", - "island": null, - "islandgroup": null, - "locality": "/api/specify/locality/341/", - "mgrszone": null, - "modifiedbyagent": "/api/specify/agent/2/", - "nationalparkname": null, - "number1": null, - "number2": null, - "rangedesc": "34E", - "rangedirection": null, - "resource_uri": "/api/specify/localitydetail/126/", - "section": "28", - "sectionpart": null, - "startdepth": null, - "startdepthunit": null, - "startdepthverbatim": null, - "text1": null, - "text2": null, - "timestampcreated": "1999-11-19T09:38:17", - "timestampmodified": "2004-01-02T01:55:36", - "township": "11S", - "townshipdirection": null, - "utmdatum": null, - "utmeasting": null, - "utmfalseeasting": null, - "utmfalsenorthing": null, - "utmnorthing": null, - "utmoriglatitude": null, - "utmoriglongitude": null, - "utmscale": null, - "utmzone": null, - "version": 0, - "waterbody": null, - "yesno1": false, - "yesno2": false}]} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/picklist.1.json b/specifyweb/frontend/js_src/lib/tests/fixtures/picklist.1.json deleted file mode 100644 index 209f99fbf49..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/picklist.1.json +++ /dev/null @@ -1,52 +0,0 @@ -{"collection": "/api/specify/collection/4/", - "createdbyagent": null, - "fieldname": null, - "filterfieldname": null, - "filtervalue": null, - "formatter": null, - "id": "1", - "issystem": true, - "modifiedbyagent": null, - "name": "AccessionStatus", - "picklistitems": [{"createdbyagent": null, - "id": "1", - "modifiedbyagent": null, - "ordinal": 0, - "picklist": "/api/specify/picklist/1/", - "resource_uri": "/api/specify/picklistitem/1/", - "timestampcreated": "2012-02-22T13:02:10", - "timestampmodified": "2012-02-22T13:02:10", - "title": "complete", - "value": "complete", - "version": 0}, - {"createdbyagent": null, - "id": "2", - "modifiedbyagent": null, - "ordinal": 0, - "picklist": "/api/specify/picklist/1/", - "resource_uri": "/api/specify/picklistitem/2/", - "timestampcreated": "2012-02-22T13:02:10", - "timestampmodified": "2012-02-22T13:02:10", - "title": "In Process", - "value": "In Process", - "version": 0}, - {"createdbyagent": null, - "id": "3", - "modifiedbyagent": null, - "ordinal": 0, - "picklist": "/api/specify/picklist/1/", - "resource_uri": "/api/specify/picklistitem/3/", - "timestampcreated": "2012-02-22T13:02:10", - "timestampmodified": "2012-02-22T13:02:10", - "title": "", - "value": "", - "version": 0}], - "readonly": false, - "resource_uri": "/api/specify/picklist/1/", - "sizelimit": -1, - "sorttype": 1, - "tablename": null, - "timestampcreated": "2012-02-22T13:02:10", - "timestampmodified": "2012-02-22T13:02:10", - "type": 0, - "version": 2} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/preparation.collectionobject=102&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/preparation.collectionobject=102&offset=0.json deleted file mode 100644 index 5c0954c78ab..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/preparation.collectionobject=102&offset=0.json +++ /dev/null @@ -1,75 +0,0 @@ -{"meta": {"limit": 20, - "next": null, - "offset": 0, - "previous": null, - "total_count": 2}, - "objects": [{"collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/102/", - "countamt": 1, - "createdbyagent": "/api/specify/agent/1/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=3723", - "description": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=3723", - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=3723", - "giftpreparations": "/api/specify/giftpreparation/?preparation=3723", - "id": "3723", - "loanpreparations": "/api/specify/loanpreparation/?preparation=3723", - "modifiedbyagent": "/api/specify/agent/1503/", - "number1": null, - "number2": null, - "preparationattachments": "/api/specify/preparationattachment/?preparation=3723", - "preparationattribute": null, - "preparationattrs": "/api/specify/preparationattr/?preparation=3723", - "preparedbyagent": null, - "prepareddate": null, - "prepareddateprecision": null, - "preptype": "/api/specify/preptype/2/", - "remarks": "", - "resource_uri": "/api/specify/preparation/3723/", - "samplenumber": null, - "status": null, - "storage": null, - "storagelocation": null, - "text1": "", - "text2": "Jar", - "timestampcreated": "2005-12-02T16:19:08", - "timestampmodified": "2005-12-02T16:19:08", - "version": 5, - "yesno1": null, - "yesno2": null, - "yesno3": null}, - {"collectionmemberid": 4, - "collectionobject": "/api/specify/collectionobject/102/", - "countamt": 0, - "createdbyagent": "/api/specify/agent/1/", - "deaccessionpreparations": "/api/specify/deaccessionpreparation/?preparation=37366", - "description": null, - "exchangeinpreps": "/api/specify/exchangeinprep/?preparation=37366", - "exchangeoutpreps": "/api/specify/exchangeoutprep/?preparation=37366", - "giftpreparations": "/api/specify/giftpreparation/?preparation=37366", - "id": "37366", - "loanpreparations": "/api/specify/loanpreparation/?preparation=37366", - "modifiedbyagent": "/api/specify/agent/3/", - "number1": null, - "number2": null, - "preparationattachments": "/api/specify/preparationattachment/?preparation=37366", - "preparationattribute": null, - "preparationattrs": "/api/specify/preparationattr/?preparation=37366", - "preparedbyagent": "/api/specify/agent/3/", - "prepareddate": null, - "prepareddateprecision": null, - "preptype": "/api/specify/preptype/5/", - "remarks": "", - "resource_uri": "/api/specify/preparation/37366/", - "samplenumber": null, - "status": null, - "storage": null, - "storagelocation": null, - "text1": "http://nhm.ku.edu/fishes/collectionimages/T4801 and 4805.jpg", - "text2": "", - "timestampcreated": "2007-12-05T16:21:23", - "timestampmodified": "2012-04-16T17:33:02", - "version": 8, - "yesno1": null, - "yesno2": null, - "yesno3": null}]} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/recordset.1.json b/specifyweb/frontend/js_src/lib/tests/fixtures/recordset.1.json deleted file mode 100644 index 877d76fb8db..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/recordset.1.json +++ /dev/null @@ -1,19 +0,0 @@ -{"allpermissionlevel": null, - "collectionmemberid": 4, - "createdbyagent": "/api/specify/agent/3/", - "dbtableid": 1, - "group": null, - "grouppermissionlevel": null, - "id": "1", - "inforequest": null, - "modifiedbyagent": "/api/specify/agent/3/", - "name": "1978", - "ownerpermissionlevel": null, - "recordsetitems": "/api/specify/recordsetitem/?recordset=1", - "remarks": "", - "resource_uri": "/api/specify/recordset/1/", - "specifyuser": "/api/specify/specifyuser/1/", - "timestampcreated": "2012-05-04T11:27:59", - "timestampmodified": "2012-05-04T11:27:59", - "type": 0, - "version": 0} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/recordsetitem.recordset=1&offset=0.json b/specifyweb/frontend/js_src/lib/tests/fixtures/recordsetitem.recordset=1&offset=0.json deleted file mode 100644 index 27f8c5e1bf9..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/recordsetitem.recordset=1&offset=0.json +++ /dev/null @@ -1,85 +0,0 @@ -{"meta": {"limit": 20, - "next": "/api/specify/recordsetitem/?recordset=1&offset=20&limit=20&format=json", - "offset": 0, - "previous": null, - "total_count": 380}, - "objects": [{"id": "1", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/1/"}, - {"id": "2", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/2/"}, - {"id": "3", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/3/"}, - {"id": "4", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/4/"}, - {"id": "5", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/5/"}, - {"id": "6", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/6/"}, - {"id": "7", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/7/"}, - {"id": "8", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/8/"}, - {"id": "9", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/9/"}, - {"id": "10", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/10/"}, - {"id": "11", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/11/"}, - {"id": "12", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/12/"}, - {"id": "13", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/13/"}, - {"id": "14", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/14/"}, - {"id": "15", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/15/"}, - {"id": "16", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/16/"}, - {"id": "17", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/17/"}, - {"id": "18", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/18/"}, - {"id": "19", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/19/"}, - {"id": "20", - "recordid": 100, - "recordset": "/api/specify/recordset/1/", - "resource_uri": "/api/specify/recordsetitem/20/"}]} \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/repositoryagreement.1.json b/specifyweb/frontend/js_src/lib/tests/fixtures/repositoryagreement.1.json deleted file mode 100644 index 1be9d90bd5b..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/repositoryagreement.1.json +++ /dev/null @@ -1,27 +0,0 @@ -{"accessions": "/api/specify/accession/?repositoryagreement=1", - "addressofrecord": null, - "createdbyagent": null, - "datereceived": null, - "division": "/api/specify/division/2/", - "enddate": null, - "id": "1", - "modifiedbyagent": null, - "number1": null, - "number2": null, - "originator": "/api/specify/agent/3/", - "remarks": "", - "repositoryagreementagents": [], - "repositoryagreementattachments": [], - "repositoryagreementauthorizations": [], - "repositoryagreementnumber": "", - "resource_uri": "/api/specify/repositoryagreement/1/", - "startdate": null, - "status": null, - "text1": null, - "text2": null, - "text3": null, - "timestampcreated": "2012-07-19T16:40:47", - "timestampmodified": "2012-07-19T16:40:47", - "version": 0, - "yesno1": null, - "yesno2": null} diff --git a/specifyweb/frontend/js_src/lib/tests/fixtures/treedefinitions.json b/specifyweb/frontend/js_src/lib/tests/fixtures/treedefinitions.json deleted file mode 100644 index 1248ecbe83e..00000000000 --- a/specifyweb/frontend/js_src/lib/tests/fixtures/treedefinitions.json +++ /dev/null @@ -1,642 +0,0 @@ -{ - "Geography": { - "definition": { - "id": 1 - }, - "ranks": [ - { - "id": 1, - "fullNameSeparator": ", ", - "isEnforced": true, - "isInFullName": null, - "name": "Planet", - "rankId": 0, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:04", - "timestampModified": "2012-08-09T12:30:04", - "title": null, - "version": 0, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": null, - "treeDef": "/api/specify/geographytreedef/1/", - "treeEntries": "/api/specify/geography/?definitionitem=1", - "children": "/api/specify/geographytreedefitem/?parent=1", - "resource_uri": "/api/specify/geographytreedefitem/1/" - }, - { - "id": 3, - "fullNameSeparator": ", ", - "isEnforced": null, - "isInFullName": true, - "name": "Continent", - "rankId": 100, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:04", - "timestampModified": "2012-08-09T12:30:04", - "title": "Continent", - "version": 1, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/geographytreedefitem/1/", - "treeDef": "/api/specify/geographytreedef/1/", - "treeEntries": "/api/specify/geography/?definitionitem=3", - "children": "/api/specify/geographytreedefitem/?parent=3", - "resource_uri": "/api/specify/geographytreedefitem/3/" - }, - { - "id": 2, - "fullNameSeparator": ", ", - "isEnforced": null, - "isInFullName": true, - "name": "Country", - "rankId": 200, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:04", - "timestampModified": "2012-08-09T12:30:04", - "title": null, - "version": 1, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/geographytreedefitem/3/", - "treeDef": "/api/specify/geographytreedef/1/", - "treeEntries": "/api/specify/geography/?definitionitem=2", - "children": "/api/specify/geographytreedefitem/?parent=2", - "resource_uri": "/api/specify/geographytreedefitem/2/" - }, - { - "id": 4, - "fullNameSeparator": ", ", - "isEnforced": null, - "isInFullName": true, - "name": "State", - "rankId": 300, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:04", - "timestampModified": "2012-08-09T12:30:04", - "title": null, - "version": 0, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/geographytreedefitem/2/", - "treeDef": "/api/specify/geographytreedef/1/", - "treeEntries": "/api/specify/geography/?definitionitem=4", - "children": "/api/specify/geographytreedefitem/?parent=4", - "resource_uri": "/api/specify/geographytreedefitem/4/" - }, - { - "id": 5, - "fullNameSeparator": ", ", - "isEnforced": null, - "isInFullName": true, - "name": "County", - "rankId": 400, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:04", - "timestampModified": "2012-08-09T12:30:04", - "title": null, - "version": 0, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/geographytreedefitem/4/", - "treeDef": "/api/specify/geographytreedef/1/", - "treeEntries": "/api/specify/geography/?definitionitem=5", - "children": "/api/specify/geographytreedefitem/?parent=5", - "resource_uri": "/api/specify/geographytreedefitem/5/" - } - ] - }, - "GeologicTimePeriod": { - "definition": { - "id": 1 - }, - "ranks": [ - { - "id": 1, - "fullNameSeparator": ", ", - "isEnforced": true, - "isInFullName": false, - "name": "Time Root", - "rankId": 0, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 1, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": null, - "treeDef": "/api/specify/geologictimeperiodtreedef/1/", - "treeEntries": "/api/specify/geologictimeperiod/?definitionitem=1", - "children": "/api/specify/geologictimeperiodtreedefitem/?parent=1", - "resource_uri": "/api/specify/geologictimeperiodtreedefitem/1/" - } - ] - }, - "LithoStrat": { - "definition": { - "id": 1 - }, - "ranks": [ - { - "id": 1, - "fullNameSeparator": ", ", - "isEnforced": false, - "isInFullName": false, - "name": "Surface", - "rankId": 0, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:38:02", - "timestampModified": "2012-08-09T12:38:02", - "title": null, - "version": 2, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": null, - "treeDef": "/api/specify/lithostrattreedef/1/", - "treeEntries": "/api/specify/lithostrat/?definitionitem=1", - "children": "/api/specify/lithostrattreedefitem/?parent=1", - "resource_uri": "/api/specify/lithostrattreedefitem/1/" - }, - { - "id": 2, - "fullNameSeparator": ", ", - "isEnforced": false, - "isInFullName": false, - "name": "Super Group", - "rankId": 100, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:38:02", - "timestampModified": "2012-08-09T12:38:02", - "title": null, - "version": 1, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/lithostrattreedefitem/1/", - "treeDef": "/api/specify/lithostrattreedef/1/", - "treeEntries": "/api/specify/lithostrat/?definitionitem=2", - "children": "/api/specify/lithostrattreedefitem/?parent=2", - "resource_uri": "/api/specify/lithostrattreedefitem/2/" - }, - { - "id": 3, - "fullNameSeparator": ", ", - "isEnforced": false, - "isInFullName": false, - "name": "Litho Group", - "rankId": 200, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:38:02", - "timestampModified": "2012-08-09T12:38:02", - "title": null, - "version": 1, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/lithostrattreedefitem/2/", - "treeDef": "/api/specify/lithostrattreedef/1/", - "treeEntries": "/api/specify/lithostrat/?definitionitem=3", - "children": "/api/specify/lithostrattreedefitem/?parent=3", - "resource_uri": "/api/specify/lithostrattreedefitem/3/" - }, - { - "id": 4, - "fullNameSeparator": ", ", - "isEnforced": false, - "isInFullName": false, - "name": "Formation", - "rankId": 300, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:38:02", - "timestampModified": "2012-08-09T12:38:02", - "title": null, - "version": 1, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/lithostrattreedefitem/3/", - "treeDef": "/api/specify/lithostrattreedef/1/", - "treeEntries": "/api/specify/lithostrat/?definitionitem=4", - "children": "/api/specify/lithostrattreedefitem/?parent=4", - "resource_uri": "/api/specify/lithostrattreedefitem/4/" - }, - { - "id": 5, - "fullNameSeparator": ", ", - "isEnforced": false, - "isInFullName": false, - "name": "Member", - "rankId": 400, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:38:02", - "timestampModified": "2012-08-09T12:38:02", - "title": null, - "version": 1, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/lithostrattreedefitem/4/", - "treeDef": "/api/specify/lithostrattreedef/1/", - "treeEntries": "/api/specify/lithostrat/?definitionitem=5", - "children": "/api/specify/lithostrattreedefitem/?parent=5", - "resource_uri": "/api/specify/lithostrattreedefitem/5/" - }, - { - "id": 6, - "fullNameSeparator": ", ", - "isEnforced": false, - "isInFullName": true, - "name": "Bed", - "rankId": 500, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:38:02", - "timestampModified": "2012-08-09T12:38:02", - "title": null, - "version": 1, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/lithostrattreedefitem/5/", - "treeDef": "/api/specify/lithostrattreedef/1/", - "treeEntries": "/api/specify/lithostrat/?definitionitem=6", - "children": "/api/specify/lithostrattreedefitem/?parent=6", - "resource_uri": "/api/specify/lithostrattreedefitem/6/" - } - ] - }, - "Storage": { - "definition": { - "id": 1 - }, - "ranks": [ - { - "id": 1, - "fullNameSeparator": ", ", - "isEnforced": true, - "isInFullName": false, - "name": "Root", - "rankId": 0, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:29:16", - "timestampModified": "2012-08-09T12:29:16", - "title": null, - "version": 7, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": null, - "treeDef": "/api/specify/storagetreedef/1/", - "treeEntries": "/api/specify/storage/?definitionitem=1", - "children": "/api/specify/storagetreedefitem/?parent=1", - "resource_uri": "/api/specify/storagetreedefitem/1/" - }, - { - "id": 2, - "fullNameSeparator": ", ", - "isEnforced": false, - "isInFullName": false, - "name": "Building", - "rankId": 100, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:29:16", - "timestampModified": "2012-08-09T12:29:16", - "title": null, - "version": 7, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/storagetreedefitem/1/", - "treeDef": "/api/specify/storagetreedef/1/", - "treeEntries": "/api/specify/storage/?definitionitem=2", - "children": "/api/specify/storagetreedefitem/?parent=2", - "resource_uri": "/api/specify/storagetreedefitem/2/" - }, - { - "id": 3, - "fullNameSeparator": ", ", - "isEnforced": true, - "isInFullName": true, - "name": "Room", - "rankId": 200, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:29:16", - "timestampModified": "2012-08-09T12:29:16", - "title": null, - "version": 7, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/storagetreedefitem/2/", - "treeDef": "/api/specify/storagetreedef/1/", - "treeEntries": "/api/specify/storage/?definitionitem=3", - "children": "/api/specify/storagetreedefitem/?parent=3", - "resource_uri": "/api/specify/storagetreedefitem/3/" - }, - { - "id": 4, - "fullNameSeparator": ", ", - "isEnforced": true, - "isInFullName": true, - "name": "Freezer", - "rankId": 300, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:29:16", - "timestampModified": "2012-08-09T12:29:16", - "title": null, - "version": 7, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/storagetreedefitem/3/", - "treeDef": "/api/specify/storagetreedef/1/", - "treeEntries": "/api/specify/storage/?definitionitem=4", - "children": "/api/specify/storagetreedefitem/?parent=4", - "resource_uri": "/api/specify/storagetreedefitem/4/" - } - ] - }, - "Taxon": { - "definition": { - "id": 1 - }, - "ranks": [ - { - "id": 5, - "formatToken": null, - "fullNameSeparator": " ", - "isEnforced": true, - "isInFullName": false, - "name": "Taxonomy Root", - "rankId": 0, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 1, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": null, - "treeDef": "/api/specify/taxontreedef/1/", - "treeEntries": "/api/specify/taxon/?definitionitem=5", - "children": "/api/specify/taxontreedefitem/?parent=5", - "resource_uri": "/api/specify/taxontreedefitem/5/" - }, - { - "id": 21, - "formatToken": null, - "fullNameSeparator": " ", - "isEnforced": false, - "isInFullName": false, - "name": "Kingdom", - "rankId": 10, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 2, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/taxontreedefitem/5/", - "treeDef": "/api/specify/taxontreedef/1/", - "treeEntries": "/api/specify/taxon/?definitionitem=21", - "children": "/api/specify/taxontreedefitem/?parent=21", - "resource_uri": "/api/specify/taxontreedefitem/21/" - }, - { - "id": 10, - "formatToken": null, - "fullNameSeparator": " ", - "isEnforced": false, - "isInFullName": false, - "name": "Phylum", - "rankId": 30, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 5, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/taxontreedefitem/21/", - "treeDef": "/api/specify/taxontreedef/1/", - "treeEntries": "/api/specify/taxon/?definitionitem=10", - "children": "/api/specify/taxontreedefitem/?parent=10", - "resource_uri": "/api/specify/taxontreedefitem/10/" - }, - { - "id": 12, - "formatToken": null, - "fullNameSeparator": " ", - "isEnforced": true, - "isInFullName": false, - "name": "Class", - "rankId": 60, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 6, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/taxontreedefitem/10/", - "treeDef": "/api/specify/taxontreedef/1/", - "treeEntries": "/api/specify/taxon/?definitionitem=12", - "children": "/api/specify/taxontreedefitem/?parent=12", - "resource_uri": "/api/specify/taxontreedefitem/12/" - }, - { - "id": 4, - "formatToken": null, - "fullNameSeparator": " ", - "isEnforced": true, - "isInFullName": false, - "name": "Order", - "rankId": 100, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 6, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/taxontreedefitem/12/", - "treeDef": "/api/specify/taxontreedef/1/", - "treeEntries": "/api/specify/taxon/?definitionitem=4", - "children": "/api/specify/taxontreedefitem/?parent=4", - "resource_uri": "/api/specify/taxontreedefitem/4/" - }, - { - "id": 19, - "formatToken": null, - "fullNameSeparator": " ", - "isEnforced": true, - "isInFullName": false, - "name": "Family", - "rankId": 140, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 2, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/taxontreedefitem/4/", - "treeDef": "/api/specify/taxontreedef/1/", - "treeEntries": "/api/specify/taxon/?definitionitem=19", - "children": "/api/specify/taxontreedefitem/?parent=19", - "resource_uri": "/api/specify/taxontreedefitem/19/" - }, - { - "id": 20, - "formatToken": null, - "fullNameSeparator": " ", - "isEnforced": false, - "isInFullName": false, - "name": "Subfamily", - "rankId": 150, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 3, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/taxontreedefitem/19/", - "treeDef": "/api/specify/taxontreedef/1/", - "treeEntries": "/api/specify/taxon/?definitionitem=20", - "children": "/api/specify/taxontreedefitem/?parent=20", - "resource_uri": "/api/specify/taxontreedefitem/20/" - }, - { - "id": 9, - "formatToken": null, - "fullNameSeparator": " ", - "isEnforced": true, - "isInFullName": true, - "name": "Genus", - "rankId": 180, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 3, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/taxontreedefitem/20/", - "treeDef": "/api/specify/taxontreedef/1/", - "treeEntries": "/api/specify/taxon/?definitionitem=9", - "children": "/api/specify/taxontreedefitem/?parent=9", - "resource_uri": "/api/specify/taxontreedefitem/9/" - }, - { - "id": 15, - "formatToken": null, - "fullNameSeparator": " ", - "isEnforced": false, - "isInFullName": true, - "name": "Subgenus", - "rankId": 190, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 1, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/taxontreedefitem/9/", - "treeDef": "/api/specify/taxontreedef/1/", - "treeEntries": "/api/specify/taxon/?definitionitem=15", - "children": "/api/specify/taxontreedefitem/?parent=15", - "resource_uri": "/api/specify/taxontreedefitem/15/" - }, - { - "id": 2, - "formatToken": null, - "fullNameSeparator": " ", - "isEnforced": false, - "isInFullName": true, - "name": "Species", - "rankId": 220, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 2, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/taxontreedefitem/15/", - "treeDef": "/api/specify/taxontreedef/1/", - "treeEntries": "/api/specify/taxon/?definitionitem=2", - "children": "/api/specify/taxontreedefitem/?parent=2", - "resource_uri": "/api/specify/taxontreedefitem/2/" - }, - { - "id": 22, - "formatToken": null, - "fullNameSeparator": " ", - "isEnforced": false, - "isInFullName": true, - "name": "Subspecies", - "rankId": 230, - "remarks": null, - "textAfter": null, - "textBefore": null, - "timestampCreated": "2012-08-09T12:30:07", - "timestampModified": "2012-08-09T12:30:07", - "title": null, - "version": 1, - "createdByAgent": null, - "modifiedByAgent": null, - "parent": "/api/specify/taxontreedefitem/2/", - "treeDef": "/api/specify/taxontreedef/1/", - "treeEntries": "/api/specify/taxon/?definitionitem=22", - "children": "/api/specify/taxontreedefitem/?parent=22", - "resource_uri": "/api/specify/taxontreedefitem/22/" - } - ] - } -} diff --git a/specifyweb/notifications/migrations/0004_rename_merge_policy.py b/specifyweb/notifications/migrations/0004_rename_merge_policy.py index 9fcc9748705..bd3cc18d930 100644 --- a/specifyweb/notifications/migrations/0004_rename_merge_policy.py +++ b/specifyweb/notifications/migrations/0004_rename_merge_policy.py @@ -1,6 +1,6 @@ from django.db import migrations -def initialize(apps, schema_editor): +def apply_migration(apps, schema_editor): UserPolicy = apps.get_model('permissions', 'UserPolicy') LibraryRolePolicy = apps.get_model('permissions', 'LibraryRolePolicy') RolePolicy = apps.get_model('permissions', 'RolePolicy') @@ -13,6 +13,19 @@ def initialize(apps, schema_editor): role_policies.update(resource="/record/merge") library_role_policies.update(resource="/record/merge") +def revert_migration(apps, schema_editor): + UserPolicy = apps.get_model('permissions', 'UserPolicy') + LibraryRolePolicy = apps.get_model('permissions', 'LibraryRolePolicy') + RolePolicy = apps.get_model('permissions', 'RolePolicy') + + user_policies = UserPolicy.objects.filter(resource="/record/merge") + role_policies = RolePolicy.objects.filter(resource="/record/merge") + library_role_policies = LibraryRolePolicy.objects.filter(resource="/record/merge") + + user_policies.update(resource='/record/replace') + role_policies.update(resource='/record/replace') + library_role_policies.update(resource='/record/replace') + class Migration(migrations.Migration): dependencies = [ ('permissions', '0005_merge_20220414_1451'), @@ -20,5 +33,5 @@ class Migration(migrations.Migration): ] operations = [ - migrations.RunPython(initialize), + migrations.RunPython(apply_migration, revert_migration, atomic=True), ] diff --git a/specifyweb/specify/api.py b/specifyweb/specify/api.py index 36221dd7bc4..a315700eca4 100644 --- a/specifyweb/specify/api.py +++ b/specifyweb/specify/api.py @@ -36,7 +36,7 @@ # Regex matching api uris for extracting the model name and id number. URI_RE = re.compile(r'^/api/specify/(\w+)/($|(\d+))') -def get_model(name: str): +def strict_get_model(name: str): """Fetch an ORM model from the module dynamically so that the typechecker doesn't complain. """ @@ -50,6 +50,12 @@ def get_model(name: str): if model._meta.model_name == name: return model raise e + +def get_model(name: str): + try: + return strict_get_model(name) + except AttributeError: + return None def correct_field_name(model, field_name: str, ignore_properties: bool = True) -> str: """Return the correct field name for a model given a case insensitive @@ -301,7 +307,7 @@ def collection_dispatch_bulk_copy(request, model, copies) -> HttpResponse: def get_model_or_404(name: str): """Lookup a specify model by name. Raise Http404 if not found.""" try: - return get_model(name) + return strict_get_model(name) except AttributeError as e: raise Http404(e) diff --git a/specifyweb/specify/datamodel.py b/specifyweb/specify/datamodel.py index 218dd04fd8b..b98949bc0e3 100644 --- a/specifyweb/specify/datamodel.py +++ b/specifyweb/specify/datamodel.py @@ -5157,6 +5157,7 @@ Relationship(name='createdByAgent', type='many-to-one',required=False, relatedModelName='Agent', column='CreatedByAgentID'), Relationship(name='discipline', type='many-to-one',required=True, relatedModelName='Discipline', column='DisciplineID'), Relationship(name='lithoStrat', type='many-to-one',required=False, relatedModelName='LithoStrat', column='LithoStratID', otherSideName='paleoContexts'), + Relationship(name='tectonicUnit', type='many-to-one',required=False, relatedModelName='TectonicUnit', column='TectonicUnitID', otherSideName='paleoContexts'), Relationship(name='localities', type='one-to-many',required=False, relatedModelName='Locality', otherSideName='paleoContext'), Relationship(name='modifiedByAgent', type='many-to-one',required=False, relatedModelName='Agent', column='ModifiedByAgentID') ], diff --git a/specifyweb/specify/migrations/0002_geo.py b/specifyweb/specify/migrations/0002_geo.py index f2a1661de0b..2ffa00dc730 100644 --- a/specifyweb/specify/migrations/0002_geo.py +++ b/specifyweb/specify/migrations/0002_geo.py @@ -121,11 +121,11 @@ def create_table_schema_config_with_defaults(apps): Discipline = apps.get_model('specify', 'Discipline') for discipline in Discipline.objects.all(): for table, desc in SCHEMA_CONFIG_TABLES: - update_table_schema_config_with_defaults(table, discipline.id, discipline, desc) + update_table_schema_config_with_defaults(table, discipline.id, desc, apps) def revert_table_schema_config_with_defaults(apps): for table, _ in SCHEMA_CONFIG_TABLES: - revert_table_schema_config(table) + revert_table_schema_config(table, apps) def create_default_collection_object_types(apps): Collection = apps.get_model('specify', 'Collection') diff --git a/specifyweb/specify/migrations/0004_stratigraphy_age.py b/specifyweb/specify/migrations/0004_stratigraphy_age.py index 8115d9fe2aa..dec5ae488cd 100644 --- a/specifyweb/specify/migrations/0004_stratigraphy_age.py +++ b/specifyweb/specify/migrations/0004_stratigraphy_age.py @@ -56,7 +56,7 @@ def create_agetype_picklist(apps): picklist=age_type_picklist ) -def revert_agetype_picklist(apps, schema_editor): +def revert_agetype_picklist(apps): Collection = apps.get_model('specify', 'Collection') Picklist = apps.get_model('specify', 'Picklist') PicklistItem = apps.get_model('specify', 'Picklistitem') @@ -72,18 +72,18 @@ def create_table_schema_config_with_defaults(apps): Discipline = specify_apps.get_model('specify', 'Discipline') for discipline in Discipline.objects.all(): for table, desc in SCHEMA_CONFIG_TABLES: - update_table_schema_config_with_defaults(table, discipline.id, discipline, desc) + update_table_schema_config_with_defaults(table, discipline.id, desc, apps) for table, fields in SCHEMA_CONFIG_MOD_TABLE_FIELDS.items(): for field in fields: - update_table_field_schema_config_with_defaults(table, discipline.id, discipline, field) + update_table_field_schema_config_with_defaults(table, discipline.id, field, apps) -def revert_table_schema_config_with_defaults(): +def revert_table_schema_config_with_defaults(apps): for table, _ in SCHEMA_CONFIG_TABLES: - revert_table_schema_config(table) + revert_table_schema_config(table, apps) for table, fields in SCHEMA_CONFIG_MOD_TABLE_FIELDS.items(): for field in fields: - revert_table_field_schema_config(table, field) + revert_table_field_schema_config(table, field, apps) class Migration(migrations.Migration): @@ -96,8 +96,8 @@ def consolidated_python_django_migration_operations(apps, schema_editor): create_agetype_picklist(apps) def revert_cosolidated_python_django_migration_operations(apps, schema_editor): - revert_table_schema_config_with_defaults() - revert_agetype_picklist(apps, schema_editor) + revert_table_schema_config_with_defaults(apps) + revert_agetype_picklist(apps) operations = [ migrations.CreateModel( diff --git a/specifyweb/specify/migrations/0006_fix_tectonic_tree_fields.py b/specifyweb/specify/migrations/0006_fix_tectonic_tree_fields.py index 40ceee06aa2..fd95ea649a2 100644 --- a/specifyweb/specify/migrations/0006_fix_tectonic_tree_fields.py +++ b/specifyweb/specify/migrations/0006_fix_tectonic_tree_fields.py @@ -1,4 +1,4 @@ -# Generated by Django 3.2.15 on 2024-10-09 14:58 +# Generated by Django 3.2.15 on 2024-10-16 16:13 from django.db import migrations, models import specifyweb.specify.models diff --git a/specifyweb/specify/models.py b/specifyweb/specify/models.py index 2372009f2ec..d4830a119a2 100644 --- a/specifyweb/specify/models.py +++ b/specifyweb/specify/models.py @@ -7621,7 +7621,7 @@ class AbsoluteAge(models.Model): specify_model = datamodel.get_table('absoluteage') # ID Field - id = models.AutoField(db_column='AbsoluteAgeID', primary_key=True, serialize=False) + id = models.AutoField(db_column='AbsoluteAgeID', primary_key=True) # Fields absoluteage = models.DecimalField(blank=True, max_digits=22, decimal_places=10, null=True, unique=False, db_column='AbsoluteAge', db_index=False) diff --git a/specifyweb/specify/tree_views.py b/specifyweb/specify/tree_views.py index ef0fe7827b2..4811bff4599 100644 --- a/specifyweb/specify/tree_views.py +++ b/specifyweb/specify/tree_views.py @@ -26,7 +26,7 @@ logger = logging.getLogger(__name__) TREE_TABLE = Literal['Taxon', 'Storage', - 'Geography', 'Geologictimeperiod', 'Lithostrat'] + 'Geography', 'Geologictimeperiod', 'Lithostrat', 'Tectonicunit'] GEO_TREES: Tuple[TREE_TABLE, ...] = ['Tectonicunit'] diff --git a/specifyweb/specify/update_schema_config.py b/specifyweb/specify/update_schema_config.py index 51d84890e85..3880c6c521e 100644 --- a/specifyweb/specify/update_schema_config.py +++ b/specifyweb/specify/update_schema_config.py @@ -1,14 +1,14 @@ import re + +from typing import NamedTuple + +from django.db.models import Q +from django.apps import apps + from specifyweb.specify.load_datamodel import Table from specifyweb.specify.models import ( - Splocalecontainer, - Splocalecontaineritem, - Splocaleitemstr, - Discipline, datamodel, ) -from typing import List, Optional, NamedTuple -from django.db.models import Q HIDDEN_FIELDS = [ "timestampcreated", "timestampmodified", "version", "createdbyagent", "modifiedbyagent" @@ -31,9 +31,13 @@ class FieldSchemaConfig(NamedTuple): def update_table_schema_config_with_defaults( table_name, discipline_id: int, - discipline: Optional[Discipline], description: str = None, + apps = apps ): + Splocalecontainer = apps.get_model('specify', 'Splocalecontainer') + Splocaleitemstr = apps.get_model('specify', 'Splocaleitemstr') + Splocalecontaineritem = apps.get_model('specify', 'Splocalecontaineritem') + table: Table = datamodel.get_table(table_name) table_name = table.name table_desc = re.sub(r'(?