diff --git a/attic/scripts/recan_bundle_tdr.py b/attic/scripts/recan_bundle_tdr.py index 372504a2c..55428237e 100644 --- a/attic/scripts/recan_bundle_tdr.py +++ b/attic/scripts/recan_bundle_tdr.py @@ -177,7 +177,6 @@ def dss_bundle_to_tdr(bundle: Bundle, source: TDRSourceRef) -> TDRHCABundle: links_entry = None for entry in manifest: entry['version'] = convert_version(entry['version']) - entry['is_stitched'] = False if entry['name'] == 'links.json': links_entry = entry if entry['indexed']: diff --git a/src/azul/plugins/metadata/hca/__init__.py b/src/azul/plugins/metadata/hca/__init__.py index 49c6ee3d1..f1698b1cb 100644 --- a/src/azul/plugins/metadata/hca/__init__.py +++ b/src/azul/plugins/metadata/hca/__init__.py @@ -81,7 +81,8 @@ def transformers(self, version=bundle.version, manifest=bundle.manifest, metadata_files=bundle.metadata_files, - links_json=bundle.links) + links_json=bundle.links, + stitched_entity_ids=bundle.stitched) def transformers(): for transformer_cls in self.transformer_types(): diff --git a/src/azul/plugins/metadata/hca/bundle.py b/src/azul/plugins/metadata/hca/bundle.py index 44e648d50..d1d08ef5d 100644 --- a/src/azul/plugins/metadata/hca/bundle.py +++ b/src/azul/plugins/metadata/hca/bundle.py @@ -41,6 +41,7 @@ class HCABundle(Bundle[BUNDLE_FQID], ABC): """ metadata_files: MutableJSON links: MutableJSON + stitched: set[str] = attrs.field(factory=set) def reject_joiner(self, catalog: CatalogName): self._reject_joiner(self.manifest) @@ -52,6 +53,7 @@ def to_json(self) -> MutableJSON: 'manifest': self.manifest, 'metadata': self.metadata_files, 'links': self.links, + 'stitched': sorted(self.stitched) } @classmethod @@ -59,7 +61,13 @@ def from_json(cls, fqid: BUNDLE_FQID, json_: JSON) -> 'Bundle': manifest = json_['manifest'] metadata = json_['metadata'] links = json_['links'] + stitched = json_['stitched'] assert isinstance(manifest, list), manifest assert isinstance(metadata, dict), metadata assert isinstance(links, dict), links - return cls(fqid=fqid, manifest=manifest, metadata_files=metadata, links=links) + assert isinstance(stitched, list), stitched + return cls(fqid=fqid, + manifest=manifest, + metadata_files=metadata, + links=links, + stitched=set(stitched)) diff --git a/src/azul/plugins/metadata/hca/indexer/transform.py b/src/azul/plugins/metadata/hca/indexer/transform.py index 0ca2ccd61..7c833b742 100644 --- a/src/azul/plugins/metadata/hca/indexer/transform.py +++ b/src/azul/plugins/metadata/hca/indexer/transform.py @@ -1428,7 +1428,7 @@ def entity_type(cls) -> str: return 'files' def _entities(self) -> Iterable[api.File]: - return api.not_stitched(self.api_bundle.files.values()) + return self.api_bundle.not_stitched(self.api_bundle.files) def _transform(self, files: Iterable[api.File]) -> Iterable[Contribution]: zarr_stores: Mapping[str, list[api.File]] = self.group_zarrs(files) @@ -1586,7 +1586,7 @@ def inner_entity_types(cls) -> frozenset[str]: def _entities(self) -> Iterable[Sample]: samples: dict[str, Sample] = dict() - for file in api.not_stitched(self.api_bundle.files.values()): + for file in self.api_bundle.not_stitched(self.api_bundle.files): self._find_ancestor_samples(file, samples) return samples.values() @@ -1643,7 +1643,7 @@ def _singleton_entity(self) -> DatedEntity: raise NotImplementedError def _dated_entities(self) -> Iterable[DatedEntity]: - return api.not_stitched(self.api_bundle.entities.values()) + return self.api_bundle.not_stitched(self.api_bundle.entities) def estimate(self, partition: BundlePartition) -> int: return int(partition.contains(self._singleton_id)) diff --git a/src/azul/plugins/repository/tdr_hca/__init__.py b/src/azul/plugins/repository/tdr_hca/__init__.py index df8720fe7..f326c7b58 100644 --- a/src/azul/plugins/repository/tdr_hca/__init__.py +++ b/src/azul/plugins/repository/tdr_hca/__init__.py @@ -189,13 +189,14 @@ def add_entity(self, row: BigQueryRow, is_stitched: bool ) -> None: + if is_stitched: + self.stitched.add(entity.entity_id) self._add_manifest_entry(name=entity_key, uuid=entity.entity_id, version=TDRPlugin.format_version(row['version']), size=row['content_size'], content_type='application/json', - dcp_type=f'"metadata/{row["schema_type"]}"', - is_stitched=is_stitched) + dcp_type=f'"metadata/{row["schema_type"]}"') if entity.entity_type.endswith('_file'): descriptor = json.loads(row['descriptor']) self._add_manifest_entry(name=row['file_name'], @@ -204,7 +205,6 @@ def add_entity(self, size=descriptor['size'], content_type=descriptor['content_type'], dcp_type='data', - is_stitched=is_stitched, checksums=Checksums.from_json(descriptor), drs_uri=self._parse_drs_uri(row['file_id'], descriptor)) content = row['content'] @@ -241,7 +241,6 @@ def _add_manifest_entry(self, size: int, content_type: str, dcp_type: str, - is_stitched: bool, checksums: Optional[Checksums] = None, drs_uri: Optional[str] = None) -> None: self.manifest.append({ @@ -250,7 +249,6 @@ def _add_manifest_entry(self, 'version': version, 'content-type': f'{content_type}; dcp-type={dcp_type}', 'size': size, - 'is_stitched': is_stitched, **( { 'indexed': True, diff --git a/src/humancellatlas/data/metadata/api.py b/src/humancellatlas/data/metadata/api.py index 63b7cec50..849fb8bd2 100644 --- a/src/humancellatlas/data/metadata/api.py +++ b/src/humancellatlas/data/metadata/api.py @@ -18,8 +18,8 @@ chain, ) from typing import ( + AbstractSet, Iterable, - Iterator, Mapping, MutableMapping, TypeVar, @@ -75,7 +75,6 @@ class ManifestEntry: # FIXME: Change Bundle.version and ManifestEntry.version from string to datetime # https://github.com/DataBiosphere/hca-metadata-api/issues/48 version: str - is_stitched: bool = field(init=False) def __init__(self, json: MutableJSON): # '/' was once forbidden in file paths and was encoded with '!'. Now @@ -85,7 +84,6 @@ def __init__(self, json: MutableJSON): self.json = json self.content_type = json['content-type'] self.uuid = UUID4(json['uuid']) - self.is_stitched = json.get('is_stitched', False) for f in fields(self): if f.init: value = json.get(f.name) @@ -104,13 +102,6 @@ class Entity: submission_date: datetime update_date: datetime | None - @property - def is_stitched(self): - if self.metadata_manifest_entry is None: - return False - else: - return self.metadata_manifest_entry.is_stitched - @classmethod def from_json(cls, json: JSON, @@ -168,20 +159,6 @@ def accept(self, visitor: 'EntityVisitor') -> None: E = TypeVar('E', bound=Entity) -# noinspection PyPep8Naming -@dataclass(frozen=True) -class not_stitched(Iterable[E]): - """ - An iterable of the entities in the argument iterable that are not stitched. - This is an iterable, so it can be consumed repeatedly. - """ - - entities: Iterable[E] - - def __iter__(self) -> Iterator[E]: - return (e for e in self.entities if not e.is_stitched) - - class TypeLookupError(Exception): def __init__(self, described_by: str) -> None: @@ -999,10 +976,12 @@ def __init__(self, version: str, manifest: MutableJSONs, metadata_files: Mapping[str, JSON], - links_json: JSON): + links_json: JSON, + stitched_entity_ids: AbstractSet[str] = frozenset()): self.uuid = UUID4(uuid) self.version = version self.manifest = {m.name: m for m in map(ManifestEntry, manifest)} + self.stitched = stitched_entity_ids json_by_core_cls: MutableMapping[type[E], list[tuple[JSON, ManifestEntry]]] = defaultdict(list) for file_name, json in metadata_files.items(): @@ -1096,6 +1075,13 @@ def visit(entity: Entity) -> Mapping[UUID4, L]: return recurse(self.root_entities().values()) + def not_stitched(self, entities: Mapping[UUID, E]) -> list[E]: + return [ + entity + for uuid, entity in entities.items() + if str(uuid) not in self.stitched + ] + @cached_property def leaf_cell_suspensions(self) -> Mapping[UUID4, CellSuspension]: return self.leaf_entities(CellSuspension) diff --git a/test/indexer/data/00f48893-5e9d-52cd-b32d-af88edccabfa.dss.hca.json b/test/indexer/data/00f48893-5e9d-52cd-b32d-af88edccabfa.dss.hca.json index 747dabfc9..504a1f5f5 100644 --- a/test/indexer/data/00f48893-5e9d-52cd-b32d-af88edccabfa.dss.hca.json +++ b/test/indexer/data/00f48893-5e9d-52cd-b32d-af88edccabfa.dss.hca.json @@ -6,7 +6,6 @@ "version": "2019-09-13T09:16:27.260339Z", "content-type": "application/gzip; dcp-type=data", "size": 847438091, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b9549f9f-d892-4093-93fd-197d02ec7c97", "crc32c": "0292db90", @@ -20,7 +19,6 @@ "version": "2019-09-13T09:16:28.234453Z", "content-type": "application/gzip; dcp-type=data", "size": 3115598454, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7f4c7463-76d0-4f3a-a690-e93369ada2e9", "crc32c": "24d98de6", @@ -34,7 +32,6 @@ "version": "2019-09-13T08:37:53.849000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 582, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -45,7 +42,6 @@ "version": "2019-09-13T09:07:26.172000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -56,7 +52,6 @@ "version": "2019-09-13T08:37:57.269000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -67,7 +62,6 @@ "version": "2019-09-13T08:56:51.563000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -78,7 +72,6 @@ "version": "2019-09-13T09:16:23.710869Z", "content-type": "application/gzip; dcp-type=data", "size": 1110577684, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cd7ace86-c1f9-4c36-8ba0-078520babe83", "crc32c": "3f0921bb", @@ -92,7 +85,6 @@ "version": "2019-09-13T08:37:53.860000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 583, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -103,7 +95,6 @@ "version": "2019-09-13T08:37:53.863000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 852, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -114,7 +105,6 @@ "version": "2021-02-03T20:52:24.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 26511968866, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5fcadd72-ba4a-4571-a1c4-5d4d3aeef8b5", "crc32c": "c844464d", @@ -126,7 +116,6 @@ "version": "2019-09-13T08:37:53.822000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 758, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -137,7 +126,6 @@ "version": "2019-09-13T08:37:53.886000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 852, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -148,7 +136,6 @@ "version": "2019-09-13T08:37:57.270000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -159,7 +146,6 @@ "version": "2019-09-13T08:37:57.205000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -170,7 +156,6 @@ "version": "2019-09-13T09:16:27.588981Z", "content-type": "application/gzip; dcp-type=data", "size": 2219396571, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bfb499b5-2323-4fcf-a8b0-38ad5a885576", "crc32c": "fce36c7d", @@ -184,7 +169,6 @@ "version": "2021-02-26T16:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 401, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -195,7 +179,6 @@ "version": "2019-09-13T08:37:57.269000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 297, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -206,7 +189,6 @@ "version": "2019-09-13T08:43:56.724000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -217,7 +199,6 @@ "version": "2019-09-13T08:37:53.821000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 894, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -228,7 +209,6 @@ "version": "2019-09-13T08:53:16.964000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -239,7 +219,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -250,7 +229,6 @@ "version": "2019-09-13T08:54:00.067000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -261,7 +239,6 @@ "version": "2019-09-13T09:16:26.837580Z", "content-type": "application/gzip; dcp-type=data", "size": 2138914697, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c2fbaabe-13b9-44ce-82a0-7c98360ac75f", "crc32c": "f549d920", @@ -275,7 +252,6 @@ "version": "2021-02-03T20:52:32.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 26831853703, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_591d4cef-47cf-4bfb-9334-88220e7cdc60", "crc32c": "f82a27d8", @@ -287,7 +263,6 @@ "version": "2019-09-13T08:37:57.203000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -298,7 +273,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -309,7 +283,6 @@ "version": "2019-09-13T09:16:27.026166Z", "content-type": "application/gzip; dcp-type=data", "size": 9531866142, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_799febcc-e9a4-4bb2-9c77-bdcf327c3905", "crc32c": "a837186f", @@ -323,7 +296,6 @@ "version": "2019-09-13T09:16:26.831163Z", "content-type": "application/gzip; dcp-type=data", "size": 2845965046, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2830c506-de2e-4f68-8b95-5b6f5ac4b54d", "crc32c": "7eb38813", @@ -337,7 +309,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -348,7 +319,6 @@ "version": "2019-09-13T08:37:57.167000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -359,7 +329,6 @@ "version": "2019-09-13T08:37:53.845000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 853, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -370,7 +339,6 @@ "version": "2021-05-24T12:00:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 447, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -381,7 +349,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -392,7 +359,6 @@ "version": "2019-09-13T08:37:57.186000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -403,7 +369,6 @@ "version": "2021-02-03T21:06:32.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 776280864, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a15219d7-6a71-4827-8337-5bd42816a568", "crc32c": "a9fb633c", @@ -415,7 +380,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -426,7 +390,6 @@ "version": "2019-09-13T09:16:24.192766Z", "content-type": "application/gzip; dcp-type=data", "size": 9820193406, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7b607ae7-1136-41f7-937e-ea2c3015a949", "crc32c": "3c380752", @@ -440,7 +403,6 @@ "version": "2019-09-13T09:01:51.268000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 603, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -451,7 +413,6 @@ "version": "2021-02-03T21:08:31.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1016626791, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_55cb0c0b-e617-491a-b055-a7cd1a438c96", "crc32c": "9d1f0a8c", @@ -463,7 +424,6 @@ "version": "2019-09-13T09:16:28.462542Z", "content-type": "application/gzip; dcp-type=data", "size": 12676468570, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_16af29e4-8b77-4d44-b6f0-39403e4bf6ea", "crc32c": "093721b6", @@ -477,7 +437,6 @@ "version": "2021-02-03T20:52:27.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 13010167180, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4bc6a861-4ecb-4758-ba27-8326821d6be5", "crc32c": "2ad80e5f", @@ -489,7 +448,6 @@ "version": "2019-09-13T08:37:53.837000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 902, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -500,7 +458,6 @@ "version": "2019-09-13T08:56:00.663000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -511,7 +468,6 @@ "version": "2019-09-13T08:46:45.334000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 603, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -522,7 +478,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -533,7 +488,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -544,7 +498,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -555,7 +508,6 @@ "version": "2021-02-03T20:52:29.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 12572677836, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ae7ba5e9-3f9b-449f-9fc1-5d52226ce8fe", "crc32c": "a8427ce7", @@ -567,7 +519,6 @@ "version": "2019-09-13T08:42:35.822000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -578,7 +529,6 @@ "version": "2019-09-13T09:16:23.982952Z", "content-type": "application/gzip; dcp-type=data", "size": 2950925436, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_96e58cce-a961-48c5-b4fd-84f4e994e10a", "crc32c": "068824ae", @@ -592,7 +542,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -603,7 +552,6 @@ "version": "2019-09-13T08:37:53.825000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 11767, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -614,7 +562,6 @@ "version": "2021-02-03T20:52:12.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 15412634970, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6e60265d-6c02-44bb-80e1-e6158592353a", "crc32c": "a068a3b9", @@ -626,7 +573,6 @@ "version": "2019-09-13T08:37:57.252000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -637,7 +583,6 @@ "version": "2019-09-13T08:37:53.868000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 569, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -648,7 +593,6 @@ "version": "2021-02-03T21:06:08.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 806647102, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_65f4713e-e622-4204-ba56-4e24350ac6db", "crc32c": "72dc7f49", @@ -660,7 +604,6 @@ "version": "2019-09-13T08:37:57.171000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -671,7 +614,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -682,7 +624,6 @@ "version": "2019-09-13T09:16:27.766043Z", "content-type": "application/gzip; dcp-type=data", "size": 6042475560, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_08aeefd9-3ae6-4b9e-b95d-05129fd54f43", "crc32c": "f3a599fa", @@ -696,7 +637,6 @@ "version": "2019-09-13T08:57:01.788000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -707,7 +647,6 @@ "version": "2019-09-13T08:37:53.815000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 915, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -718,7 +657,6 @@ "version": "2021-02-03T21:12:10.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 639715445, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_97429722-fa8d-4e23-b7a8-9bce9f6dafab", "crc32c": "3b799574", @@ -730,7 +668,6 @@ "version": "2019-09-13T08:37:57.174000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -741,7 +678,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -752,7 +688,6 @@ "version": "2019-09-13T08:53:56.305000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -763,7 +698,6 @@ "version": "2019-09-13T08:37:57.252000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -774,7 +708,6 @@ "version": "2019-09-13T09:16:26.425735Z", "content-type": "application/gzip; dcp-type=data", "size": 1071829396, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5c7817ba-9ebe-4ee4-adf4-7e377576c709", "crc32c": "de18d088", @@ -788,7 +721,6 @@ "version": "2019-09-13T08:54:12.962000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -799,7 +731,6 @@ "version": "2019-09-13T08:37:53.838000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 583, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -810,7 +741,6 @@ "version": "2019-09-13T08:37:57.252000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -821,7 +751,6 @@ "version": "2019-09-13T08:37:53.853000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 847, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -832,7 +761,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -843,7 +771,6 @@ "version": "2019-09-13T09:16:27.945734Z", "content-type": "application/gzip; dcp-type=data", "size": 20962104505, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2b407a11-dc22-4313-a523-f0cd6387bd13", "crc32c": "b844e997", @@ -857,7 +784,6 @@ "version": "2019-09-13T08:37:53.832000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 668, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -868,7 +794,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -879,7 +804,6 @@ "version": "2021-02-11T23:11:45.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 255471211, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b4cdcc6c-15ea-4f43-a872-0d2fc7db6fd8", "crc32c": "d1b06ce5", @@ -891,7 +815,6 @@ "version": "2021-02-03T21:08:27.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 972969186, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f76e3d66-f748-4d82-b345-69e7ef60b1ab", "crc32c": "567bee09", @@ -903,7 +826,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 522, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -914,7 +836,6 @@ "version": "2019-09-13T09:16:27.063168Z", "content-type": "application/gzip; dcp-type=data", "size": 5915975880, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7da1904a-5076-46fd-b95e-2366a907d789", "crc32c": "1c00b5b2", @@ -928,7 +849,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -939,7 +859,6 @@ "version": "2019-09-13T09:16:27.300840Z", "content-type": "application/gzip; dcp-type=data", "size": 20619721127, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a18a7953-48aa-4e6b-810b-caf5767095c7", "crc32c": "a5db114b", @@ -953,7 +872,6 @@ "version": "2019-09-13T08:53:22.108000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 603, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -964,7 +882,6 @@ "version": "2019-09-13T08:37:57.269000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -975,7 +892,6 @@ "version": "2019-09-13T09:07:14.915000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -986,7 +902,6 @@ "version": "2019-09-13T08:37:53.864000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 569, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -997,7 +912,6 @@ "version": "2019-09-13T08:37:53.864000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 838, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1008,7 +922,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1019,7 +932,6 @@ "version": "2019-09-13T08:49:05.856000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1030,7 +942,6 @@ "version": "2019-09-13T08:37:53.809000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 970, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1041,7 +952,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 462, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -4892,5 +4802,93 @@ ] } ] - } + }, + + "stitched": [ + "07b45ad4-7797-4c16-bfae-493fb41d6600", + "09eb8fc6-9e27-4f08-87c5-bfccf918ee12", + "0aabed05-6a89-4141-9384-828a33581419", + "1016adeb-cdc3-47d6-a89e-771c763dd2e7", + "1116b396-448e-4dd1-b9c9-78357c511e15", + "15f64718-69cf-462c-9704-e8a1f54c27c8", + "1985c53a-b78f-4d9e-9563-dffed8207efd", + "1d3e48d7-d80f-4b99-85bd-04ff393288e7", + "1dda6a28-cbaa-4506-be47-fa117e8f463c", + "20329887-aab3-55fb-ba2c-e3eb27a20f6d", + "2509f42a-0328-4e33-8d21-79d37560d846", + "252b008d-8b5a-450c-a17c-4e779a17ff26", + "25999eea-6f12-40a8-aecf-d1524c7cf564", + "262f55a3-d03d-49ae-8080-1a6208fddb4f", + "27622c20-c017-4a98-b62c-76035758bc09", + "289ec28b-ce11-5be8-89ab-92fbceb874a0", + "2f8a07c2-4a6b-47ac-a304-0dead66eee9e", + "30040306-be5c-48f9-b221-e666e279ab5b", + "3030903f-4a4b-4b30-ab93-3b10183181e0", + "33682180-6cdf-4d0c-9fe0-e1c029ac13b2", + "366c7a41-3b80-4c7d-af4b-20248e69425f", + "39255288-6791-45b0-ac7e-b3ef4c981a3b", + "39ae3998-72a4-41ba-b00f-526bfecb8ca2", + "3ac6d370-c10b-54a2-a1ed-52f661aae1d7", + "3ad5d964-6c2c-4adc-badb-9100ceada68c", + "3d7a4690-8760-491c-98f9-9a1aea3f79b5", + "3e2b02f8-5b3b-4ab2-8ef4-7ae8a856854e", + "3e3505f9-4f47-402f-bfb8-960af07f91da", + "3f615b1d-d507-4912-82c5-9cb575cd19c1", + "4054b722-a585-4e90-8d74-a02fb4d98202", + "427c0a62-9baf-42ab-a3a3-f48d10544280", + "43598186-06cd-5f4b-95d9-fecb0a35d3ab", + "48a0c58c-ea67-4014-8752-6339de02b70e", + "4b611790-d17b-5938-86c4-695480abb4ef", + "4c866eb3-7470-5ee8-91b9-942246f19fde", + "5140b603-8cc1-4566-9043-e68145efbbd6", + "52149e21-dcd2-4288-a5eb-e526c3dcf745", + "5a11ed4f-41d1-53b4-9e62-3c0bbd04b4b0", + "5ceca6a5-2bc0-4b38-908b-01d4fec71d9f", + "640e64f1-6ada-5d12-a772-fe4ed4eeecea", + "66b7152c-8e94-412b-b0e4-f8fbf554df5a", + "6bd884d2-fccf-4227-8efc-184751527dfb", + "6d52232d-dc77-4070-bdb1-9bb0ee59d309", + "70ff6783-333f-5c1b-8208-3b495df95620", + "759bad57-b725-5346-b3ff-9fb80b27cfe7", + "76502973-5eb8-40b1-a0dc-17c4f772edaa", + "76fc7a86-572e-5e00-ac87-b55d81a8515d", + "799f314f-7c6c-4981-be36-8e1310bf38e6", + "79f589cb-32a2-4ba6-a091-7c5d820d02df", + "7a96a0c2-e22a-57ad-ac46-4c2433a63d94", + "820c396e-248b-5b4e-91b9-d7801cd9725f", + "8b81f0c2-3b57-4072-8a10-c169fece543e", + "932000d6-c63b-40f0-bdd5-469fa4db8be2", + "98ab4428-d66a-57b7-a802-83fdec68d744", + "98c88684-6469-4bb3-90aa-57a4ea101244", + "9b4ae2d9-d681-4f08-b111-6f1878145b35", + "9d720856-425d-404f-bb5b-51c225e92dd6", + "9f8f5212-0749-460b-9a46-2949dea45d52", + "a166be3d-6e84-4058-a1bd-edf90cf3ee88", + "a301dcb4-6a8f-5ef8-af7e-6a9fe44058e8", + "a5e37780-0b71-4610-8a7c-26142dedfcec", + "a7915c55-1d80-5724-9c81-6dd0a9130361", + "a7b21a25-e76e-420d-8892-538062bfefbf", + "ad220152-0eb4-4f85-a03e-c7e81ea3f167", + "ad5fed6e-b0e1-40a0-82e8-0cfc2eca0786", + "b01b2e61-3ebd-48cc-b071-f2e8cb42ff7c", + "b1b6ea44-e0b7-425a-9faa-51ecff56783e", + "b360251f-7550-4c08-b576-781858554ea1", + "b8049daa-7458-47bf-8ec2-3f5c56d2cb34", + "b949e4b6-c3fb-58b4-865b-40cb3ef2b6c6", + "b9ab7f46-071a-48cf-bc7f-fdb9c8dd0c22", + "ba595d79-aa43-4e3a-ad10-89f92ef4f22f", + "bc111cd3-bf54-57ce-8af1-88f5997a0a9d", + "bdd02a5f-2007-56f9-abeb-8c2c5c99a08e", + "d65c128c-3bb7-4da3-8d56-b60007cf8d15", + "d90280cc-a294-57de-b350-5234a5278c19", + "d94b88bc-3507-4644-a221-1c99861895e2", + "e0efcd8d-8433-4b40-9eee-11dafb699a5a", + "e511e7ff-e67c-4eb3-b0db-13aecefb5486", + "e92c42c7-f238-44ea-b147-e199b768d450", + "eb32bfc6-e7be-4093-8959-b8bf27f2404f", + "edc72947-b776-4150-8bfe-b7331acfa66f", + "f51568e8-b84c-504b-82f0-3ad5975d4bcb", + "f6407a7a-eecc-4735-a96a-b8bb634118e4", + "fa99959f-faa2-4d69-a092-48333e59f5f3" + ] } \ No newline at end of file diff --git a/test/indexer/data/02e69c25-71e2-48ca-a87b-e256938c6a98.dss.hca.json b/test/indexer/data/02e69c25-71e2-48ca-a87b-e256938c6a98.dss.hca.json index c431a7e9a..c40636930 100644 --- a/test/indexer/data/02e69c25-71e2-48ca-a87b-e256938c6a98.dss.hca.json +++ b/test/indexer/data/02e69c25-71e2-48ca-a87b-e256938c6a98.dss.hca.json @@ -6,7 +6,6 @@ "version": "2021-06-28T14:21:17.533000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -17,7 +16,6 @@ "version": "2021-06-28T14:21:17.953000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 482, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -28,7 +26,6 @@ "version": "2021-06-28T14:21:16.902000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 944, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -39,7 +36,6 @@ "version": "2021-06-28T14:21:18.700000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 411, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -50,7 +46,6 @@ "version": "2021-06-28T14:21:17.506000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2833603821, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_5b9faa43-71d3-4421-9147-c35c5a1020d6", "crc32c": "99e502af", @@ -64,7 +59,6 @@ "version": "2021-06-28T14:21:17.989000Z", "content-type": "application/octet-stream; dcp-type=data; dcp-type=data", "size": 264733, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_06900980-e0f1-4600-8fb4-b091fbbeca82", "crc32c": "a161ac05", @@ -78,7 +72,6 @@ "version": "2021-06-28T14:21:17.521000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -89,7 +82,6 @@ "version": "2021-06-28T14:21:17.337000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 834, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -100,7 +92,6 @@ "version": "2021-06-28T14:21:17.614000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 617, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -111,7 +102,6 @@ "version": "2021-06-28T14:21:17.481000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4088255061, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_632ab1c1-1e1e-4475-b8b0-4684c9204e45", "crc32c": "ce40df66", @@ -125,7 +115,6 @@ "version": "2021-06-28T14:21:17.582000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2868503392, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_8beb3758-3c01-4925-b455-46fa31a78641", "crc32c": "b05bd34e", @@ -139,7 +128,6 @@ "version": "2021-06-28T14:21:18.054000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -150,7 +138,6 @@ "version": "2021-06-28T14:21:18.018000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -161,7 +148,6 @@ "version": "2021-06-28T14:21:18.691000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 411, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -172,7 +158,6 @@ "version": "2021-06-28T14:21:17.456000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1856426785, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_928b877a-0d23-4661-a577-85dc213cea43", "crc32c": "0b7968e1", @@ -186,7 +171,6 @@ "version": "2021-06-28T14:21:17.965000Z", "content-type": "application/octet-stream; dcp-type=data; dcp-type=data", "size": 184842, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_b7f242d4-8641-4765-9f8d-c1b8ceaa1e8e", "crc32c": "b8c266c7", @@ -200,7 +184,6 @@ "version": "2021-06-28T14:21:17.637000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 617, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -211,7 +194,6 @@ "version": "2021-06-28T14:21:17.977000Z", "content-type": "application/octet-stream; dcp-type=data; dcp-type=data", "size": 193841, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_b7503d91-124b-4275-a220-5a3e023e1217", "crc32c": "5ebb84c6", @@ -225,7 +207,6 @@ "version": "2021-06-28T14:21:18.634000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -236,7 +217,6 @@ "version": "2021-06-28T14:21:17.929000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 549, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -247,7 +227,6 @@ "version": "2021-06-28T14:21:17.953000Z", "content-type": "application/octet-stream; dcp-type=data; dcp-type=data", "size": 57834, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_70dd09f2-b511-4ba0-b9a9-c29f9970bddb", "crc32c": "f345df0c", @@ -261,7 +240,6 @@ "version": "2021-06-28T14:21:16.987000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 916, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -272,7 +250,6 @@ "version": "2021-06-28T14:21:17.626000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1022583763, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_1cd03a77-2af0-4507-a0c9-0edc2579c71f", "crc32c": "2e806c02", @@ -286,7 +263,6 @@ "version": "2021-06-28T14:21:16.920000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 916, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -297,7 +273,6 @@ "version": "2021-06-28T14:21:16.928000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 916, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -308,7 +283,6 @@ "version": "2021-06-28T14:21:16.911000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 916, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -319,7 +293,6 @@ "version": "2021-06-28T14:21:17.557000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4203835842, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_13506603-a2be-4cc7-bd11-4711bb0b7d7d", "crc32c": "e6f8d11a", @@ -333,7 +306,6 @@ "version": "2021-06-28T14:21:17.614000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 700197355, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_15d3e34d-828d-40d3-867a-1204fc662dad", "crc32c": "d0e55a31", @@ -347,7 +319,6 @@ "version": "2021-06-28T14:21:17.398000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1410, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -358,7 +329,6 @@ "version": "2021-06-28T14:21:17.426000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 885, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -369,7 +339,6 @@ "version": "2021-06-28T14:21:17.941000Z", "content-type": "application/octet-stream; dcp-type=data; dcp-type=data", "size": 547824, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_82d416d0-30c5-455f-a219-b0c98956acd8", "crc32c": "cb0ebb55", @@ -383,7 +352,6 @@ "version": "2021-06-28T14:21:17.456000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -394,7 +362,6 @@ "version": "2021-06-28T14:21:17.941000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 509, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -405,7 +372,6 @@ "version": "2021-06-28T14:21:17.533000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1908869082, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_f257507e-5911-4421-ab82-37ee6f10da74", "crc32c": "6611c40b", @@ -419,7 +385,6 @@ "version": "2021-06-28T14:21:18.027000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -430,7 +395,6 @@ "version": "2021-06-28T14:21:17.998000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -441,7 +405,6 @@ "version": "2021-06-28T14:21:17.493000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -452,7 +415,6 @@ "version": "2021-06-28T14:21:18.008000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -463,7 +425,6 @@ "version": "2021-06-28T14:21:17.521000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4272849055, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_9e70df3e-e8ee-4f80-a7ab-203a2dd88aa0", "crc32c": "2468ae75", @@ -477,7 +438,6 @@ "version": "2021-06-28T14:21:17.435000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1270, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -488,7 +448,6 @@ "version": "2021-06-28T14:21:17.929000Z", "content-type": "application/octet-stream; dcp-type=data; dcp-type=data", "size": 87863503, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_2966f26e-7628-415b-9348-8878d982a676", "crc32c": "55189345", @@ -502,7 +461,6 @@ "version": "2021-06-28T14:21:17.469000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -513,7 +471,6 @@ "version": "2021-06-28T14:21:17.626000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 617, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -524,7 +481,6 @@ "version": "2021-06-28T14:21:18.070000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -535,7 +491,6 @@ "version": "2021-06-28T14:21:16.972000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 916, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -546,7 +501,6 @@ "version": "2021-06-28T14:21:17.599000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4325523016, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_91e61cc0-f5ee-4fa7-b77d-1526fe370117", "crc32c": "f848708b", @@ -560,7 +514,6 @@ "version": "2021-06-28T14:21:17.469000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2711169529, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_da6a4e63-7d13-4cdd-8fc7-3d1e5c39ca8d", "crc32c": "b80517a8", @@ -574,7 +527,6 @@ "version": "2021-06-28T14:21:18.035000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -585,7 +537,6 @@ "version": "2021-06-28T14:21:17.557000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -596,7 +547,6 @@ "version": "2021-06-28T14:21:17.355000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 732, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -607,7 +557,6 @@ "version": "2021-06-28T14:21:17.965000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 504, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -618,7 +567,6 @@ "version": "2021-06-28T14:21:17.637000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1541984087, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_af994530-3921-487c-94cc-acbaff660b0a", "crc32c": "576c4860", @@ -632,7 +580,6 @@ "version": "2021-06-28T14:21:16.961000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 916, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -643,7 +590,6 @@ "version": "2021-06-28T14:21:16.940000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 916, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -654,7 +600,6 @@ "version": "2021-06-28T14:21:17.481000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -665,7 +610,6 @@ "version": "2021-06-28T14:21:18.045000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -676,7 +620,6 @@ "version": "2021-06-28T14:21:16.893000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 952, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -687,7 +630,6 @@ "version": "2021-06-28T14:21:17.409000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1412, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -698,7 +640,6 @@ "version": "2021-06-28T14:21:17.989000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 486, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -709,7 +650,6 @@ "version": "2021-06-28T14:21:17.506000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -720,7 +660,6 @@ "version": "2021-06-28T14:21:17.977000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 490, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -731,7 +670,6 @@ "version": "2021-06-28T14:21:17.382000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1197, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -742,7 +680,6 @@ "version": "2021-06-28T14:21:17.493000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1940279193, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_67f2c31b-0e63-4bd2-9e3c-92c006f95717", "crc32c": "a50e0bbc", @@ -756,7 +693,6 @@ "version": "2021-06-28T14:21:17.569000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1964146384, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_e01c4a62-ecd9-4a8d-9178-c3602160d045", "crc32c": "925cac87", @@ -770,7 +706,6 @@ "version": "2021-06-28T14:21:17.582000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -781,7 +716,6 @@ "version": "2021-06-28T14:21:18.755000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 343, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -792,7 +726,6 @@ "version": "2021-06-28T14:21:17.282000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 728, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -803,7 +736,6 @@ "version": "2021-06-22T08:36:39.408000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 5999, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -814,7 +746,6 @@ "version": "2021-06-28T14:21:17.569000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -825,7 +756,6 @@ "version": "2021-06-28T14:21:17.006000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 916, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -836,7 +766,6 @@ "version": "2021-06-28T14:21:17.599000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -847,7 +776,6 @@ "version": "2021-06-28T14:21:17.545000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 629, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -858,7 +786,6 @@ "version": "2021-06-28T14:21:17.545000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2787792522, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_08755a99-c8f0-420a-9d21-4dca10b40ba5_0a3b3a90-9b36-4030-821e-7e50c1f833d9", "crc32c": "71b46fde", @@ -3691,5 +3618,34 @@ ] } ] - } + }, + + "stitched": [ + "000d1e4b-4c1f-40de-8fd6-8a3d1a26e1d2", + "035ded30-cc0f-4e93-b675-8496f7146a27", + "06d54587-f54b-490c-8d29-3d84025e3b14", + "16c2629e-f042-4eef-a40e-3643dacf9926", + "1a2e6680-19be-406a-852f-51eda87d7e42", + "39fdb0ae-9a00-4829-a581-e7cb59798f02", + "3cd05b67-22cf-4bea-988a-7a1fb8104fa9", + "64eeaef0-b669-4637-9333-466c78643c09", + "6a72730a-1485-48f4-9b26-adc87380ad9b", + "6b94ce38-27b9-460e-ab1b-bceb18275c71", + "7113cb1e-7289-4fe2-ba15-bbe0620bd808", + "7c1802b3-0be5-4202-b14e-141974ca7fb3", + "87e562e3-cb28-4239-bdf6-5c562d35963a", + "9610cb70-57c1-466d-b9c9-faa22aa7b917", + "9c473261-cbb8-462f-ae4a-778a3ae8c566", + "9fa34db2-7968-4749-a83f-91ec2b12982d", + "a97f4858-0f13-405a-8b28-98ee5f997999", + "bca273dd-1758-4439-b7e0-745755dcffa0", + "c87f6dbf-1062-4e72-a19d-db779f1d3e66", + "d3965eac-1d56-4809-bf64-8291c9bbdf2f", + "d5925eb4-5192-4bc0-83e4-5c6d847118ef", + "d86c34c4-0aeb-4f50-a53e-5a0983c906b7", + "dc5b2d96-ba74-4bd0-bcf0-747548e1c6d7", + "eacaacbb-f514-49bb-bfbf-ccb123c5bf2e", + "ee52ecd1-68c0-48dd-82c2-6d3e45869b38", + "fd13fc62-8767-45d7-aa48-8a140f9a5005" + ] } \ No newline at end of file diff --git a/test/indexer/data/04836733-0449-4e57-be2e-6f3b8fbdfb12.dss.hca.json b/test/indexer/data/04836733-0449-4e57-be2e-6f3b8fbdfb12.dss.hca.json index 3fead213a..73a3e138f 100644 --- a/test/indexer/data/04836733-0449-4e57-be2e-6f3b8fbdfb12.dss.hca.json +++ b/test/indexer/data/04836733-0449-4e57-be2e-6f3b8fbdfb12.dss.hca.json @@ -6,7 +6,6 @@ "version": "2021-05-10T23:24:56.599000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1399015453, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a0c5b82e-0a50-469c-a3e9-a99d24b75abe", "crc32c": "9483ee43", @@ -20,7 +19,6 @@ "version": "2021-05-10T23:24:57.256000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 885462729, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_14c0d71c-bf57-4261-846c-0b656ab50896", "crc32c": "acca3bca", @@ -34,7 +32,6 @@ "version": "2021-05-10T23:24:55.848000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2606100857, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_74dac87d-312a-44a5-ad01-8629fff394aa", "crc32c": "c8b99ec9", @@ -48,7 +45,6 @@ "version": "2021-05-10T23:24:56.488000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -59,7 +55,6 @@ "version": "2021-05-10T23:24:59.557000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 805287802, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f4cdaaf4-e41d-402b-8974-d1be58dfe0b1", "crc32c": "07caf594", @@ -73,7 +68,6 @@ "version": "2021-05-10T23:24:59.120000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2531485579, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0341ee2d-395d-4397-8f2f-4735417958d6", "crc32c": "c27a96d1", @@ -87,7 +81,6 @@ "version": "2021-05-10T23:25:00.590000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -98,7 +91,6 @@ "version": "2021-05-10T23:24:58.005000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -109,7 +101,6 @@ "version": "2021-05-10T23:24:58.932000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -120,7 +111,6 @@ "version": "2021-05-10T23:24:56.019000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 520184625, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e952d2a9-b409-4e4c-becc-7916f53514f3", "crc32c": "2f72380e", @@ -134,7 +124,6 @@ "version": "2021-05-10T23:24:55.864000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 334402592, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1b776641-33ba-43b8-a306-012d75c3e113", "crc32c": "14ab6d09", @@ -148,7 +137,6 @@ "version": "2021-05-10T23:24:56.725000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 306146480, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_37919f15-34b1-4ba8-9f93-44083f801720", "crc32c": "3b9d25a3", @@ -162,7 +150,6 @@ "version": "2021-05-10T23:24:59.644000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -173,7 +160,6 @@ "version": "2021-05-10T23:24:54.910000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 990, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -184,7 +170,6 @@ "version": "2021-05-10T23:25:12.412000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 412, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -195,7 +180,6 @@ "version": "2021-05-10T23:24:56.774000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -206,7 +190,6 @@ "version": "2021-05-10T23:24:58.209000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 429897750, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_58329552-c7a7-4fbc-82e7-baeb98b8a3da", "crc32c": "3a46f1cf", @@ -220,7 +203,6 @@ "version": "2021-05-10T23:24:58.895000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 132046032, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d5ceed15-cf4c-44a7-86dd-4baf882152aa", "crc32c": "c18682e1", @@ -234,7 +216,6 @@ "version": "2021-05-10T23:25:05.832000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -245,7 +226,6 @@ "version": "2021-05-10T23:24:59.488000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 297397325, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_382f6f5c-5944-4738-b338-ac0ea389b458", "crc32c": "9898acae", @@ -259,7 +239,6 @@ "version": "2021-05-10T23:24:57.328000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 300595882, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_40f16128-7fb1-48f3-98de-a2aa191f110e", "crc32c": "4b659dfb", @@ -273,7 +252,6 @@ "version": "2021-05-10T23:24:57.823000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -284,7 +262,6 @@ "version": "2021-05-10T23:25:00.232000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -295,7 +272,6 @@ "version": "2021-05-10T23:24:55.652000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1118040836, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_20ee57a6-930b-435a-b126-379b1a051e6d", "crc32c": "e795d8bc", @@ -309,7 +285,6 @@ "version": "2021-05-10T23:24:59.945000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2160782487, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_98365f97-c1e7-4242-b6e4-bc1103869889", "crc32c": "6ac94e8d", @@ -323,7 +298,6 @@ "version": "2021-05-10T23:24:55.328000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 2454, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -334,7 +308,6 @@ "version": "2021-05-10T23:25:12.039000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -345,7 +318,6 @@ "version": "2021-05-10T23:24:56.550000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 604854646, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4198c4d0-1696-4ec4-8333-1b2c6f13f1bc", "crc32c": "aa162e31", @@ -359,7 +331,6 @@ "version": "2021-05-10T23:25:12.151000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -370,7 +341,6 @@ "version": "2021-05-10T23:24:57.569000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -381,7 +351,6 @@ "version": "2021-05-10T23:24:56.339000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 155298330, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c8437b86-5c16-4baf-a4e5-74b76907b3c3", "crc32c": "74a687c6", @@ -395,7 +364,6 @@ "version": "2021-05-10T23:24:59.957000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -406,7 +374,6 @@ "version": "2021-05-10T23:24:57.193000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -417,7 +384,6 @@ "version": "2021-05-10T23:24:57.341000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 852595117, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c3740ee8-e815-4ff8-a147-bf57c13a0f4c", "crc32c": "5a80e0c8", @@ -431,7 +397,6 @@ "version": "2021-05-10T23:24:57.806000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -442,7 +407,6 @@ "version": "2021-05-10T23:24:58.005000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3758178225, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fb8aa41e-6226-4d61-b7fa-d4c0c44b74f2", "crc32c": "8f86f908", @@ -456,7 +420,6 @@ "version": "2021-05-10T23:24:57.453000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 783383763, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_14387732-8ee0-4f48-80de-d7ef71898029", "crc32c": "a0f3c2d8", @@ -470,7 +433,6 @@ "version": "2021-05-10T23:24:57.429000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3963369232, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a32acfed-cdd1-47f9-bcde-3a7ce2a6c707", "crc32c": "9d658176", @@ -484,7 +446,6 @@ "version": "2021-05-10T23:24:59.857000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -495,7 +456,6 @@ "version": "2021-05-10T23:24:59.819000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -506,7 +466,6 @@ "version": "2021-05-10T23:24:55.241000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 935, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -517,7 +476,6 @@ "version": "2021-05-10T23:24:58.596000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 475604513, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e5c7526d-f370-4b3c-b702-205339aeb706", "crc32c": "3694bdf2", @@ -531,7 +489,6 @@ "version": "2021-05-10T23:24:58.300000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1379865044, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_51aad4d1-8c5c-4914-8f4a-fecffd721f25", "crc32c": "0abad25a", @@ -545,7 +502,6 @@ "version": "2021-05-10T23:24:59.945000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -556,7 +512,6 @@ "version": "2021-05-10T23:24:55.449000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 263629241, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d7ff1db4-3306-4b60-b3eb-e92b51c64238", "crc32c": "81b4d677", @@ -570,7 +525,6 @@ "version": "2021-05-10T23:25:10.607000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -581,7 +535,6 @@ "version": "2021-05-10T23:25:09.259000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -592,7 +545,6 @@ "version": "2021-05-10T23:24:56.476000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -603,7 +555,6 @@ "version": "2021-05-10T23:25:00.311000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1733989479, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_406556cc-61db-4499-918a-5b61de98f127", "crc32c": "42007f89", @@ -617,7 +568,6 @@ "version": "2021-05-10T23:24:55.437000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2083471006, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a276961e-b6f3-4ba5-bee1-d59e8093319a", "crc32c": "e67f8233", @@ -631,7 +581,6 @@ "version": "2021-05-10T23:24:57.480000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -642,7 +591,6 @@ "version": "2021-05-10T23:25:07.058000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 250233977, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5f1b5914-b967-4853-a841-cd1c1a715e0f", "crc32c": "4e66bc3a", @@ -656,7 +604,6 @@ "version": "2021-05-10T23:24:59.079000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -667,7 +614,6 @@ "version": "2021-05-10T23:24:56.269000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -678,7 +624,6 @@ "version": "2021-05-10T23:24:58.842000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -689,7 +634,6 @@ "version": "2021-05-10T23:25:00.021000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -700,7 +644,6 @@ "version": "2021-05-10T23:24:58.377000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1328409353, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5d999605-36c2-4176-8377-24085bbcd5d8", "crc32c": "11ee3e56", @@ -714,7 +657,6 @@ "version": "2021-05-10T23:24:59.455000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 834043613, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e3b84886-5c07-41d7-9cf0-b0a52a349b66", "crc32c": "3dba4bee", @@ -728,7 +670,6 @@ "version": "2021-05-10T23:24:55.797000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1106536772, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_83d70464-92f1-44c5-9ca5-2eff663e7a34", "crc32c": "a50b42cd", @@ -742,7 +683,6 @@ "version": "2021-05-10T23:24:59.215000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1073275612, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b9adfe71-0415-4102-9f44-932c2687b04d", "crc32c": "700eff41", @@ -756,7 +696,6 @@ "version": "2021-05-10T23:24:58.950000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 918596588, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_caba215a-e96e-4ec5-bd19-894461cac2dc", "crc32c": "58d625b8", @@ -770,7 +709,6 @@ "version": "2021-05-10T23:24:58.222000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -781,7 +719,6 @@ "version": "2021-05-10T23:24:57.095000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1134207272, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ef168454-2792-4701-bef4-e71f61bbed36", "crc32c": "28b7ef49", @@ -795,7 +732,6 @@ "version": "2021-05-10T23:24:59.933000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -806,7 +742,6 @@ "version": "2021-05-10T23:24:57.898000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -817,7 +752,6 @@ "version": "2021-05-10T23:24:58.950000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -828,7 +762,6 @@ "version": "2021-05-10T23:24:58.665000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -839,7 +772,6 @@ "version": "2021-05-10T23:24:57.181000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1090145193, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7aef5d3f-e799-4040-be9c-3f16360b7d7d", "crc32c": "9ec4a62f", @@ -853,7 +785,6 @@ "version": "2021-05-10T23:24:56.587000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 617256737, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_01f65941-1c56-41ca-b27e-1e7dbacd797b", "crc32c": "7be8ccdd", @@ -867,7 +798,6 @@ "version": "2021-05-10T23:24:59.107000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1084423848, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cdc5906e-e47a-48ca-93d5-f2162e71df76", "crc32c": "9f3afc86", @@ -881,7 +811,6 @@ "version": "2021-05-10T23:24:57.624000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2073386838, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_59f39f3b-eb55-48ab-bea9-bf494761db03", "crc32c": "46542ab6", @@ -895,7 +824,6 @@ "version": "2021-05-10T23:24:55.942000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -906,7 +834,6 @@ "version": "2021-05-10T23:24:57.784000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -917,7 +844,6 @@ "version": "2021-05-10T23:24:56.611000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 195353258, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9400a1a2-f6c9-443a-a974-fd520283dc62", "crc32c": "cc7d484c", @@ -931,7 +857,6 @@ "version": "2021-05-10T23:24:57.404000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 588801633, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c44daba3-ae24-4f2b-9de8-37d09b26b7ba", "crc32c": "7d9b13fe", @@ -945,7 +870,6 @@ "version": "2021-05-10T23:24:57.129000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 344049361, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b91adec6-1a9c-4082-a347-6b8a2c968723", "crc32c": "454a1bc2", @@ -959,7 +883,6 @@ "version": "2021-05-10T23:24:56.687000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -970,7 +893,6 @@ "version": "2021-05-10T23:25:12.425000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 412, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -981,7 +903,6 @@ "version": "2021-05-10T23:24:55.542000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1139007999, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fef32852-18dd-4ea6-91d3-7af9e02e6255", "crc32c": "5680f9c3", @@ -995,7 +916,6 @@ "version": "2021-05-10T23:24:59.581000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 324676206, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e8bdca4f-514d-4c6f-923c-241a70a4bf51", "crc32c": "5f81d967", @@ -1009,7 +929,6 @@ "version": "2021-05-10T23:25:12.075000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1020,7 +939,6 @@ "version": "2021-05-10T23:24:58.051000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1031,7 +949,6 @@ "version": "2021-05-10T23:24:55.523000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 347935477, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_67c40932-2205-44f6-b57d-c559ba28372b", "crc32c": "aa2677bf", @@ -1045,7 +962,6 @@ "version": "2021-05-10T23:24:56.069000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1544575803, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fd8b18bc-1c94-4f94-9328-2a08f8f7466f", "crc32c": "3bf3eb0e", @@ -1059,7 +975,6 @@ "version": "2021-05-10T23:24:59.569000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1070,7 +985,6 @@ "version": "2021-05-10T23:24:57.181000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1081,7 +995,6 @@ "version": "2021-05-10T23:25:05.626000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 813876985, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_76d9c968-1816-4cbe-9ec7-a76fa8bc76c9", "crc32c": "8fe8536f", @@ -1095,7 +1008,6 @@ "version": "2021-05-10T23:24:59.107000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1106,7 +1018,6 @@ "version": "2021-05-10T23:24:55.095000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 723, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1117,7 +1028,6 @@ "version": "2021-05-10T23:24:58.989000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 301723167, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_eb8d3790-6919-428c-a4f5-478afacfdd7e", "crc32c": "61edda4e", @@ -1131,7 +1041,6 @@ "version": "2021-05-10T23:24:59.234000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1142,7 +1051,6 @@ "version": "2021-05-10T23:25:03.225000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1153,7 +1061,6 @@ "version": "2021-05-10T23:24:57.354000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1164,7 +1071,6 @@ "version": "2021-05-10T23:24:57.230000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1175,7 +1081,6 @@ "version": "2021-05-10T23:24:56.513000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 510193078, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_101ed484-1310-46b6-9bbb-15becfb79bb7", "crc32c": "72e8100c", @@ -1189,7 +1094,6 @@ "version": "2021-05-10T23:24:56.880000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1272115747, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_165ef4ed-6674-458f-8c9e-524dfdd70407", "crc32c": "a3675fde", @@ -1203,7 +1107,6 @@ "version": "2021-05-10T23:24:55.822000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1214,7 +1117,6 @@ "version": "2021-05-10T23:24:59.334000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1293766134, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_04ebc32e-0279-4004-a099-ffbc47acc83c", "crc32c": "f94e2b4d", @@ -1228,7 +1130,6 @@ "version": "2021-05-10T23:24:55.019000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1150, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1239,7 +1140,6 @@ "version": "2021-05-10T23:24:56.563000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1370785582, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0bebfd5e-c4d0-49ee-8b74-e5c4d01927ec", "crc32c": "ba55f67e", @@ -1253,7 +1153,6 @@ "version": "2021-05-10T23:24:57.366000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1264,7 +1163,6 @@ "version": "2021-05-10T23:25:12.466000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 412, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1275,7 +1173,6 @@ "version": "2021-05-10T23:24:56.997000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 975521265, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ae6f5fc5-dd1e-44b0-b195-b20fc6538624", "crc32c": "4c184cd9", @@ -1289,7 +1186,6 @@ "version": "2021-05-10T23:24:58.064000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 524320504, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8ec9c2c3-2dbb-4556-9b18-11f4413d69ca", "crc32c": "9c5e8e9b", @@ -1303,7 +1199,6 @@ "version": "2021-05-10T23:24:58.237000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3454631457, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bcdf0e16-b504-4cc9-96bd-9581b475fb66", "crc32c": "f519fa8b", @@ -1317,7 +1212,6 @@ "version": "2021-05-10T23:24:59.693000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 318136853, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_98f63694-c925-4aea-ae93-b45ce4262eec", "crc32c": "aae669f6", @@ -1331,7 +1225,6 @@ "version": "2021-05-10T23:24:55.761000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 985000449, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3ac86bc4-577c-44ca-b212-3eb122385c56", "crc32c": "9d9c2847", @@ -1345,7 +1238,6 @@ "version": "2021-05-10T23:24:56.415000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1356,7 +1248,6 @@ "version": "2021-05-10T23:24:58.907000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1367,7 +1258,6 @@ "version": "2021-05-10T23:24:54.891000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 991, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1378,7 +1268,6 @@ "version": "2021-05-10T23:25:07.987000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1056099871, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3b6240d9-e702-489a-ab93-fad15723289f", "crc32c": "b50cad08", @@ -1392,7 +1281,6 @@ "version": "2021-05-10T23:24:59.870000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1403,7 +1291,6 @@ "version": "2021-05-10T23:24:57.686000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -1414,7 +1301,6 @@ "version": "2021-05-10T23:24:57.205000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1425,7 +1311,6 @@ "version": "2021-05-10T23:24:59.606000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1436,7 +1321,6 @@ "version": "2021-05-10T23:24:58.185000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1447,7 +1331,6 @@ "version": "2021-05-10T23:24:58.920000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1458,7 +1341,6 @@ "version": "2021-05-10T23:24:59.594000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1469,7 +1351,6 @@ "version": "2021-05-10T23:25:00.610000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3564691256, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c5347064-8cca-4f36-bd4b-f8f0a02145e1", "crc32c": "1177e6fe", @@ -1483,7 +1364,6 @@ "version": "2021-05-10T23:24:59.833000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1494,7 +1374,6 @@ "version": "2021-05-10T23:24:59.807000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 328834443, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ce0a6b0e-2860-41e3-8bd0-72eacd696157", "crc32c": "f70755ff", @@ -1508,7 +1387,6 @@ "version": "2021-05-10T23:24:57.543000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -1519,7 +1397,6 @@ "version": "2021-05-10T23:24:59.287000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1530,7 +1407,6 @@ "version": "2021-05-10T23:25:02.770000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1980306416, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7282948d-837e-45a4-8721-d0b37e0c70f8", "crc32c": "3dda4ab2", @@ -1544,7 +1420,6 @@ "version": "2021-05-10T23:24:59.420000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2322413437, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5a512215-439f-41e1-93b9-f277182b05d7", "crc32c": "5759a503", @@ -1558,7 +1433,6 @@ "version": "2021-05-10T23:25:04.821000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1569,7 +1443,6 @@ "version": "2021-05-10T23:24:56.321000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1108137817, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_dd53593f-f9a4-4a35-93b7-1a4ac98607de", "crc32c": "9b03e040", @@ -1583,7 +1456,6 @@ "version": "2021-05-10T23:24:57.861000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2898415962, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b032b4f5-cbe3-4426-baa6-375b8261e865", "crc32c": "d137458a", @@ -1597,7 +1469,6 @@ "version": "2021-05-10T23:24:55.511000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1608,7 +1479,6 @@ "version": "2021-05-10T23:25:09.538000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1045953773, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_99896382-ad7f-4c3d-95ce-3937eb64533f", "crc32c": "f3ab6cb0", @@ -1622,7 +1492,6 @@ "version": "2021-05-10T23:24:59.357000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2985786867, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a4064546-6060-4e60-a3ea-6d8fffa62727", "crc32c": "8ba77221", @@ -1636,7 +1505,6 @@ "version": "2021-05-10T23:24:58.869000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 422406945, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9c1e4974-93b1-4328-986c-11a5e43e4c87", "crc32c": "a4c5193b", @@ -1650,7 +1518,6 @@ "version": "2021-05-10T23:24:57.095000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1661,7 +1528,6 @@ "version": "2021-05-10T23:24:55.486000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1672,7 +1538,6 @@ "version": "2021-05-10T23:24:55.486000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 261671625, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6ef94fc9-3ebf-494a-9beb-28d6474c267b", "crc32c": "ec77dbd8", @@ -1686,7 +1551,6 @@ "version": "2021-05-10T23:24:58.326000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 398966697, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fe6297b1-1df7-4cae-8d5e-8ab2b3202584", "crc32c": "de0f0ad3", @@ -1700,7 +1564,6 @@ "version": "2021-05-10T23:24:58.124000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1711,7 +1574,6 @@ "version": "2021-05-10T23:24:57.531000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -1722,7 +1584,6 @@ "version": "2021-05-10T23:24:55.930000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 332311688, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_76fef805-90d8-4794-9dcf-630479bf586d", "crc32c": "b8c0ccb5", @@ -1736,7 +1597,6 @@ "version": "2021-05-10T23:24:55.676000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1747,7 +1607,6 @@ "version": "2021-05-10T23:24:59.440000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1758,7 +1617,6 @@ "version": "2021-05-10T23:25:11.821000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 528, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -1769,7 +1627,6 @@ "version": "2021-05-10T23:24:57.480000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 612812703, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4d30bae6-b41b-4bea-8701-e6f8b9332a0c", "crc32c": "885dd3d3", @@ -1783,7 +1640,6 @@ "version": "2021-05-10T23:24:59.050000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 299560938, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bd856ae9-140b-43b2-b4ba-e11b7f75c6e9", "crc32c": "6e43fab2", @@ -1797,7 +1653,6 @@ "version": "2021-05-10T23:24:58.699000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 466356505, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_dd17992f-c7fd-48a0-a917-10670de65a2f", "crc32c": "e5c48cf0", @@ -1811,7 +1666,6 @@ "version": "2021-05-10T23:24:58.197000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1822,7 +1676,6 @@ "version": "2021-05-10T23:24:57.156000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1833,7 +1686,6 @@ "version": "2021-05-10T23:24:59.857000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 961635662, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a26c5f8a-0a62-4ccd-a780-9acb800579c9", "crc32c": "dae91349", @@ -1847,7 +1699,6 @@ "version": "2021-05-10T23:24:56.712000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1510373008, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_823d497e-ea8c-4b44-b76a-ec6c60f1ced0", "crc32c": "a985f41c", @@ -1861,7 +1712,6 @@ "version": "2021-05-10T23:24:55.738000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2251940287, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1138ce8d-0779-40eb-baee-65615616f0c3", "crc32c": "64b2e37d", @@ -1875,7 +1725,6 @@ "version": "2021-05-10T23:24:58.842000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 5792387382, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a2d89558-3f29-43fc-919d-970a1eb6ec3b", "crc32c": "2cff25de", @@ -1889,7 +1738,6 @@ "version": "2021-05-10T23:24:59.569000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1802082195, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e87bac91-6eb0-4e84-a2f3-ef519af1a087", "crc32c": "83a7e288", @@ -1903,7 +1751,6 @@ "version": "2021-05-10T23:24:54.955000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 981, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1914,7 +1761,6 @@ "version": "2021-05-10T23:25:11.936000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 414, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1925,7 +1771,6 @@ "version": "2021-05-10T23:24:56.737000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1936,7 +1781,6 @@ "version": "2021-05-10T23:25:09.885000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2442902001, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0c04a3f1-bc16-46ac-ab9e-c5ec8a122f0b", "crc32c": "c529dd3d", @@ -1950,7 +1794,6 @@ "version": "2021-05-10T23:25:00.009000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1961,7 +1804,6 @@ "version": "2021-05-10T23:24:55.676000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 342433890, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f4fd5fd2-6ee9-43bc-8c03-debee59274ac", "crc32c": "44938513", @@ -1975,7 +1817,6 @@ "version": "2021-05-10T23:25:03.943000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4156891778, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_22caba37-ee99-49be-bb7c-df5a742f21df", "crc32c": "8afbcc96", @@ -1989,7 +1830,6 @@ "version": "2021-05-10T23:24:55.566000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 351636030, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ce074a01-1f86-4475-ad95-be9841fd20d6", "crc32c": "b428765d", @@ -2003,7 +1843,6 @@ "version": "2021-05-10T23:24:57.315000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1972868441, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_87b39b8e-d8a4-4e81-aa8d-61f199a4b8af", "crc32c": "afcf9eb5", @@ -2017,7 +1856,6 @@ "version": "2021-05-10T23:24:58.136000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2028,7 +1866,6 @@ "version": "2021-05-10T23:24:55.135000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 723, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2039,7 +1876,6 @@ "version": "2021-05-10T23:24:56.428000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2050,7 +1886,6 @@ "version": "2021-05-10T23:24:55.725000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 993611820, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_19b409e7-84b2-488d-8854-46f3263e1799", "crc32c": "6263305e", @@ -2064,7 +1899,6 @@ "version": "2021-05-10T23:24:59.064000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2075,7 +1909,6 @@ "version": "2021-05-10T23:24:55.377000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2086,7 +1919,6 @@ "version": "2021-05-10T23:24:57.078000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2097,7 +1929,6 @@ "version": "2021-05-10T23:24:56.295000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 495459981, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_56546f99-ca28-4688-9077-94a66abcac8b", "crc32c": "22c21d9b", @@ -2111,7 +1942,6 @@ "version": "2021-05-10T23:24:58.989000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2122,7 +1952,6 @@ "version": "2021-05-10T23:24:57.883000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2133,7 +1962,6 @@ "version": "2021-05-10T23:24:55.592000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2705145773, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5e1b0ed8-c8f4-495d-b06b-4e57b8948f20", "crc32c": "e7e29f27", @@ -2147,7 +1975,6 @@ "version": "2021-05-10T23:25:08.854000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 334354730, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_98796bec-7249-41f4-b258-8c1e29ad936e", "crc32c": "f486f0bb", @@ -2161,7 +1988,6 @@ "version": "2021-05-10T23:24:58.793000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2172,7 +1998,6 @@ "version": "2021-05-10T23:24:59.845000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 289498775, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fd669701-f27b-4ec4-9030-914e6e882f9e", "crc32c": "8ccbd513", @@ -2186,7 +2011,6 @@ "version": "2021-05-10T23:24:57.637000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -2197,7 +2021,6 @@ "version": "2021-05-10T23:24:56.081000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 198361174, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b21831e9-702e-4ed1-a5ca-b9197a6d2b26", "crc32c": "065d04ab", @@ -2211,7 +2034,6 @@ "version": "2021-05-10T23:24:57.702000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -2222,7 +2044,6 @@ "version": "2021-05-10T23:24:59.921000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 286273789, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_af0f375b-df23-420c-a9dd-b3ece68d3762", "crc32c": "60de60fe", @@ -2236,7 +2057,6 @@ "version": "2021-05-10T23:24:58.313000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2247,7 +2067,6 @@ "version": "2021-05-10T23:24:59.525000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1814660599, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_58374570-6778-4753-9ccd-8f18e3983ba1", "crc32c": "5ea3b913", @@ -2261,7 +2080,6 @@ "version": "2021-05-10T23:24:56.295000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2272,7 +2090,6 @@ "version": "2021-05-10T23:24:57.285000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 303498772, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_827125f0-9fd1-4e8c-9ae3-f0c52e9c7cc1", "crc32c": "946455db", @@ -2286,7 +2103,6 @@ "version": "2021-05-10T23:24:55.641000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 341426394, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_868adddf-c815-420d-bb1e-6ae09c524adc", "crc32c": "91c824a3", @@ -2300,7 +2116,6 @@ "version": "2021-05-10T23:25:06.889000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2311,7 +2126,6 @@ "version": "2021-05-10T23:24:58.743000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 529338604, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a632b579-ae5a-4e62-a705-0dc9de4827e7", "crc32c": "e0cc1fb8", @@ -2325,7 +2139,6 @@ "version": "2021-05-10T23:25:11.107000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2336,7 +2149,6 @@ "version": "2021-05-10T23:24:58.087000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2347,7 +2159,6 @@ "version": "2021-05-10T23:24:59.631000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 892085856, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_61619cdb-ef55-45a1-9db5-f3bdeced72e5", "crc32c": "ec5e7970", @@ -2361,7 +2172,6 @@ "version": "2021-05-10T23:24:56.106000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1488688035, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1f99309a-fb72-4611-b62a-480217e75d2f", "crc32c": "3d28651b", @@ -2375,7 +2185,6 @@ "version": "2021-05-10T23:24:56.750000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2386,7 +2195,6 @@ "version": "2021-05-10T23:24:57.205000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 307080601, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_19e5604b-6b50-4610-81e7-988b24615a8f", "crc32c": "9b69e535", @@ -2400,7 +2208,6 @@ "version": "2021-05-10T23:24:58.032000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1654423260, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ac0d620c-109d-47a6-ae15-f846f70f4b1b", "crc32c": "7ee9e49d", @@ -2414,7 +2221,6 @@ "version": "2021-05-10T23:24:59.027000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2018023631, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bfc3b7ff-0430-4c2f-853f-d61b63774899", "crc32c": "aac04c5f", @@ -2428,7 +2234,6 @@ "version": "2021-05-10T23:24:56.674000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2439,7 +2244,6 @@ "version": "2021-05-10T23:24:58.285000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2450,7 +2254,6 @@ "version": "2021-05-10T23:24:55.664000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2600373877, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e46fdd80-f8b5-4544-af01-915e1d8dcb69", "crc32c": "dfaba01a", @@ -2464,7 +2267,6 @@ "version": "2021-05-10T23:25:00.546000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 507028481, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5ce53f1a-0261-4306-b758-182bb4ffd68e", "crc32c": "f3080e94", @@ -2478,7 +2280,6 @@ "version": "2021-05-10T23:24:58.682000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 5200258509, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fc7a35a4-47ad-4830-9f93-06625691ecc0", "crc32c": "8e782062", @@ -2492,7 +2293,6 @@ "version": "2021-05-10T23:24:57.466000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1822207221, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2353e596-5d2b-4df1-bde5-d286af08b556", "crc32c": "8d11b600", @@ -2506,7 +2306,6 @@ "version": "2021-05-10T23:24:55.250000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 844, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -2517,7 +2316,6 @@ "version": "2021-05-10T23:24:55.942000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1087482475, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_56c5d092-f657-4ac1-ae91-58be03f6c9be", "crc32c": "d0056eda", @@ -2531,7 +2329,6 @@ "version": "2021-05-10T23:24:58.531000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 452125989, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_26c8b065-1209-48d6-a89a-4d1b1d56d07d", "crc32c": "ff281b80", @@ -2545,7 +2342,6 @@ "version": "2021-05-10T23:24:56.055000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2556,7 +2352,6 @@ "version": "2021-05-10T23:25:00.921000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1859351951, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0c682f11-268f-4cce-93b5-76fab0acc583", "crc32c": "f3a05cc5", @@ -2570,7 +2365,6 @@ "version": "2021-05-10T23:24:57.078000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 353241214, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1bc5ab8a-f47e-421d-9de1-5c1586f00a88", "crc32c": "f85aeb67", @@ -2584,7 +2378,6 @@ "version": "2021-05-10T23:24:57.300000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2595,7 +2388,6 @@ "version": "2021-05-10T23:24:58.613000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1456150297, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b5b8bb51-c1e8-41da-98f0-da695553542f", "crc32c": "4ef27f37", @@ -2609,7 +2401,6 @@ "version": "2021-05-10T23:24:55.580000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2620,7 +2411,6 @@ "version": "2021-05-10T23:24:57.379000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 796122437, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b818ebe8-fdb2-46ea-9432-ebefed86805e", "crc32c": "eb972a2d", @@ -2634,7 +2424,6 @@ "version": "2021-05-10T23:24:57.738000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4646670855, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3742a288-7bc9-46a4-94af-8422cfd04f1d", "crc32c": "87ec0ed8", @@ -2648,7 +2437,6 @@ "version": "2021-05-10T23:24:54.968000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 984, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2659,7 +2447,6 @@ "version": "2021-05-10T23:24:56.563000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2670,7 +2457,6 @@ "version": "2021-05-10T23:24:56.106000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2681,7 +2467,6 @@ "version": "2021-05-10T23:24:59.525000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2692,7 +2477,6 @@ "version": "2021-05-10T23:24:56.833000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2942328832, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0ea4e8ec-183a-438a-83b0-f7e704296ca5", "crc32c": "40d8a7d3", @@ -2706,7 +2490,6 @@ "version": "2021-05-10T23:24:58.717000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1521969245, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4d7e2846-8971-4647-a178-c85babb123cc", "crc32c": "407fc96b", @@ -2720,7 +2503,6 @@ "version": "2021-05-10T23:25:00.148000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 591989926, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f57b9624-b579-4883-8121-6e22f97118b9", "crc32c": "ed7ecf52", @@ -2734,7 +2516,6 @@ "version": "2021-05-10T23:24:56.428000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 531134114, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e7202c88-f8cf-42b7-81dc-411a58286bae", "crc32c": "e39e1246", @@ -2748,7 +2529,6 @@ "version": "2021-05-10T23:25:11.107000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2423603243, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_37ac2db0-d0af-4e12-ac55-dd319bdf36c7", "crc32c": "a155b620", @@ -2762,7 +2542,6 @@ "version": "2021-05-10T23:24:58.743000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2773,7 +2552,6 @@ "version": "2021-05-10T23:24:55.604000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 344113817, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_25d42ac4-e3ad-467b-b53b-109a7982a21d", "crc32c": "00a702a7", @@ -2787,7 +2565,6 @@ "version": "2021-05-10T23:24:57.518000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 554224892, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_035244d5-b457-4c09-9f08-f2060f356cf2", "crc32c": "053b333a", @@ -2801,7 +2578,6 @@ "version": "2021-05-10T23:24:59.148000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2812,7 +2588,6 @@ "version": "2021-05-10T23:24:58.453000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2823,7 +2598,6 @@ "version": "2021-05-10T23:24:59.251000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 319501978, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_597216f4-639d-4bb1-b61a-d1ebcd83165f", "crc32c": "b0789e0e", @@ -2837,7 +2611,6 @@ "version": "2021-05-10T23:24:57.609000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -2848,7 +2621,6 @@ "version": "2021-05-10T23:24:59.781000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2859,7 +2631,6 @@ "version": "2021-05-10T23:25:10.607000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1035446789, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ece59835-0f43-4939-8761-044fe3c70291", "crc32c": "1026b857", @@ -2873,7 +2644,6 @@ "version": "2021-05-10T23:24:59.744000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1030204644, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_da3f25d7-fc51-4ac5-8aff-a2aa70c9efc0", "crc32c": "3223e489", @@ -2887,7 +2657,6 @@ "version": "2021-05-10T23:24:58.051000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3832022425, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_52622536-0dd0-4792-8644-4fbeda540049", "crc32c": "bdc07ef3", @@ -2901,7 +2670,6 @@ "version": "2021-05-10T23:24:57.702000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 638677482, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bb09257e-3cea-4047-8c61-24202ae7a068", "crc32c": "c4e32418", @@ -2915,7 +2683,6 @@ "version": "2021-05-10T23:24:58.895000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2926,7 +2693,6 @@ "version": "2021-05-10T23:24:59.845000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2937,7 +2703,6 @@ "version": "2021-05-10T23:24:57.328000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2948,7 +2713,6 @@ "version": "2021-05-10T23:24:59.005000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2959,7 +2723,6 @@ "version": "2021-05-10T23:24:57.429000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -2970,7 +2733,6 @@ "version": "2021-05-10T23:24:56.967000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 426262488, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_af95aac8-b91a-4ecf-ae3b-3c1e056fb2d8", "crc32c": "5a88bb31", @@ -2984,7 +2746,6 @@ "version": "2021-05-10T23:24:56.339000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2995,7 +2756,6 @@ "version": "2021-05-10T23:24:56.500000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3006,7 +2766,6 @@ "version": "2021-05-10T23:24:58.377000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3017,7 +2776,6 @@ "version": "2021-05-10T23:24:55.213000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1086, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3028,7 +2786,6 @@ "version": "2021-05-10T23:24:56.094000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 668397983, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_44f2122d-7d4c-4eec-8191-fabbf5bff15c", "crc32c": "3177eedd", @@ -3042,7 +2799,6 @@ "version": "2021-05-10T23:24:56.447000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3053,7 +2809,6 @@ "version": "2021-05-10T23:24:57.722000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1986504012, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_979588e5-ac9a-4529-b532-18a607942dbe", "crc32c": "f240a849", @@ -3067,7 +2822,6 @@ "version": "2021-05-10T23:25:11.795000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 479, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -3078,7 +2832,6 @@ "version": "2021-05-10T23:25:09.319000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 325521075, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6f12248e-5200-4ced-b955-246a8e3035ed", "crc32c": "0e28d878", @@ -3092,7 +2845,6 @@ "version": "2021-05-10T23:24:59.756000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3103,7 +2855,6 @@ "version": "2021-05-10T23:24:59.730000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 339309012, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a20110ee-5eba-42cc-8c55-483b8097dfdd", "crc32c": "906e2b29", @@ -3117,7 +2868,6 @@ "version": "2021-05-10T23:24:59.544000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3128,7 +2878,6 @@ "version": "2021-05-10T23:25:01.593000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3139,7 +2888,6 @@ "version": "2021-05-10T23:24:59.984000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3150,7 +2898,6 @@ "version": "2021-05-10T23:24:58.857000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3161,7 +2908,6 @@ "version": "2021-05-10T23:24:55.702000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2318612723, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d4089ca0-daf9-4753-94b4-a66376ea5fad", "crc32c": "d2bc4064", @@ -3175,7 +2921,6 @@ "version": "2021-05-10T23:24:56.818000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1280722375, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b57e15e6-7fa3-4f12-99dd-b87deefe715a", "crc32c": "61f26436", @@ -3189,7 +2934,6 @@ "version": "2021-05-10T23:24:57.912000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2804238590, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_54e9309e-2534-43ea-a2db-b8ad3e2a1cf2", "crc32c": "f7274488", @@ -3203,7 +2947,6 @@ "version": "2021-05-10T23:24:55.037000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1102, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -3214,7 +2957,6 @@ "version": "2021-05-10T23:24:59.133000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3225,7 +2967,6 @@ "version": "2021-05-10T23:24:58.730000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3236,7 +2977,6 @@ "version": "2021-05-10T23:25:00.009000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 819315594, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2a136c30-089d-4a63-a9f5-f15fd285135e", "crc32c": "22c6445f", @@ -3250,7 +2990,6 @@ "version": "2021-05-10T23:24:57.418000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1709342946, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a077a50f-d511-41af-88f3-43798775871d", "crc32c": "ffbe2d87", @@ -3264,7 +3003,6 @@ "version": "2021-05-10T23:24:55.689000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3275,7 +3013,6 @@ "version": "2021-05-10T23:24:55.165000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 729, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3286,7 +3023,6 @@ "version": "2021-05-10T23:25:01.949000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2031050080, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_dfe406cc-5192-4260-b3e9-e501aa85b196", "crc32c": "b00dea07", @@ -3300,7 +3036,6 @@ "version": "2021-05-10T23:24:58.768000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3904827915, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_64bf030a-5e06-4405-9ab1-1244553f88bb", "crc32c": "104ae16c", @@ -3314,7 +3049,6 @@ "version": "2021-05-10T23:24:58.768000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3325,7 +3059,6 @@ "version": "2021-05-10T23:24:57.300000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 860854564, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_027dbe75-48e9-448d-9f4a-7aab62618029", "crc32c": "397c548f", @@ -3339,7 +3072,6 @@ "version": "2021-05-10T23:24:56.379000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 154244094, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e78bd1bb-dcb6-4a30-9b04-c8db206acce6", "crc32c": "015fff5b", @@ -3353,7 +3085,6 @@ "version": "2021-05-10T23:24:55.809000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3364,7 +3095,6 @@ "version": "2021-05-10T23:25:02.564000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3375,7 +3105,6 @@ "version": "2021-05-10T23:25:07.677000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3386,7 +3115,6 @@ "version": "2021-05-10T23:24:56.661000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 593275404, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_52ecf4c7-111a-4d80-9d34-0b55d6f07ac9", "crc32c": "d38f71c1", @@ -3400,7 +3128,6 @@ "version": "2021-05-10T23:24:55.175000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 729, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3411,7 +3138,6 @@ "version": "2021-05-10T23:24:58.793000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1750145016, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6d150385-bdb8-40cf-8236-2b9ad6558ae9", "crc32c": "bd6db2a2", @@ -3425,7 +3151,6 @@ "version": "2021-05-10T23:24:57.129000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3436,7 +3161,6 @@ "version": "2021-05-10T23:24:57.441000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 252155112, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9f9b1eb8-768f-4131-8c7d-d837dde90e66", "crc32c": "6699b9cd", @@ -3450,7 +3174,6 @@ "version": "2021-05-10T23:24:58.665000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2220583694, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b66ba5b7-c017-4bc2-85cc-680f0d8148fd", "crc32c": "311e003d", @@ -3464,7 +3187,6 @@ "version": "2021-05-10T23:24:55.749000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3475,7 +3197,6 @@ "version": "2021-05-10T23:24:59.005000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 890195244, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_df783777-b08e-4c08-b87b-dc6d410b2674", "crc32c": "e5f8384f", @@ -3489,7 +3210,6 @@ "version": "2021-05-10T23:24:57.943000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1208645017, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ee424904-fcc3-466a-9b7b-14c0c9e52f82", "crc32c": "cb6563dd", @@ -3503,7 +3223,6 @@ "version": "2021-05-10T23:24:55.628000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2616304336, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_39b4cf68-51c4-4106-b029-951de16748b0", "crc32c": "d4e26737", @@ -3517,7 +3236,6 @@ "version": "2021-05-10T23:24:58.805000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4044180974, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9baed3d2-fb3c-49ed-bd33-5ff3bf4d98f2", "crc32c": "1c3c4389", @@ -3531,7 +3249,6 @@ "version": "2021-05-10T23:24:59.618000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 331683184, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_733afec4-4329-4a87-8649-5ee4d44f2545", "crc32c": "c74477a3", @@ -3545,7 +3262,6 @@ "version": "2021-05-10T23:25:11.888000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 414, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3556,7 +3272,6 @@ "version": "2021-05-10T23:24:55.301000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 929, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -3567,7 +3282,6 @@ "version": "2021-05-10T23:25:09.538000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3578,7 +3292,6 @@ "version": "2021-05-10T23:24:57.845000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1255308430, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d2c2b97e-5c10-408d-b72c-ea3261c75c02", "crc32c": "6bb05067", @@ -3592,7 +3305,6 @@ "version": "2021-05-10T23:24:57.391000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3603,7 +3315,6 @@ "version": "2021-05-10T23:25:01.593000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 642328131, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_36df2cf6-81dd-4800-830d-0a70d2aef909", "crc32c": "2d95000d", @@ -3617,7 +3328,6 @@ "version": "2021-05-10T23:24:58.805000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3628,7 +3338,6 @@ "version": "2021-05-10T23:25:09.885000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3639,7 +3348,6 @@ "version": "2021-05-10T23:24:59.606000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1984681954, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9c9b5e07-7e91-4afe-bab5-2d4cd96caaac", "crc32c": "d8aaeb82", @@ -3653,7 +3361,6 @@ "version": "2021-05-10T23:24:57.506000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -3664,7 +3371,6 @@ "version": "2021-05-10T23:24:56.635000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1351766622, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6e04d9dc-18ce-4bf7-8cc1-dc1119b57875", "crc32c": "767735db", @@ -3678,7 +3384,6 @@ "version": "2021-05-10T23:25:07.058000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3689,7 +3394,6 @@ "version": "2021-05-10T23:25:00.311000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3700,7 +3404,6 @@ "version": "2021-05-10T23:25:05.181000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3711,7 +3414,6 @@ "version": "2021-05-10T23:24:58.197000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3480138395, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e69ae61f-a133-4d10-9159-aa5cdc385cf2", "crc32c": "ab6a9954", @@ -3725,7 +3427,6 @@ "version": "2021-05-10T23:24:55.223000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1082, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3736,7 +3437,6 @@ "version": "2021-05-10T23:24:58.112000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1597415498, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9c6851c3-de4e-4c5c-a283-e0f33a75d4fe", "crc32c": "dcd281bb", @@ -3750,7 +3450,6 @@ "version": "2021-05-10T23:24:57.943000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3761,7 +3460,6 @@ "version": "2021-05-10T23:24:56.006000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 165020801, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c7a6d47d-3167-4996-a9e6-1de844be6956", "crc32c": "9c3ef3f1", @@ -3775,7 +3473,6 @@ "version": "2021-05-10T23:24:55.401000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2279254555, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_97be43c9-1c95-41cd-ad1f-4ca3a130d0ba", "crc32c": "f402793a", @@ -3789,7 +3486,6 @@ "version": "2021-05-10T23:24:57.912000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3800,7 +3496,6 @@ "version": "2021-05-10T23:24:59.657000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 321557927, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a83634cb-43a9-4bad-bd76-5fe2c5b96d21", "crc32c": "90c2a037", @@ -3814,7 +3509,6 @@ "version": "2021-05-10T23:25:08.068000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3825,7 +3519,6 @@ "version": "2021-05-10T23:25:01.160000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3836,7 +3529,6 @@ "version": "2021-05-10T23:25:09.259000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2532330169, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5a7ed6b2-6d74-4c29-bb8c-3e4a5360e008", "crc32c": "2b4f55a1", @@ -3850,7 +3542,6 @@ "version": "2021-05-10T23:24:57.597000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -3861,7 +3552,6 @@ "version": "2021-05-10T23:24:58.699000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3872,7 +3562,6 @@ "version": "2021-05-10T23:25:00.148000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3883,7 +3572,6 @@ "version": "2021-05-10T23:24:55.067000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1152, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3894,7 +3582,6 @@ "version": "2021-05-10T23:24:57.256000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3905,7 +3592,6 @@ "version": "2021-05-10T23:24:55.880000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3916,7 +3602,6 @@ "version": "2021-05-10T23:24:57.285000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3927,7 +3612,6 @@ "version": "2021-05-10T23:25:09.319000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3938,7 +3622,6 @@ "version": "2021-05-10T23:24:59.996000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3949,7 +3632,6 @@ "version": "2021-05-10T23:25:12.437000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 412, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3960,7 +3642,6 @@ "version": "2021-05-10T23:24:55.652000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3971,7 +3652,6 @@ "version": "2021-05-10T23:24:58.975000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2091824955, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a70ac6e5-69c6-4821-a60e-f251fb560e93", "crc32c": "750d7716", @@ -3985,7 +3665,6 @@ "version": "2021-05-10T23:24:57.968000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3996,7 +3675,6 @@ "version": "2021-05-10T23:25:00.183000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1834056560, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_27e812ac-1786-40eb-ac57-f3b7b204a19f", "crc32c": "98f3b8f9", @@ -4010,7 +3688,6 @@ "version": "2021-05-10T23:24:56.525000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4021,7 +3698,6 @@ "version": "2021-05-10T23:24:56.525000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1145940984, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_263c86ff-a28c-4dcc-8175-08f45a119770", "crc32c": "4f83539d", @@ -4035,7 +3711,6 @@ "version": "2021-05-10T23:25:00.501000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4046,7 +3721,6 @@ "version": "2021-05-10T23:24:57.556000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -4057,7 +3731,6 @@ "version": "2021-05-10T23:24:55.271000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1527, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -4068,7 +3741,6 @@ "version": "2021-05-10T23:24:57.019000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4079,7 +3751,6 @@ "version": "2021-05-10T23:24:58.756000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4090,7 +3761,6 @@ "version": "2021-05-10T23:24:56.476000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 514799709, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_955a92f4-47a7-412a-af24-e22fae6c06f9", "crc32c": "9de991d6", @@ -4104,7 +3774,6 @@ "version": "2021-05-10T23:24:55.377000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 337988979, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_acc401bb-4481-45ae-8e5d-28070a3c204c", "crc32c": "19ef21fe", @@ -4118,7 +3787,6 @@ "version": "2021-05-10T23:24:56.880000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4129,7 +3797,6 @@ "version": "2021-05-10T23:24:57.036000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 434337220, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_414162fc-5edd-4d24-8d3f-3411f797e608", "crc32c": "dff52463", @@ -4143,7 +3810,6 @@ "version": "2021-05-10T23:24:59.882000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 292437967, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d63d65a8-73b6-4dfa-9f38-5f3a76b5f63f", "crc32c": "f5f09abd", @@ -4157,7 +3823,6 @@ "version": "2021-05-10T23:24:57.624000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -4168,7 +3833,6 @@ "version": "2021-05-10T23:25:06.108000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4179,7 +3843,6 @@ "version": "2021-05-10T23:24:59.756000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2369720493, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5bc7a978-3747-4da1-8e44-dade01ab43b1", "crc32c": "643c9c5d", @@ -4193,7 +3856,6 @@ "version": "2021-05-10T23:24:56.857000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 403500549, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_43a31c50-0430-4f8b-869e-d5e846c680ac", "crc32c": "0f3b64bd", @@ -4207,7 +3869,6 @@ "version": "2021-05-10T23:24:58.421000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1230891775, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_019cc811-4e9f-40d1-978b-875dbda86ee1", "crc32c": "2dd9b4b6", @@ -4221,7 +3882,6 @@ "version": "2021-05-10T23:24:57.569000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1958043420, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_90055f7e-202e-4a63-895b-694f88d4315c", "crc32c": "8c83eb31", @@ -4235,7 +3895,6 @@ "version": "2021-05-10T23:24:55.773000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4246,7 +3905,6 @@ "version": "2021-05-10T23:24:58.495000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4257,7 +3915,6 @@ "version": "2021-05-10T23:24:57.930000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 374756127, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6b2cab48-7884-46f5-954c-11f64cc31b10", "crc32c": "0eed68a9", @@ -4271,7 +3928,6 @@ "version": "2021-05-10T23:24:58.273000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3136782514, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_315cad23-0acd-4204-94c9-5f3c5c85565b", "crc32c": "d06b71ce", @@ -4285,7 +3941,6 @@ "version": "2021-05-10T23:24:58.453000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2842015326, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_95e89dd0-0b09-42fe-ba54-ed2620323603", "crc32c": "d96c05aa", @@ -4299,7 +3954,6 @@ "version": "2021-05-10T23:25:09.108000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4310,7 +3964,6 @@ "version": "2021-05-10T23:24:56.055000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 690327037, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f05ae912-401e-4895-b5a5-73a6db7f1294", "crc32c": "c60a6266", @@ -4324,7 +3977,6 @@ "version": "2021-05-10T23:24:57.036000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4335,7 +3987,6 @@ "version": "2021-05-10T23:25:00.217000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4346,7 +3997,6 @@ "version": "2021-05-10T23:25:10.475000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4357,7 +4007,6 @@ "version": "2021-05-10T23:24:58.531000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4368,7 +4017,6 @@ "version": "2021-05-10T23:24:56.043000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4379,7 +4027,6 @@ "version": "2021-05-10T23:24:59.894000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 981103006, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f01b79c3-738b-49de-88db-20c3c8f36e19", "crc32c": "a953bbd4", @@ -4393,7 +4040,6 @@ "version": "2021-05-10T23:24:58.555000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1397009994, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6d625b6a-9f19-48e4-b3d9-27897ec1e003", "crc32c": "37320b91", @@ -4407,7 +4053,6 @@ "version": "2021-05-10T23:24:55.822000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 341120146, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cd48afaf-82ca-4f1d-8687-e983051dc57c", "crc32c": "7aa97e81", @@ -4421,7 +4066,6 @@ "version": "2021-05-10T23:24:55.425000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4432,7 +4076,6 @@ "version": "2021-05-10T23:24:57.379000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4443,7 +4086,6 @@ "version": "2021-05-10T23:25:07.677000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 329585785, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_963fb1ae-c748-418e-9437-24325b32b53a", "crc32c": "5ad70504", @@ -4457,7 +4099,6 @@ "version": "2021-05-10T23:24:58.402000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4468,7 +4109,6 @@ "version": "2021-05-10T23:25:03.741000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4479,7 +4119,6 @@ "version": "2021-05-10T23:24:55.449000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4490,7 +4129,6 @@ "version": "2021-05-10T23:24:59.669000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4501,7 +4139,6 @@ "version": "2021-05-10T23:24:56.674000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1341395179, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_64786ef9-450b-44ef-a01f-946a1c949d9f", "crc32c": "e7c11786", @@ -4515,7 +4152,6 @@ "version": "2021-05-10T23:24:57.806000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3522468426, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cbb4c78e-1162-4b8e-b5c6-c05a1f05baaa", "crc32c": "8aac2099", @@ -4529,7 +4165,6 @@ "version": "2021-05-10T23:24:58.869000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4540,7 +4175,6 @@ "version": "2021-05-10T23:25:00.610000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4551,7 +4185,6 @@ "version": "2021-05-10T23:24:58.313000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3201033447, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_53b304f4-0076-46a2-aa33-ffe457cbf3f0", "crc32c": "cdc388e0", @@ -4565,7 +4198,6 @@ "version": "2021-05-10T23:24:59.472000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4576,7 +4208,6 @@ "version": "2021-05-10T23:24:58.613000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4587,7 +4218,6 @@ "version": "2021-05-10T23:24:56.500000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 162416392, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2bf3c6a9-4b39-4c4d-b1b6-50b7665d14cf", "crc32c": "e52d3287", @@ -4601,7 +4231,6 @@ "version": "2021-05-10T23:24:57.664000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -4612,7 +4241,6 @@ "version": "2021-05-10T23:24:54.943000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 998, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4623,7 +4251,6 @@ "version": "2021-05-10T23:24:55.785000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 336875963, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1b18cba7-9628-476c-9f1f-9aa986935e51", "crc32c": "aec14da0", @@ -4637,7 +4264,6 @@ "version": "2021-05-10T23:24:56.648000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4648,7 +4274,6 @@ "version": "2021-05-10T23:24:56.130000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 661653776, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0464ba07-c7aa-4b7c-9c4d-c78b94cc5472", "crc32c": "1a052d94", @@ -4662,7 +4287,6 @@ "version": "2021-05-10T23:24:55.474000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4673,7 +4297,6 @@ "version": "2021-05-10T23:24:58.830000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2464424179, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ef59e92e-bcf5-453e-b8d2-6ca4ac79bfac", "crc32c": "de8b360d", @@ -4687,7 +4310,6 @@ "version": "2021-05-10T23:24:58.339000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1341680086, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f7d55f12-a633-4a17-81be-e3ee78f47c3f", "crc32c": "e5ffa80c", @@ -4701,7 +4323,6 @@ "version": "2021-05-10T23:24:56.488000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1153617439, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bf9fd782-11d9-441d-8e74-ce9927139176", "crc32c": "593a9145", @@ -4715,7 +4336,6 @@ "version": "2021-05-10T23:24:59.631000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4726,7 +4346,6 @@ "version": "2021-05-10T23:25:07.230000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4737,7 +4356,6 @@ "version": "2021-05-10T23:24:59.251000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4748,7 +4366,6 @@ "version": "2021-05-10T23:25:00.128000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4759,7 +4376,6 @@ "version": "2021-05-10T23:24:55.749000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 331801154, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f2349aff-901b-42b3-b787-b6322638dc4d", "crc32c": "a5b0f842", @@ -4773,7 +4389,6 @@ "version": "2021-05-10T23:24:58.075000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1608596601, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9ae4b6b6-fc58-4778-8ba4-fea8b22a9251", "crc32c": "59b1332b", @@ -4787,7 +4402,6 @@ "version": "2021-05-10T23:24:56.190000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4798,7 +4412,6 @@ "version": "2021-05-10T23:24:55.993000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2041917883, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a36e21cf-3563-4190-91ff-663e537975cf", "crc32c": "3c00e594", @@ -4812,7 +4425,6 @@ "version": "2021-05-10T23:24:56.352000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4823,7 +4435,6 @@ "version": "2021-05-10T23:24:55.105000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 723, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4834,7 +4445,6 @@ "version": "2021-05-10T23:24:56.635000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4845,7 +4455,6 @@ "version": "2021-05-10T23:25:00.501000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3921145756, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_237180a5-6b42-4c77-803d-949c58814869", "crc32c": "86672568", @@ -4859,7 +4468,6 @@ "version": "2021-05-10T23:24:56.006000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4870,7 +4478,6 @@ "version": "2021-05-10T23:25:12.129000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4881,7 +4488,6 @@ "version": "2021-05-10T23:24:55.389000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4892,7 +4498,6 @@ "version": "2021-05-10T23:24:59.718000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4903,7 +4508,6 @@ "version": "2021-05-10T23:24:59.618000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4914,7 +4518,6 @@ "version": "2021-05-10T23:24:58.682000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4925,7 +4528,6 @@ "version": "2021-05-10T23:24:55.664000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4936,7 +4538,6 @@ "version": "2021-05-10T23:24:56.575000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 200002233, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e13822d0-fc57-4ad7-9ab4-447df4bcad8a", "crc32c": "8c4be820", @@ -4950,7 +4551,6 @@ "version": "2021-05-10T23:24:56.069000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4961,7 +4561,6 @@ "version": "2021-05-10T23:24:56.031000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1171574344, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_754945cb-ab30-4697-9407-26099910d158", "crc32c": "7ea0be34", @@ -4975,7 +4574,6 @@ "version": "2021-05-10T23:25:11.795000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 406333, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_af9cbb3b-2862-4023-b4e2-73191e84baa6", "crc32c": "64dddda9", @@ -4989,7 +4587,6 @@ "version": "2021-05-10T23:25:05.832000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1884391326, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_081a6614-5f12-41f7-8a55-d0ab689a967d", "crc32c": "eee3922e", @@ -5003,7 +4600,6 @@ "version": "2021-05-10T23:24:57.143000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1099429593, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d93fc22e-cebb-4b9f-a7e4-f0f4e57173ab", "crc32c": "56d8693b", @@ -5017,7 +4613,6 @@ "version": "2021-05-10T23:24:56.575000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5028,7 +4623,6 @@ "version": "2021-05-10T23:24:55.474000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2011285762, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ffc64466-8ace-451d-9159-e7e8a2e55fc8", "crc32c": "b368f2b9", @@ -5042,7 +4636,6 @@ "version": "2021-05-10T23:24:59.508000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5053,7 +4646,6 @@ "version": "2021-05-10T23:24:55.006000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1150, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5064,7 +4656,6 @@ "version": "2021-05-10T23:24:55.835000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1126545202, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d3be1247-d9f9-4c45-ba15-9f626dd97808", "crc32c": "b7b42c9b", @@ -5078,7 +4669,6 @@ "version": "2021-05-10T23:24:57.609000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 887614197, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_74dcfe9b-af27-4065-b82f-6781befe19d7", "crc32c": "420965bc", @@ -5092,7 +4682,6 @@ "version": "2021-05-10T23:24:55.738000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5103,7 +4692,6 @@ "version": "2021-05-10T23:24:58.631000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5114,7 +4702,6 @@ "version": "2021-05-10T23:24:58.261000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5125,7 +4712,6 @@ "version": "2021-05-10T23:24:55.413000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 269407163, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7226718a-900a-4064-b28e-72160ecdf032", "crc32c": "20e1527f", @@ -5139,7 +4725,6 @@ "version": "2021-05-10T23:24:58.209000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5150,7 +4735,6 @@ "version": "2021-05-10T23:24:59.781000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 999580911, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_842638db-5360-4b58-ada4-27c755206820", "crc32c": "e7cfb560", @@ -5164,7 +4748,6 @@ "version": "2021-05-10T23:24:55.155000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 729, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5175,7 +4758,6 @@ "version": "2021-05-10T23:24:57.585000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -5186,7 +4768,6 @@ "version": "2021-05-10T23:24:59.148000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1108507191, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_837427ed-aaec-4d30-b077-e54223def9ab", "crc32c": "07096853", @@ -5200,7 +4781,6 @@ "version": "2021-05-10T23:24:55.930000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5211,7 +4791,6 @@ "version": "2021-05-10T23:24:55.809000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2559132661, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c0413b38-28ed-47e5-9ef4-e7c64ea5bbfb", "crc32c": "95bc209d", @@ -5225,7 +4804,6 @@ "version": "2021-05-10T23:24:58.882000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 962376157, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6f44e72d-5784-4f04-bb77-6e16cd6bc484", "crc32c": "66e47419", @@ -5239,7 +4817,6 @@ "version": "2021-05-10T23:25:12.204000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5250,7 +4827,6 @@ "version": "2021-05-10T23:24:55.880000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1096533797, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_01c72207-5fd4-4c90-a22d-bb078b15b163", "crc32c": "a509b856", @@ -5264,7 +4840,6 @@ "version": "2021-05-10T23:24:56.403000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1063345569, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a5d4f522-2a47-4a8d-a210-8e80f58e92f0", "crc32c": "96580f27", @@ -5278,7 +4853,6 @@ "version": "2021-05-10T23:24:58.756000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1671362207, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1adefc6a-0d40-46bd-9a5b-7aeffdb402d4", "crc32c": "00963d26", @@ -5292,7 +4866,6 @@ "version": "2021-05-10T23:25:11.953000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 414, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5303,7 +4876,6 @@ "version": "2021-05-10T23:25:11.978000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 414, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5314,7 +4886,6 @@ "version": "2021-05-10T23:24:59.882000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5325,7 +4896,6 @@ "version": "2021-05-10T23:24:57.168000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 341613597, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0fe30f17-a8f8-42af-8830-d7e9899cc87b", "crc32c": "950aeb61", @@ -5339,7 +4909,6 @@ "version": "2021-05-10T23:24:58.087000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3708940110, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_115c4cc3-b8d1-407f-92b3-1957eb39f2a8", "crc32c": "d6023b08", @@ -5353,7 +4922,6 @@ "version": "2021-05-10T23:24:56.142000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5364,7 +4932,6 @@ "version": "2021-05-10T23:24:59.909000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5375,7 +4942,6 @@ "version": "2021-05-10T23:24:59.581000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5386,7 +4952,6 @@ "version": "2021-05-10T23:24:59.744000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5397,7 +4962,6 @@ "version": "2021-05-10T23:24:58.907000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 418069560, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3d1978bb-cd18-4b27-a895-9324c3057634", "crc32c": "17a154f7", @@ -5411,7 +4975,6 @@ "version": "2021-05-10T23:24:57.418000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -5422,7 +4985,6 @@ "version": "2021-05-10T23:24:59.693000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5433,7 +4995,6 @@ "version": "2021-05-10T23:24:57.110000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5444,7 +5005,6 @@ "version": "2021-05-10T23:25:12.612000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 353, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -5455,7 +5015,6 @@ "version": "2021-05-10T23:24:58.857000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 133147591, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9163e739-9013-4bc2-97c6-2c799eca9ac3", "crc32c": "5ea15d3b", @@ -5469,7 +5028,6 @@ "version": "2021-05-10T23:25:03.225000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 577478065, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9cc3c47f-6d07-4222-acde-1e61c6afc2f4", "crc32c": "342c646f", @@ -5483,7 +5041,6 @@ "version": "2021-05-10T23:24:55.498000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 877250636, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4cc68c05-cce8-43ff-b44f-55fb2fdfbed8", "crc32c": "a3da9d3f", @@ -5497,7 +5054,6 @@ "version": "2021-05-10T23:24:57.055000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5508,7 +5064,6 @@ "version": "2021-05-10T23:24:55.713000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5519,7 +5074,6 @@ "version": "2021-05-10T23:24:57.664000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2282232949, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_98dc2f5b-daa8-4da9-8d2e-7478afa446e9", "crc32c": "075e49a6", @@ -5533,7 +5087,6 @@ "version": "2021-05-10T23:24:57.930000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5544,7 +5097,6 @@ "version": "2021-05-10T23:24:58.353000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3098942559, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_df0ab946-bb74-4fd2-9ae9-9ed77c634ae0", "crc32c": "2a1abaae", @@ -5558,7 +5110,6 @@ "version": "2021-05-10T23:24:56.901000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2929134506, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_163e4ae3-0c4a-44ee-bf96-44361a56d2e5", "crc32c": "cc3dbd95", @@ -5572,7 +5123,6 @@ "version": "2021-05-10T23:24:57.861000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5583,7 +5133,6 @@ "version": "2021-05-10T23:24:57.845000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5594,7 +5143,6 @@ "version": "2021-05-10T23:24:56.043000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 203099934, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f6419256-a4cd-47c6-b4d7-0c6391c5a2eb", "crc32c": "cbc80fbe", @@ -5608,7 +5156,6 @@ "version": "2021-05-10T23:24:57.968000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 529209564, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4140a4a6-04a8-4393-953a-abae11651795", "crc32c": "ce6d9349", @@ -5622,7 +5169,6 @@ "version": "2021-05-10T23:25:03.039000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5633,7 +5179,6 @@ "version": "2021-05-10T23:24:59.793000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2286643109, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e0f89c4d-8879-4c7b-9fd4-633fdf7e52bc", "crc32c": "227343ce", @@ -5647,7 +5192,6 @@ "version": "2021-05-10T23:25:11.916000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 414, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -5658,7 +5202,6 @@ "version": "2021-05-10T23:24:56.857000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5669,7 +5212,6 @@ "version": "2021-05-10T23:24:57.492000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1919074855, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_003dfa39-63a4-4a59-b778-4786b4b988c8", "crc32c": "ba05a4bf", @@ -5683,7 +5225,6 @@ "version": "2021-05-10T23:24:56.461000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5694,7 +5235,6 @@ "version": "2021-05-10T23:24:58.475000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 391370484, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_12d2359c-eafa-4c00-9004-25cfac664515", "crc32c": "79adabfe", @@ -5708,7 +5248,6 @@ "version": "2021-05-10T23:24:58.032000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5719,7 +5258,6 @@ "version": "2021-05-10T23:25:03.943000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5730,7 +5268,6 @@ "version": "2021-05-10T23:24:57.492000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -5741,7 +5278,6 @@ "version": "2021-05-10T23:24:59.234000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2492157710, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4d6e5409-45a6-4f36-814c-332eaefcbb0b", "crc32c": "efb7c515", @@ -5755,7 +5291,6 @@ "version": "2021-05-10T23:24:59.933000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 952675713, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a4891700-93ff-4a5f-b274-49897c474cd8", "crc32c": "bbbd0165", @@ -5769,7 +5304,6 @@ "version": "2021-05-10T23:24:57.270000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2038563173, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1ca733b9-cccb-44d9-bfc3-b15cc8f28274", "crc32c": "40c4b4be", @@ -5783,7 +5317,6 @@ "version": "2021-05-10T23:24:59.769000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 330759269, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ab41b180-9934-408e-b13b-b5e6906810cb", "crc32c": "5fbf2d4f", @@ -5797,7 +5330,6 @@ "version": "2021-05-10T23:24:58.817000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5808,7 +5340,6 @@ "version": "2021-05-10T23:24:56.648000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 193759687, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7871bbf1-7b2a-4fa9-bcd9-7397a1d168d8", "crc32c": "aeddc638", @@ -5822,7 +5353,6 @@ "version": "2021-05-10T23:24:59.420000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5833,7 +5363,6 @@ "version": "2021-05-10T23:25:05.423000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 258851639, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5a580f11-638b-48b8-8aa2-41571015139f", "crc32c": "b1e1a95b", @@ -5847,7 +5376,6 @@ "version": "2021-05-10T23:25:11.836000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2197439516, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2c04c2dc-cbf1-4894-a5c3-83a676bacb98", "crc32c": "795a29b2", @@ -5861,7 +5389,6 @@ "version": "2021-05-10T23:24:58.882000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5872,7 +5399,6 @@ "version": "2021-05-10T23:25:07.551000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1799945521, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7e9da931-ee37-4d09-98bd-068d2e5b1deb", "crc32c": "a4dd0dc8", @@ -5886,7 +5412,6 @@ "version": "2021-05-10T23:24:57.956000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5897,7 +5422,6 @@ "version": "2021-05-10T23:25:00.662000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 559655439, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2faec8a5-1865-42e4-890d-a453bdce3e07", "crc32c": "ed8e2e33", @@ -5911,7 +5435,6 @@ "version": "2021-05-10T23:24:58.495000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1236460473, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_745ac756-605b-4757-a961-46c61a4284a8", "crc32c": "be77222f", @@ -5925,7 +5448,6 @@ "version": "2021-05-10T23:24:56.699000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5936,7 +5458,6 @@ "version": "2021-05-10T23:25:04.631000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5947,7 +5468,6 @@ "version": "2021-05-10T23:24:58.365000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5958,7 +5478,6 @@ "version": "2021-05-10T23:24:59.079000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2004187017, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4175cb8d-e5b8-442b-b3f7-2fc4f9b4c06a", "crc32c": "d24fa61e", @@ -5972,7 +5491,6 @@ "version": "2021-05-10T23:24:57.823000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 387074586, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_85016b3a-78fe-4c91-8326-265724cf467f", "crc32c": "e6a27f43", @@ -5986,7 +5504,6 @@ "version": "2021-05-10T23:25:04.631000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 348086238, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4bbd1d01-7daf-4fb5-8883-1eb848951fdd", "crc32c": "2f13b1af", @@ -6000,7 +5517,6 @@ "version": "2021-05-10T23:24:57.466000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -6011,7 +5527,6 @@ "version": "2021-05-10T23:24:58.596000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6022,7 +5537,6 @@ "version": "2021-05-10T23:24:58.112000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6033,7 +5547,6 @@ "version": "2021-05-10T23:24:58.100000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 521555084, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_87300698-aca7-47df-b62a-6bf060fdb8a6", "crc32c": "c44c1dc1", @@ -6047,7 +5560,6 @@ "version": "2021-05-10T23:24:55.797000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6058,7 +5570,6 @@ "version": "2021-05-10T23:24:55.498000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6069,7 +5580,6 @@ "version": "2021-05-10T23:24:59.203000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 322035267, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_43204be3-72fb-4f32-90a9-09e3e635c520", "crc32c": "e29f3151", @@ -6083,7 +5593,6 @@ "version": "2021-05-10T23:24:56.159000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 156482054, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_86d28b31-31a7-4b7d-9ace-93bb2fd6555c", "crc32c": "7e486121", @@ -6097,7 +5606,6 @@ "version": "2021-05-10T23:24:55.616000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1127372807, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_90cbc403-5151-4e59-a834-b67c9f90a0e5", "crc32c": "dd29d015", @@ -6111,7 +5619,6 @@ "version": "2021-05-10T23:24:58.511000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2899172549, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e9864072-0d13-4ade-8bd5-3c9076420035", "crc32c": "7ce36eea", @@ -6125,7 +5632,6 @@ "version": "2021-05-10T23:24:58.020000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 536370169, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5f903cbe-1b0c-4bd2-a223-ce3f22d1ae66", "crc32c": "255a6b53", @@ -6139,7 +5645,6 @@ "version": "2021-05-10T23:25:11.875000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 414, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6150,7 +5655,6 @@ "version": "2021-05-10T23:25:06.490000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 787927507, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b0e2aef2-1b88-4f2f-b965-2143b120f6a9", "crc32c": "9664e6a3", @@ -6164,7 +5668,6 @@ "version": "2021-05-10T23:24:59.267000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1063347469, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b6cc294c-737d-4660-b904-dfbc72a945a7", "crc32c": "2241f1db", @@ -6178,7 +5681,6 @@ "version": "2021-05-10T23:24:55.057000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1150, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6189,7 +5691,6 @@ "version": "2021-05-10T23:24:59.181000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2589717959, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6c175043-650a-405a-8cb0-549b292c7ed8", "crc32c": "3aca922a", @@ -6203,7 +5704,6 @@ "version": "2021-05-10T23:24:57.055000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 994354779, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_603f0cf1-ae0c-4ca3-b253-da1ec3f517fc", "crc32c": "d388bbd1", @@ -6217,7 +5717,6 @@ "version": "2021-05-10T23:24:57.597000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 279308848, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9dea1449-61c9-4820-87a1-e9b44881794e", "crc32c": "f25a192d", @@ -6231,7 +5730,6 @@ "version": "2021-05-10T23:24:55.592000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6242,7 +5740,6 @@ "version": "2021-05-10T23:25:10.475000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 322535644, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f8fc6e20-073c-4792-8f66-5a94c3e54e98", "crc32c": "467d9495", @@ -6256,7 +5753,6 @@ "version": "2021-05-10T23:24:59.334000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6267,7 +5763,6 @@ "version": "2021-05-10T23:24:58.285000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 407112963, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e4374fa0-5558-46d0-9252-862e82670716", "crc32c": "776e339e", @@ -6281,7 +5776,6 @@ "version": "2021-05-10T23:24:55.993000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6292,7 +5786,6 @@ "version": "2021-05-10T23:24:55.864000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6303,7 +5796,6 @@ "version": "2021-05-10T23:24:55.523000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6314,7 +5806,6 @@ "version": "2021-05-10T23:24:55.425000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 914274743, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_72de7ec3-173d-4ca4-b20d-6a3ecab0fc14", "crc32c": "231438d5", @@ -6328,7 +5819,6 @@ "version": "2021-05-10T23:24:59.203000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6339,7 +5829,6 @@ "version": "2021-05-10T23:24:56.403000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6350,7 +5839,6 @@ "version": "2021-05-10T23:24:54.995000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1152, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6361,7 +5849,6 @@ "version": "2021-05-10T23:24:57.556000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 676145893, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b36df4b4-8d76-4ada-ba84-94cac64d3c0c", "crc32c": "c4da8b85", @@ -6375,7 +5862,6 @@ "version": "2021-05-10T23:24:58.353000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6386,7 +5872,6 @@ "version": "2021-05-10T23:24:59.657000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6397,7 +5882,6 @@ "version": "2021-05-10T23:24:56.415000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 167480999, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f11d3dcb-90e3-40d8-880e-5d9164ffd6b8", "crc32c": "d951da26", @@ -6411,7 +5895,6 @@ "version": "2021-05-10T23:24:56.081000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6422,7 +5905,6 @@ "version": "2021-05-10T23:24:59.120000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6433,7 +5915,6 @@ "version": "2021-05-10T23:24:58.421000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6444,7 +5925,6 @@ "version": "2021-05-10T23:24:59.401000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1009714647, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_602407c8-ef90-415c-9b8d-c2895c9e2a1b", "crc32c": "3031662f", @@ -6458,7 +5938,6 @@ "version": "2021-05-10T23:25:00.662000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6469,7 +5948,6 @@ "version": "2021-05-10T23:25:02.564000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 603402580, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e9ea4a0f-c90b-4491-a76f-eeb16e5f1306", "crc32c": "c1ae6a2f", @@ -6483,7 +5961,6 @@ "version": "2021-05-10T23:24:59.957000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 284128673, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_01b8755b-5017-4654-9a03-8c11ad0594cb", "crc32c": "76c16a60", @@ -6497,7 +5974,6 @@ "version": "2021-05-10T23:25:03.039000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4472430419, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1e24a56e-a819-4861-ab16-591ecde968a8", "crc32c": "e5e80d66", @@ -6511,7 +5987,6 @@ "version": "2021-05-10T23:24:55.725000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6522,7 +5997,6 @@ "version": "2021-05-10T23:24:56.587000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6533,7 +6007,6 @@ "version": "2021-05-10T23:24:55.462000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6544,7 +6017,6 @@ "version": "2021-05-10T23:24:57.758000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 435587491, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0739e381-ae28-4c3c-88e5-d61a4d9560cd", "crc32c": "88845f2e", @@ -6558,7 +6030,6 @@ "version": "2021-05-10T23:24:55.389000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1001050341, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_789adf01-a200-4274-9a80-388393e82167", "crc32c": "7a3a8aaa", @@ -6572,7 +6043,6 @@ "version": "2021-05-10T23:25:05.423000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6583,7 +6053,6 @@ "version": "2021-05-10T23:25:00.034000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 495443165, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3798b6b7-4486-47d9-82e5-7c80be96c417", "crc32c": "8317cd17", @@ -6597,7 +6066,6 @@ "version": "2021-05-10T23:24:59.314000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 410644616, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_954018c5-a7db-41c5-af85-e1c4e3db00fe", "crc32c": "e52398e5", @@ -6611,7 +6079,6 @@ "version": "2021-05-10T23:24:58.273000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6622,7 +6089,6 @@ "version": "2021-05-10T23:24:56.925000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 134411645, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3cc02617-2060-4ab4-b825-98cf796f3373", "crc32c": "09dd9206", @@ -6636,7 +6102,6 @@ "version": "2021-05-10T23:24:58.920000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 954621457, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_076f64bc-3b74-4fc1-b507-b1767bed9b21", "crc32c": "fb0f3485", @@ -6650,7 +6115,6 @@ "version": "2021-05-10T23:24:57.738000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -6661,7 +6125,6 @@ "version": "2021-05-10T23:24:56.159000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6672,7 +6135,6 @@ "version": "2021-05-10T23:24:59.996000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 299713331, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_aac40bc9-7ca2-4383-8f77-d87b6a9bbb1e", "crc32c": "1df57307", @@ -6686,7 +6148,6 @@ "version": "2021-05-10T23:24:57.722000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -6697,7 +6158,6 @@ "version": "2021-05-10T23:24:55.047000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1104, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6708,7 +6168,6 @@ "version": "2021-05-10T23:25:02.423000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4619603152, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cca067e6-f04c-4b20-bf40-88c09e3e78f4", "crc32c": "9b870d7d", @@ -6722,7 +6181,6 @@ "version": "2021-05-10T23:25:12.367000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 412, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6733,7 +6191,6 @@ "version": "2021-05-10T23:24:57.270000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6744,7 +6201,6 @@ "version": "2021-05-10T23:25:00.217000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4171414446, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f89997f1-325d-4d7f-a521-41326f14149a", "crc32c": "aa634b7d", @@ -6758,7 +6214,6 @@ "version": "2021-05-10T23:24:58.649000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6769,7 +6224,6 @@ "version": "2021-05-10T23:24:59.314000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6780,7 +6234,6 @@ "version": "2021-05-10T23:24:57.686000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 5302799024, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1fd0097f-50c5-4088-b85d-e385bcd7f4bc", "crc32c": "a6a56f58", @@ -6794,7 +6247,6 @@ "version": "2021-05-10T23:24:59.970000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 943773502, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d8d4b81b-4956-49ce-8b5e-450c83d79c58", "crc32c": "ac7eef2d", @@ -6808,7 +6260,6 @@ "version": "2021-05-10T23:24:55.773000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2236392427, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b0473053-7c03-448b-b12e-6fdb49ea3602", "crc32c": "d3b91e9c", @@ -6822,7 +6273,6 @@ "version": "2021-05-10T23:24:56.611000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6833,7 +6283,6 @@ "version": "2021-05-10T23:24:57.784000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1525099686, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d33defc1-063a-4a8e-95c4-834de458fe4f", "crc32c": "ac0b93e9", @@ -6847,7 +6296,6 @@ "version": "2021-05-10T23:24:56.818000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6858,7 +6306,6 @@ "version": "2021-05-10T23:25:04.821000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1110259235, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cd126787-cb76-4165-b852-3e93ddfba350", "crc32c": "94b29f11", @@ -6872,7 +6319,6 @@ "version": "2021-05-10T23:24:57.531000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1689250418, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5d0c0287-e700-4626-b441-1a234febb7e8", "crc32c": "8787ea40", @@ -6886,7 +6332,6 @@ "version": "2021-05-10T23:24:57.341000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6897,7 +6342,6 @@ "version": "2021-04-16T05:59:54.802000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 11826, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -6908,7 +6352,6 @@ "version": "2021-05-10T23:24:57.637000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 708479039, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9520a01f-a0be-4ad5-b003-d9f0cd1d5d9d", "crc32c": "a7c90b00", @@ -6922,7 +6365,6 @@ "version": "2021-05-10T23:24:55.604000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6933,7 +6375,6 @@ "version": "2021-05-10T23:24:56.537000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 196611121, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5111d65d-b990-4a33-8a56-d143eb6282c4", "crc32c": "715ce41c", @@ -6947,7 +6388,6 @@ "version": "2021-05-10T23:24:56.623000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 599354731, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_892ef2ef-0f5d-45ac-b3ea-61818154ad11", "crc32c": "141f1942", @@ -6961,7 +6401,6 @@ "version": "2021-05-10T23:25:00.921000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6972,7 +6411,6 @@ "version": "2021-05-10T23:24:56.762000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 417042904, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_38fce3b6-2570-4a0e-ba8f-5eafc4ca6891", "crc32c": "3d641d40", @@ -6986,7 +6424,6 @@ "version": "2021-05-10T23:24:56.190000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 485345371, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b1c87b86-1cdb-472f-8920-72f036d102fa", "crc32c": "27e23750", @@ -7000,7 +6437,6 @@ "version": "2021-05-10T23:24:55.554000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7011,7 +6447,6 @@ "version": "2021-05-10T23:24:56.269000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 158793112, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ef934105-55c0-42cc-8c97-c1d04b9e5e4d", "crc32c": "dd8dcd49", @@ -7025,7 +6460,6 @@ "version": "2021-05-10T23:24:58.475000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7036,7 +6470,6 @@ "version": "2021-05-10T23:25:11.903000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 414, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7047,7 +6480,6 @@ "version": "2021-05-10T23:24:56.461000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 163364124, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_15b81cfa-7421-4fb3-bd92-c36103823f00", "crc32c": "1b2c85c8", @@ -7061,7 +6493,6 @@ "version": "2021-05-10T23:24:56.687000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 200058103, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c5969a04-9f96-467a-aed3-f36d3fde09f7", "crc32c": "74a9abf2", @@ -7075,7 +6506,6 @@ "version": "2021-05-10T23:24:55.542000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7086,7 +6516,6 @@ "version": "2021-05-10T23:24:57.168000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7097,7 +6526,6 @@ "version": "2021-05-10T23:25:00.048000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1598091201, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_aa0b6f41-97ba-45ef-9b91-a686eff34f32", "crc32c": "7ec8d050", @@ -7111,7 +6539,6 @@ "version": "2021-05-10T23:24:58.932000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 310990609, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_584bf6de-349c-40ac-93e7-b964d761524b", "crc32c": "1c9105b9", @@ -7125,7 +6552,6 @@ "version": "2021-05-10T23:25:11.855000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 414, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7136,7 +6562,6 @@ "version": "2021-05-10T23:24:57.543000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3934790678, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7a4ffa48-3c45-417e-ba71-7451853ade70", "crc32c": "60935b1b", @@ -7150,7 +6575,6 @@ "version": "2021-05-10T23:25:11.821000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 440041264, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3b56375e-7ce6-4524-9cf9-a704f4d33d06", "crc32c": "3df9657f", @@ -7164,7 +6588,6 @@ "version": "2021-05-10T23:24:58.064000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7175,7 +6598,6 @@ "version": "2021-05-10T23:24:57.518000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -7186,7 +6608,6 @@ "version": "2021-05-10T23:24:57.243000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 313085251, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_502d6f7c-ad4a-4437-a4fe-d76a99f1516f", "crc32c": "c4759450", @@ -7200,7 +6621,6 @@ "version": "2021-05-10T23:25:00.048000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7211,7 +6631,6 @@ "version": "2021-05-10T23:24:55.785000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7222,7 +6641,6 @@ "version": "2021-05-10T23:24:58.649000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 659638441, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d797c7a9-7742-4337-ab2a-59d42f034ce0", "crc32c": "d23c43d3", @@ -7236,7 +6654,6 @@ "version": "2021-05-10T23:24:57.218000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7247,7 +6664,6 @@ "version": "2021-05-10T23:24:56.997000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7258,7 +6674,6 @@ "version": "2021-05-10T23:24:56.019000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7269,7 +6684,6 @@ "version": "2021-05-10T23:24:58.817000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 708789490, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_45072b41-2b9a-4953-8af5-87282b7a4a67", "crc32c": "2bdc43f5", @@ -7283,7 +6697,6 @@ "version": "2021-05-10T23:24:56.537000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7294,7 +6707,6 @@ "version": "2021-05-10T23:24:58.365000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 396000479, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0cc38692-aa19-4946-b8f2-9c977f9e9d43", "crc32c": "e83d1e46", @@ -7308,7 +6720,6 @@ "version": "2021-05-10T23:24:59.970000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7319,7 +6730,6 @@ "version": "2021-05-10T23:24:56.901000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7330,7 +6740,6 @@ "version": "2021-05-10T23:24:56.699000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 674756123, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0786ff52-3797-4913-be78-b771535035a6", "crc32c": "29ef7bfb", @@ -7344,7 +6753,6 @@ "version": "2021-05-10T23:25:07.987000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7355,7 +6763,6 @@ "version": "2021-05-10T23:24:56.800000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 406149552, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0cf685ee-cf00-4d9c-85d5-9f07fc19b2f8", "crc32c": "0e647c25", @@ -7369,7 +6776,6 @@ "version": "2021-05-10T23:24:59.594000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 875841564, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_16c302ed-b6c4-462c-ac77-eb2793140dbc", "crc32c": "6f1b1374", @@ -7383,7 +6789,6 @@ "version": "2021-05-10T23:24:55.028000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1102, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7394,7 +6799,6 @@ "version": "2021-05-10T23:24:59.705000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7405,7 +6809,6 @@ "version": "2021-05-10T23:24:58.339000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7416,7 +6819,6 @@ "version": "2021-05-10T23:24:58.173000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7427,7 +6829,6 @@ "version": "2021-05-10T23:25:01.160000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4297268227, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_576ac807-1e28-4f15-99f7-8724aec3d974", "crc32c": "dcb62807", @@ -7441,7 +6842,6 @@ "version": "2021-05-10T23:25:00.034000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7452,7 +6852,6 @@ "version": "2021-05-10T23:24:55.641000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7463,7 +6862,6 @@ "version": "2021-05-10T23:24:55.580000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1159238444, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e30ab4bd-9f7b-4654-aebf-b266142e5160", "crc32c": "bb5198b1", @@ -7477,7 +6875,6 @@ "version": "2021-05-10T23:24:59.681000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1957895123, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e2b65e2a-738f-4f75-9b27-552152d23798", "crc32c": "209e1de5", @@ -7491,7 +6888,6 @@ "version": "2021-05-10T23:24:57.898000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1220018978, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8eaf5d78-88cc-48ec-973f-f313ec7fb3bf", "crc32c": "b333e1ce", @@ -7505,7 +6901,6 @@ "version": "2021-05-10T23:24:56.142000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1476740916, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_769c4b7f-a4c5-4ef6-8452-f5b108283e0b", "crc32c": "5b5af64c", @@ -7519,7 +6914,6 @@ "version": "2021-05-10T23:24:58.511000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7530,7 +6924,6 @@ "version": "2021-05-10T23:24:58.781000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 559957876, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bb709b6c-bac3-423d-b4dd-12aed72d902b", "crc32c": "37fab15b", @@ -7544,7 +6937,6 @@ "version": "2021-05-10T23:24:56.447000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1195938644, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b5d630e8-64f9-4c55-8914-3ce465d1ff26", "crc32c": "f2a36405", @@ -7558,7 +6950,6 @@ "version": "2021-05-10T23:24:55.913000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2523290244, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_558938aa-6ae0-4a72-affc-19c5298aa2fc", "crc32c": "2af1b36b", @@ -7572,7 +6963,6 @@ "version": "2021-05-10T23:24:59.064000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 882604068, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e109fc93-303a-47ef-9c0c-845e80c5b4a8", "crc32c": "ab0fbf22", @@ -7586,7 +6976,6 @@ "version": "2021-05-10T23:25:00.021000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1835801220, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5e4483db-6aa5-4bae-9058-cda670a79226", "crc32c": "561fa1a3", @@ -7600,7 +6989,6 @@ "version": "2021-05-10T23:24:59.833000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2271343294, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a93c9822-9e84-4cdb-a544-a11d182ebc44", "crc32c": "c7de08a5", @@ -7614,7 +7002,6 @@ "version": "2021-05-10T23:24:56.833000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7625,7 +7012,6 @@ "version": "2021-05-10T23:24:59.793000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7636,7 +7022,6 @@ "version": "2021-05-10T23:24:54.929000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 995, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -7647,7 +7032,6 @@ "version": "2021-05-10T23:24:56.750000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2052328561, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b43a8398-cd12-47e0-8214-d49827652b9e", "crc32c": "db17dde1", @@ -7661,7 +7045,6 @@ "version": "2021-05-10T23:24:59.488000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7672,7 +7055,6 @@ "version": "2021-05-10T23:24:55.967000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7683,7 +7065,6 @@ "version": "2021-05-10T23:24:56.513000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7694,7 +7075,6 @@ "version": "2021-05-10T23:24:59.440000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 305131639, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fb24a76b-9d3d-4f21-b891-8fcc60d0bd63", "crc32c": "9b715264", @@ -7708,7 +7088,6 @@ "version": "2021-05-10T23:24:55.979000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 896039188, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fd14986f-6eb6-4bd2-abb1-89fc8104e92e", "crc32c": "0556e458", @@ -7722,7 +7101,6 @@ "version": "2021-05-10T23:24:55.702000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7733,7 +7111,6 @@ "version": "2021-05-10T23:24:59.455000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7744,7 +7121,6 @@ "version": "2021-05-10T23:24:56.800000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7755,7 +7131,6 @@ "version": "2021-05-10T23:24:56.130000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7766,7 +7141,6 @@ "version": "2021-05-10T23:25:12.352000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 412, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7777,7 +7151,6 @@ "version": "2021-05-10T23:24:59.215000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7788,7 +7161,6 @@ "version": "2021-05-10T23:24:55.913000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7799,7 +7171,6 @@ "version": "2021-05-10T23:24:59.508000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 812929562, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4076e23f-1474-4d24-97d2-5d4fc3c48b1d", "crc32c": "2a22929b", @@ -7813,7 +7184,6 @@ "version": "2021-05-10T23:25:00.546000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7824,7 +7194,6 @@ "version": "2021-05-10T23:24:58.730000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3589798040, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3ef657fc-e2bf-4407-b246-b8b497160f6e", "crc32c": "36c84005", @@ -7838,7 +7207,6 @@ "version": "2021-05-10T23:24:57.883000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 377825781, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b446d17f-9a63-4fea-9547-1d84c9691416", "crc32c": "010a2cd6", @@ -7852,7 +7220,6 @@ "version": "2021-05-10T23:24:58.161000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7863,7 +7230,6 @@ "version": "2021-05-10T23:24:57.404000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -7874,7 +7240,6 @@ "version": "2021-05-10T23:24:57.506000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4448987378, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2d73866f-a1b4-4835-854f-3a3c20718c4c", "crc32c": "33631491", @@ -7888,7 +7253,6 @@ "version": "2021-05-10T23:25:11.836000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 530, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -7899,7 +7263,6 @@ "version": "2021-05-10T23:24:55.835000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7910,7 +7273,6 @@ "version": "2021-05-10T23:24:59.769000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7921,7 +7283,6 @@ "version": "2021-05-10T23:25:09.108000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1078499572, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9c8f0cec-9a9d-42d4-ae02-734675b84fbc", "crc32c": "6c964866", @@ -7935,7 +7296,6 @@ "version": "2021-05-10T23:24:55.511000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1993363450, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_05fa4e7c-022b-4c76-ae77-758cc00e094f", "crc32c": "240cae7b", @@ -7949,7 +7309,6 @@ "version": "2021-05-10T23:24:59.870000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2191136935, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d01f46df-17bf-4d95-b604-5e474a2dff61", "crc32c": "1f2b6762", @@ -7963,7 +7322,6 @@ "version": "2021-05-10T23:24:58.148000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7974,7 +7332,6 @@ "version": "2021-05-10T23:24:59.181000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7985,7 +7342,6 @@ "version": "2021-05-10T23:25:12.451000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 412, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7996,7 +7352,6 @@ "version": "2021-05-10T23:25:00.128000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3678038408, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1dc4e545-aca2-442a-b96b-f73e4f4f6383", "crc32c": "54825fda", @@ -8010,7 +7365,6 @@ "version": "2021-05-10T23:24:55.462000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 886661882, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_31cf0de6-640c-497b-a5b7-42eb9b5279d2", "crc32c": "7ddd9ede", @@ -8024,7 +7378,6 @@ "version": "2021-05-10T23:24:59.681000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8035,7 +7388,6 @@ "version": "2021-05-10T23:25:05.181000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2577748220, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_70acf6d8-811c-40e4-903a-f1483e34bd33", "crc32c": "b0754c0f", @@ -8049,7 +7401,6 @@ "version": "2021-05-10T23:24:58.075000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8060,7 +7411,6 @@ "version": "2021-05-10T23:25:12.097000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -8071,7 +7421,6 @@ "version": "2021-05-10T23:25:02.423000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8082,7 +7431,6 @@ "version": "2021-05-10T23:24:58.717000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8093,7 +7441,6 @@ "version": "2021-05-10T23:24:59.094000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 325860715, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8f6ae5fe-59ae-4d3e-a482-f7699df39f78", "crc32c": "17e7d7f3", @@ -8107,7 +7454,6 @@ "version": "2021-05-10T23:24:58.020000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8118,7 +7464,6 @@ "version": "2021-05-10T23:24:58.173000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 432823947, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5390f5bb-5c2e-4a77-aa77-083eb93446cf", "crc32c": "2530fbd6", @@ -8132,7 +7477,6 @@ "version": "2021-05-10T23:24:58.390000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3076882971, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_244fa7bf-768e-4684-a008-bbf831c32ad8", "crc32c": "b8b6d372", @@ -8146,7 +7490,6 @@ "version": "2021-05-10T23:24:59.544000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 294697480, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3123d766-24dc-4681-834f-e4e5b33c8833", "crc32c": "55b95a37", @@ -8160,7 +7503,6 @@ "version": "2021-05-10T23:24:57.243000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8171,7 +7513,6 @@ "version": "2021-05-10T23:24:56.364000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8182,7 +7523,6 @@ "version": "2021-05-10T23:24:56.786000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8193,7 +7533,6 @@ "version": "2021-05-10T23:24:58.249000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8204,7 +7543,6 @@ "version": "2021-05-10T23:24:55.628000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8215,7 +7553,6 @@ "version": "2021-05-10T23:24:59.267000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8226,7 +7563,6 @@ "version": "2021-05-10T23:24:59.669000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 867869066, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a8bfc049-5499-46c0-9d3b-21053078b8b4", "crc32c": "d1454670", @@ -8240,7 +7576,6 @@ "version": "2021-05-10T23:24:55.232000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1061, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -8251,7 +7586,6 @@ "version": "2021-05-10T23:24:58.577000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3251840382, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_683415b5-df01-41f3-8bb1-6dd6e9059266", "crc32c": "809d7721", @@ -8265,7 +7599,6 @@ "version": "2021-05-10T23:24:58.261000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1353206591, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_00eeac0b-dd50-45dd-bc9c-30b9fe11a33f", "crc32c": "44a94448", @@ -8279,7 +7612,6 @@ "version": "2021-05-10T23:24:57.110000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2635362289, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f08993ff-bfc3-445b-841d-2e5c46a42e4c", "crc32c": "0654b6b7", @@ -8293,7 +7625,6 @@ "version": "2021-05-10T23:24:58.975000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8304,7 +7635,6 @@ "version": "2021-05-10T23:24:59.027000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8315,7 +7645,6 @@ "version": "2021-05-10T23:24:56.599000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8326,7 +7655,6 @@ "version": "2021-05-10T23:24:57.366000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 254639357, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_05b25c0e-f4a9-499d-9088-d05894703c8b", "crc32c": "7b348bae", @@ -8340,7 +7668,6 @@ "version": "2021-05-10T23:24:59.382000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 334758426, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a77d0168-6408-44a5-9b0d-7d868bec25e5", "crc32c": "cb6c7603", @@ -8354,7 +7681,6 @@ "version": "2021-05-10T23:24:59.357000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8365,7 +7691,6 @@ "version": "2021-05-10T23:25:00.590000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1565924941, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d9003493-7970-4d44-8d30-8389e5e6f409", "crc32c": "31a61a80", @@ -8379,7 +7704,6 @@ "version": "2021-05-10T23:25:08.068000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2477485696, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4ab44ca2-4c5c-414a-af9f-3eedb407829a", "crc32c": "333335c4", @@ -8393,7 +7717,6 @@ "version": "2021-05-10T23:24:58.161000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3591358446, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3d3b254c-7bb5-4674-bce8-121e40b780b5", "crc32c": "bcde6522", @@ -8407,7 +7730,6 @@ "version": "2021-05-10T23:24:58.124000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3691078018, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_93297b95-c671-4812-bf00-cb07d3432d17", "crc32c": "393a0578", @@ -8421,7 +7743,6 @@ "version": "2021-05-10T23:24:56.762000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8432,7 +7753,6 @@ "version": "2021-05-10T23:24:55.761000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8443,7 +7763,6 @@ "version": "2021-05-10T23:24:58.555000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8454,7 +7773,6 @@ "version": "2021-05-10T23:24:55.437000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8465,7 +7783,6 @@ "version": "2021-05-10T23:24:57.453000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -8476,7 +7793,6 @@ "version": "2021-05-10T23:24:57.143000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8487,7 +7803,6 @@ "version": "2021-05-10T23:24:58.100000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8498,7 +7813,6 @@ "version": "2021-05-10T23:24:55.401000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8509,7 +7823,6 @@ "version": "2021-05-10T23:24:57.230000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1998814942, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_74eebe02-f946-449e-9594-1ada82c6ffde", "crc32c": "5bace1fb", @@ -8523,7 +7836,6 @@ "version": "2021-05-10T23:24:58.326000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8534,7 +7846,6 @@ "version": "2021-05-10T23:24:59.718000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1942917796, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6a34ab3e-abcf-4e2d-9e1b-381c1dce19b4", "crc32c": "232ff8db", @@ -8548,7 +7859,6 @@ "version": "2021-05-10T23:24:56.391000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8559,7 +7869,6 @@ "version": "2021-05-10T23:24:55.967000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 266196289, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1b51b971-b11a-43d7-b92e-cd73668bf70b", "crc32c": "08e3720d", @@ -8573,7 +7882,6 @@ "version": "2021-05-10T23:24:55.979000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8584,7 +7892,6 @@ "version": "2021-05-10T23:24:58.631000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3356143140, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8c03e84a-4eae-486a-955b-04a645b7d66a", "crc32c": "7b067774", @@ -8598,7 +7905,6 @@ "version": "2021-05-10T23:24:58.185000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1513501043, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_de512038-3597-4e80-84e4-92cbf139d8e2", "crc32c": "c5a60ffe", @@ -8612,7 +7918,6 @@ "version": "2021-05-10T23:24:57.391000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1842198909, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_700f4b61-c868-4146-9ce3-ba1301287530", "crc32c": "23a74081", @@ -8626,7 +7931,6 @@ "version": "2021-05-10T23:24:56.118000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 196946647, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d72cfad2-95f8-4fad-8acb-988c6ffc3db8", "crc32c": "69cfe4c9", @@ -8640,7 +7944,6 @@ "version": "2021-05-10T23:25:06.108000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 252193902, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d462411c-490c-4024-a7a9-cbfef4bf7f03", "crc32c": "b86981c8", @@ -8654,7 +7957,6 @@ "version": "2021-05-10T23:25:08.854000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8665,7 +7967,6 @@ "version": "2021-05-10T23:25:00.232000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 544108901, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a9211b38-1871-43e5-9923-d14b3b949137", "crc32c": "b1d6076e", @@ -8679,7 +7980,6 @@ "version": "2021-05-10T23:24:54.900000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 989, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8690,7 +7990,6 @@ "version": "2021-05-10T23:24:54.983000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 992, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8701,7 +8000,6 @@ "version": "2021-05-10T23:24:57.986000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8712,7 +8010,6 @@ "version": "2021-05-10T23:24:55.566000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8723,7 +8020,6 @@ "version": "2021-05-10T23:24:57.354000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1956843590, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0cc7e705-6e43-4e5e-a2ed-34247266cec6", "crc32c": "ae211b61", @@ -8737,7 +8033,6 @@ "version": "2021-05-10T23:24:56.118000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8748,7 +8043,6 @@ "version": "2021-05-10T23:25:11.995000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 414, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8759,7 +8053,6 @@ "version": "2021-05-10T23:25:02.770000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8770,7 +8063,6 @@ "version": "2021-05-10T23:24:57.156000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2544129196, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bb6c2f4f-a662-48d0-b8e4-a9bc047f3b75", "crc32c": "fb4e7d3f", @@ -8784,7 +8076,6 @@ "version": "2021-05-10T23:24:56.391000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 476482354, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_03d3d661-570b-4e1f-93fe-4587e1e9af95", "crc32c": "bf5a8535", @@ -8798,7 +8089,6 @@ "version": "2021-05-10T23:24:58.781000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8809,7 +8099,6 @@ "version": "2021-05-10T23:25:12.009000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8820,7 +8109,6 @@ "version": "2021-05-10T23:24:57.956000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2783529408, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e00a71cd-4d09-48c7-af22-bdda5ae3ac6e", "crc32c": "514c3e14", @@ -8834,7 +8122,6 @@ "version": "2021-05-10T23:24:57.986000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1622736317, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_576f2ce7-c20e-4dfa-825c-0b9986940a2a", "crc32c": "0f209f3d", @@ -8848,7 +8135,6 @@ "version": "2021-05-10T23:24:56.321000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8859,7 +8145,6 @@ "version": "2021-05-10T23:24:59.894000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8870,7 +8155,6 @@ "version": "2021-05-10T23:24:54.919000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 995, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8881,7 +8165,6 @@ "version": "2021-05-10T23:24:56.774000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1320129462, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_216e23bc-2b48-4092-b18f-dc2e516c20d3", "crc32c": "df0eeba7", @@ -8895,7 +8178,6 @@ "version": "2021-05-10T23:24:59.984000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2145452838, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cdc5af61-9517-43c9-a7b7-2a7dcaaaf5b1", "crc32c": "78bfc1e0", @@ -8909,7 +8191,6 @@ "version": "2021-05-10T23:25:12.223000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8920,7 +8201,6 @@ "version": "2021-05-10T23:24:58.390000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8931,7 +8211,6 @@ "version": "2021-05-10T23:24:58.577000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8942,7 +8221,6 @@ "version": "2021-05-10T23:24:57.758000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -8953,7 +8231,6 @@ "version": "2021-05-10T23:25:07.230000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 779654949, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3f2bbf38-44ea-4aaf-a89b-c1f083559175", "crc32c": "0648c7c7", @@ -8967,7 +8244,6 @@ "version": "2021-05-10T23:24:59.909000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2235857966, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d19b2aa3-3427-47c9-9a25-9a0a4fafd959", "crc32c": "fa81d67c", @@ -8981,7 +8257,6 @@ "version": "2021-05-10T23:24:57.218000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 868176498, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_20cb0533-c4e8-4152-a0de-3aa742fe0ca9", "crc32c": "5fade06b", @@ -8995,7 +8270,6 @@ "version": "2021-05-10T23:24:59.050000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9006,7 +8280,6 @@ "version": "2021-05-10T23:24:58.300000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9017,7 +8290,6 @@ "version": "2021-05-10T23:24:59.730000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9028,7 +8300,6 @@ "version": "2021-05-10T23:25:01.949000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9039,7 +8310,6 @@ "version": "2021-05-10T23:24:59.472000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1868718074, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_86058eb2-8e6c-4a3c-bc28-800d84a1d909", "crc32c": "f2a0a4d6", @@ -9053,7 +8323,6 @@ "version": "2021-05-10T23:24:59.819000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 990892488, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_53fa0801-179c-40c2-a9ee-c71d67034a2c", "crc32c": "4ab7b8b7", @@ -9067,7 +8336,6 @@ "version": "2021-05-10T23:24:57.193000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2529571093, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_11cf1843-635e-4a37-b736-a4a19f0c6a22", "crc32c": "86b728b5", @@ -9081,7 +8349,6 @@ "version": "2021-05-10T23:24:56.235000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1085745820, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f35c884e-80fd-4635-af66-eedd94ed66da", "crc32c": "3ae1b9f6", @@ -9095,7 +8362,6 @@ "version": "2021-05-10T23:24:55.124000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 723, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -9106,7 +8372,6 @@ "version": "2021-05-10T23:24:59.133000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 330136848, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_69f68a5e-bf9a-4ebb-8992-fa72dac2e9b8", "crc32c": "d9ad76a2", @@ -9120,7 +8385,6 @@ "version": "2021-05-10T23:24:56.786000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 3047773651, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4a5ab6fb-9ce2-47ed-af66-b3aa5dff5f31", "crc32c": "5f82f088", @@ -9134,7 +8398,6 @@ "version": "2021-05-10T23:24:56.737000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 901135488, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9b0f76e7-9dcf-4c73-a319-6a58728335aa", "crc32c": "e8d0c702", @@ -9148,7 +8411,6 @@ "version": "2021-05-10T23:24:55.955000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9159,7 +8421,6 @@ "version": "2021-05-10T23:24:58.249000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 402700834, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ecd4f4b2-82bf-4104-b0e1-c8d3786aea72", "crc32c": "b9b4721d", @@ -9173,7 +8434,6 @@ "version": "2021-05-10T23:24:56.623000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9184,7 +8444,6 @@ "version": "2021-05-10T23:24:55.689000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1018564841, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ad3acfa0-4a1d-4c02-b2c1-5ee429645224", "crc32c": "ef664b9a", @@ -9198,7 +8457,6 @@ "version": "2021-05-10T23:24:58.402000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 382550004, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8dcf5fe6-e725-4e16-90a0-63e1b68986b5", "crc32c": "98e200c8", @@ -9212,7 +8470,6 @@ "version": "2021-05-10T23:24:56.712000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9223,7 +8480,6 @@ "version": "2021-05-10T23:24:55.076000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1150, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9234,7 +8490,6 @@ "version": "2021-05-10T23:24:57.019000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 135974354, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_81f3456f-8d08-469c-a544-84ce9794b202", "crc32c": "137ff8ff", @@ -9248,7 +8503,6 @@ "version": "2021-05-10T23:24:55.616000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9259,7 +8513,6 @@ "version": "2021-05-10T23:24:56.661000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9270,7 +8523,6 @@ "version": "2021-05-10T23:24:55.713000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 334553235, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_249a6d00-499d-466a-b6c0-abd5736a19fe", "crc32c": "632e8e42", @@ -9284,7 +8536,6 @@ "version": "2021-05-10T23:24:59.557000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9295,7 +8546,6 @@ "version": "2021-05-10T23:24:56.364000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1071899618, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3767311e-94d1-4eb8-801a-6ea5576484eb", "crc32c": "14cb3c16", @@ -9309,7 +8559,6 @@ "version": "2021-05-10T23:25:12.057000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9320,7 +8569,6 @@ "version": "2021-05-10T23:24:57.315000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9331,7 +8579,6 @@ "version": "2021-05-10T23:24:59.382000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9342,7 +8589,6 @@ "version": "2021-05-10T23:24:59.807000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9353,7 +8599,6 @@ "version": "2021-05-10T23:24:59.705000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 859534837, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1c215bfc-2c0e-4483-b902-3b5ebff4bff4", "crc32c": "c12d5915", @@ -9367,7 +8612,6 @@ "version": "2021-05-10T23:24:59.644000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2021022543, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cbdab167-606f-447e-ac0e-400369e936d2", "crc32c": "3e5dc167", @@ -9381,7 +8625,6 @@ "version": "2021-05-10T23:25:00.183000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9392,7 +8635,6 @@ "version": "2021-05-10T23:24:59.921000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9403,7 +8645,6 @@ "version": "2021-05-10T23:25:12.400000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 412, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9414,7 +8655,6 @@ "version": "2021-05-10T23:24:57.441000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -9425,7 +8665,6 @@ "version": "2021-05-10T23:24:57.585000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4556512834, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_db95f75b-81a3-4d87-896d-88e8482e09be", "crc32c": "3ad177d6", @@ -9439,7 +8678,6 @@ "version": "2021-05-10T23:24:59.287000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2473708229, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_37e366a5-a50e-4e94-af55-bf1713b5f237", "crc32c": "97845c32", @@ -9453,7 +8691,6 @@ "version": "2021-05-10T23:24:56.925000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9464,7 +8701,6 @@ "version": "2021-05-10T23:25:05.626000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9475,7 +8711,6 @@ "version": "2021-05-10T23:24:58.136000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 440536802, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_eaf5b1e5-8e5b-43f4-b0f7-2fc426a329dc", "crc32c": "60a8d420", @@ -9489,7 +8724,6 @@ "version": "2021-05-10T23:25:06.889000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1815469143, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e1a7bd00-7d9b-41d1-b416-f775ec12c509", "crc32c": "e3699533", @@ -9503,7 +8737,6 @@ "version": "2021-05-10T23:24:58.148000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1554668024, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9fe97a6c-6970-4ea2-9a19-d99f0c4baac4", "crc32c": "06c6aef8", @@ -9517,7 +8750,6 @@ "version": "2021-05-10T23:25:07.551000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9528,7 +8760,6 @@ "version": "2021-05-10T23:24:56.094000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9539,7 +8770,6 @@ "version": "2021-05-10T23:24:55.085000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 723, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9550,7 +8780,6 @@ "version": "2021-05-10T23:24:58.830000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9561,7 +8790,6 @@ "version": "2021-05-10T23:24:56.031000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9572,7 +8800,6 @@ "version": "2021-05-10T23:24:58.222000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1499514037, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2f01e160-d44a-419d-8662-d94beae47b48", "crc32c": "e1b2a1e1", @@ -9586,7 +8813,6 @@ "version": "2021-05-10T23:24:55.955000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2507327684, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_996e7e2d-90dd-4b1c-bbcf-1ba0a5b39518", "crc32c": "66b9569d", @@ -9600,7 +8826,6 @@ "version": "2021-05-10T23:24:56.725000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9611,7 +8836,6 @@ "version": "2021-05-10T23:24:55.115000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 723, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9622,7 +8846,6 @@ "version": "2021-05-10T23:24:56.967000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9633,7 +8856,6 @@ "version": "2021-05-10T23:24:56.352000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 481441498, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8745fa2b-5841-419f-8db5-4a81c6195871", "crc32c": "5ea56fe3", @@ -9647,7 +8869,6 @@ "version": "2021-05-10T23:24:59.094000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9658,7 +8879,6 @@ "version": "2021-05-10T23:24:55.413000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9669,7 +8889,6 @@ "version": "2021-05-10T23:24:55.848000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9680,7 +8899,6 @@ "version": "2021-05-10T23:25:03.741000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 1826231331, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e71dd85f-91b9-434a-b7da-e3bf3bd45b1e", "crc32c": "6d17e56c", @@ -9694,7 +8912,6 @@ "version": "2021-05-10T23:24:56.550000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9705,7 +8922,6 @@ "version": "2021-05-10T23:24:58.237000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9716,7 +8932,6 @@ "version": "2021-05-10T23:25:12.382000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 412, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9727,7 +8942,6 @@ "version": "2021-05-10T23:25:06.490000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9738,7 +8952,6 @@ "version": "2021-05-10T23:24:56.235000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9749,7 +8962,6 @@ "version": "2021-05-10T23:24:55.554000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 2656158282, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c575780d-6457-4f09-b208-68eb382f72b1", "crc32c": "7650b91b", @@ -9763,7 +8975,6 @@ "version": "2021-05-10T23:24:56.379000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -9774,7 +8985,6 @@ "version": "2021-05-10T23:24:59.401000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -39331,5 +38541,730 @@ ] } ] - } + }, + + "stitched": [ + "00823629-0112-408a-bcf2-41833b245e93", + "00c95530-9f10-4401-8bfa-69162c212d50", + "00d1ba09-4cf7-4325-8557-96febd0cdb76", + "012af05a-4771-45e5-bb92-9b63fcbde822", + "01d2d764-457f-44c5-8b18-a6fadf73c1f7", + "01df1fa6-30b3-4d6b-8b5e-0f54c490064a", + "0256729b-47ee-4ed3-adc7-2c0813bb99b9", + "02cfb8bb-4eb6-4343-9381-007968f1feee", + "035a00e0-02ca-46e8-bb76-9b2449ee922f", + "03815b54-b935-4f04-96ac-56f7c87d601d", + "03af14b5-ba39-4bfe-a8ac-0d349550078b", + "03e8e9eb-f490-4a97-ac2c-0d6eb94c47e4", + "04066a52-7468-4783-b49c-46e28b076739", + "04240909-9185-48d3-a4e9-9eb71b3c6648", + "0506c2a0-ef2b-4850-8567-20d08046bdaa", + "05736d0e-ab04-4183-9c38-1bfdf028978f", + "05b53817-c778-4f1a-ab2a-e51480fa63d4", + "061936ce-8fbb-4576-8c0c-ed871767917f", + "062700c0-e8ed-46e2-b7cd-7cc6d8c3fc85", + "064b7aa5-c62b-44b8-bf51-08a63d47441c", + "067d2b7b-127b-421f-91db-0acc05ad62ad", + "0697146c-0105-4d6f-baff-d9147593eadb", + "073edb43-47d2-45c7-bff2-76c503ebb951", + "07adbae3-fbf8-4a59-8272-d0dbdd51d9ba", + "07fc08c2-8b57-45f6-afe8-eeed266c0809", + "091a1403-2320-4e38-8749-3088deb6da8b", + "092b2a1b-0730-4860-b466-e92e66afd8d1", + "096cce50-ea0a-4d40-9f12-c625735ef398", + "09a53782-90ea-4911-a793-706e74127adb", + "09b831a2-5b60-4753-864e-8af803024437", + "09be6713-f8fa-48a6-873e-d9524c526c8f", + "09c0456a-ec0b-47e3-870d-4b47221a45a6", + "09ffc9cf-6e64-4d47-8188-a8588ec39861", + "0c577531-9218-444b-8094-85d8c6f5c73e", + "0dbf8a13-52a5-48ad-b48e-9fb0ef358dfc", + "0f071463-fdce-400f-82d9-dc78cb248003", + "0f9a7b95-19f7-4479-9807-34b644296244", + "0fa69e92-febb-4bab-857c-4b67a2b17ff6", + "1020603f-5b24-41ca-a106-556574cee788", + "102b8410-1c0e-46f5-90fe-609ab117221c", + "10b3b42b-3612-48fb-849b-bfc036c248a6", + "110bb0f5-9d1a-4573-b711-6bee156d0eb8", + "116a5666-1022-46b6-8969-eb7d20d39ef5", + "11cc1e64-8d96-40bc-bbd2-977b4b02c4b6", + "120a2ea9-2b86-4039-99b3-2bacf4b38751", + "12826f14-2ef8-4069-a797-42d2f4c0937b", + "130831cc-87b6-47fd-93a8-ae1890d365f2", + "14795e28-bcee-4da3-83cf-bb2592b6c0d0", + "154dffeb-efd7-4081-a73c-bf1b73ca9a90", + "16907e80-3a36-4c03-b13d-7de8b5490f8f", + "16efb9eb-a634-46cc-ba8d-5ac3caa0cc98", + "174d0c2a-8487-4651-b939-97b1cf9f0816", + "17667128-f652-4e98-9a47-dd16b5d2d3f8", + "1767fde5-01d5-49d1-8e54-a81999b6c812", + "17883ec7-0ff4-4c57-b2d0-2ac130bd3ae8", + "17caacbc-c7dc-4924-b4aa-4941fb4baf61", + "18d81f7f-94c8-4877-939a-b74ba802835a", + "19eb5d2e-2224-4bb4-9f94-526a4c06f7a2", + "1a589473-0047-4bca-afce-57c8448f0dc6", + "1adbb95f-f5c3-41ce-8e16-7657d189de79", + "1aeb9062-38e0-4678-bf5b-849be34a84f0", + "1b0bd409-58f7-4674-a5ac-1614c28f6350", + "1b3c4f36-c0b2-4beb-ab5f-842350a241a3", + "1badbbc9-6b43-41f6-acad-36f09cff3d21", + "1bbafb1c-50eb-40b4-ab71-dd5d6f1d3288", + "1c05f18f-de60-4274-9146-0760cebe8824", + "1c39afd5-e212-4bd9-a8a8-1649bfadc12f", + "1c95a589-205c-4d7c-9c56-c3de4f7dbb66", + "1c9e23d2-922a-41b7-ab5e-2a16d1273a7a", + "1cf005ac-a546-4151-bf79-4a898e918798", + "1cf89101-b861-4bb8-98e6-ef46cf064853", + "1d66f422-91f4-46d1-8768-3fcca538fc46", + "1d77e73b-9bd3-499f-a0d0-86d9f7306a7e", + "1ec0519b-81e7-4bc2-9a1b-d14c6e745bb4", + "1ec9b28d-e07e-4588-b3d5-408f41addb2a", + "1f134dea-8f9b-4e90-a1af-80508f43f73c", + "1f5d640c-1ea0-4f8e-a9ce-036a8eb6e0a1", + "1fa9f51f-6108-47dd-a130-2c9cdf46701a", + "1ffc9c1e-5894-4d8e-9bb7-be6a41aaabec", + "2129a373-0919-4c91-bf59-adf4de6566f5", + "21a4919f-647c-42b3-a6af-a4309110ed2a", + "21bd79df-cc64-4381-a5c7-0e81e001ea1a", + "22343575-1465-455f-8360-4e716aab17fb", + "22833c60-dc70-4299-86ac-00747b91b3cb", + "22b7ebdc-a4cc-46fd-a2c2-376e9d00bf22", + "22ccd979-a5e2-476d-9e80-394418c0f3f4", + "23156c36-e709-422e-bace-1b40795c8b30", + "23203fb2-d46d-4d14-95e5-4ec38191e420", + "238cab27-9274-495b-962f-2b610f237758", + "24023592-6f24-47d3-98ea-3c9e03cf3fc4", + "247a418e-75ff-47c5-9272-93035037d5a4", + "24bbde6e-cdf7-4f1c-a447-6501ce377aa4", + "24f7d4c3-f9ec-476e-b038-e0d83c6e11c8", + "268eee1e-83cc-4064-bbf5-9799d7635be5", + "27349ad8-0595-4deb-9cb9-4df05f4f31db", + "274a70c7-ac73-4e9e-b80b-602e01803502", + "27d2989d-79e9-4caf-839a-34bebff5a601", + "27e04f3e-1375-4cd2-b5f0-bea8bfd595c4", + "28023147-3cad-4c1d-b494-b693c4f0a6bd", + "2862a721-a50b-4e47-86c5-35547bc44e53", + "28899ffa-f480-4ee6-8ccf-30e90f8a7482", + "28bb1ea6-ee3f-4ba4-a98e-1c841fa183d3", + "28c505c1-e1c4-4e73-b935-9616224da552", + "290232bb-afb1-45b2-8e04-be180948541a", + "296db6ee-3e65-48ee-b232-626653165222", + "29ee234c-5d39-4eb9-8f73-22121936b3db", + "2a77f1db-b5d4-4657-a522-9786aaa7df80", + "2a7c1cb6-5d82-4b65-854d-6451c18c62fc", + "2aa19940-68c0-4ea1-90d8-70760b8dc237", + "2aba7a6a-6d70-4310-9e64-071c6adbe16b", + "2b4e9f9e-5929-4c09-82fc-fd0986686e12", + "2b889dd9-0bd3-412a-967e-74fa9600bb4d", + "2bafabec-5248-4da2-bc8f-5b04d6ddb522", + "2c2de25a-7780-49d5-bf08-a369fc05abb6", + "2c4d6e65-8271-4542-97ee-7ba8a6b628d9", + "2c83b1f2-4b66-40cf-bdca-90fe69aa0c3a", + "2c8844e4-b2e4-44ac-8e0f-ac903f8e9320", + "2d0246fd-696f-4a54-abe6-d759cc6d27b3", + "2d312c74-647b-4c39-a818-1f916120ec18", + "2d487bca-d046-425f-ada2-038bdf5d030c", + "2e118ffd-49ca-43d7-b590-e91e0456d9fb", + "2f033594-a8bd-49c4-b1b7-69ce88fe26d4", + "2f74ffc0-b776-4b4a-90c6-327edb41c7ac", + "2f87e572-a42f-43cf-b4ba-c5dc6add0d4c", + "2fcfac01-3a3e-4fc4-a33d-5a8ad713a280", + "2ff6533e-8fe3-44c3-b378-99d4acdc0ab8", + "30b68b8b-e5e4-4b90-80ea-4501adefc4d0", + "30f53c61-a8e3-42cf-a6d2-1b172659c189", + "319d5a99-4bde-4b20-956a-03a0175478ee", + "32d392aa-7696-4d2d-b1b6-f69fd591295c", + "338c6fa7-3230-4aed-8e9e-5b429feaa288", + "344c1e18-810e-4800-bbed-0246cbbafa60", + "347f630f-a9a0-4430-958f-6c929335031a", + "34c723b9-9cf3-439f-a6f4-90fedc18706d", + "3509a2f3-2e6c-4e56-9150-32be1a82d8a1", + "35837492-79da-4f1c-a841-224cbec4c745", + "35a428b7-ad5a-45d7-87e9-33b23348b906", + "35bd5d6e-4de5-4f02-8f5a-33cc3b37b153", + "35e1a941-427f-430c-80a0-9a9efcdcac37", + "365b5d7b-fa81-4d61-a67e-f3293abf2ade", + "38601526-8448-4253-807b-70878c374901", + "38bbcc18-c2de-42f2-ba35-0f1f58d56963", + "38e1a4f4-f9ec-44cf-b6bb-1a9566456d38", + "39c5b18b-7c2f-439f-afee-b895ecbdba36", + "3b0fcf43-fc81-4b0d-9d15-9b9d9c28a8a2", + "3b145fb0-fb39-481f-afbe-af22cf58729c", + "3b4e2a40-facf-48d4-9e35-81abafb8aeb6", + "3b7b0bcf-b316-4b0e-9d46-f8d44a399774", + "3bb2457a-505f-4f04-b5f9-71e351be791f", + "3c007e61-0e8a-4337-946c-1082441084c7", + "3c4d5451-b8fb-49e3-bb38-3516f530db67", + "3c9533cf-c7b5-4bbf-9461-87da5aa1b556", + "3cad3e7e-9e9b-4e4e-a535-509853f9306b", + "3cf0f46b-1618-49e6-8cdc-d97a9d2403da", + "3d399f0a-0e73-441a-9bc1-8f63536cf316", + "3d8bc409-2043-486a-9a0b-12c71a741d83", + "3dce5e53-a137-4086-96d3-26dd3d000cf6", + "3e4ec223-4b6e-441e-99b0-a6eb8ff81322", + "3f13a6ae-a220-426e-9b17-176ce9029fa9", + "3f2ae9d6-763e-4408-bc80-6067ccc756e0", + "3f7e58de-d959-42e5-b3be-7060c1ab94b4", + "4026cbb7-f472-4658-8a68-eb40eb78c3c3", + "41905e9a-347d-4760-8e34-e0137aa93548", + "4198865c-d4ef-4a01-94c0-8a8397914dbc", + "4201e3fb-bbd9-4375-8a30-c47aba2e7794", + "42bbb160-b881-4036-a712-1ab9b5d5ce87", + "4335aa82-37be-4de2-94f1-8810fc811e98", + "4368817b-fc6f-433d-becd-61be481dee9c", + "43f476f9-cbfc-431a-a774-5885904b434c", + "440b2ea5-b5e5-403a-ab14-a026497a7490", + "449ec63a-dca8-4a61-98b5-e6789d4946a1", + "44a6a31a-a6a9-4c5a-a95e-41f97e4d3ab7", + "452b3d9d-cbfb-4e6f-af3c-7a678e03c06b", + "459797ab-8183-4d27-991f-da0c14dbc176", + "45d0b683-d7dc-4e1a-a235-dad58ef03d77", + "468cc474-cf45-48c6-beb8-07057fdc8782", + "476ac577-429f-4731-9591-1570067d354c", + "478ce71f-dda3-479e-ae3e-dc155020d4a8", + "47950b5e-3d6f-4b75-9518-feb8b9e9a78b", + "47c12e95-67b2-42e1-866b-eb7c5f16a3c6", + "47c90541-7080-4247-b2ad-0a1622530c26", + "47eb72f6-2554-4fa5-ac41-8a0a015c9d3f", + "48877bbf-def8-4da0-a569-8e6772d7699a", + "496819e2-4a76-4e4d-9182-300b7cd35e11", + "4ab6c35a-6161-4e17-a0d6-0d224e0e4eda", + "4abcf42c-5291-47f3-b7a8-bb1071f56c54", + "4ac503f3-d1c8-4e46-859d-6c71bdcd6316", + "4ac849a2-a3df-4b11-bda8-c21eda4290d1", + "4ca067fb-8ba1-4959-9c1a-878d5705dd67", + "4cc88ec7-86ab-4c1d-afa4-c80fed914133", + "4d0f1255-5e1b-4852-8030-a7a8f7580f1a", + "4d3d8969-8d3b-4b64-926b-c24de95a8fca", + "4d5d95a5-78af-4076-af8d-a4c6ac315f14", + "4df715c5-a783-41e6-a99e-eedf93a37fb3", + "4e066f08-f8b7-4550-adc2-287392fa7731", + "4e5a65c1-62ab-451b-9529-c2ca3e9ab6ed", + "4e80de0b-5325-4377-bf98-54a0a4447360", + "4e8c4847-822d-4f26-bdeb-a3b2aa545e6c", + "4ee04947-730b-4eda-86cd-a86cb8f476eb", + "5042cbe0-a647-42ea-ae33-ef4d56a117c1", + "5075a5ac-3fc2-456c-ba32-fd36b73bbcd8", + "50fd1926-5615-4e29-be75-e8528d1da8df", + "510a7a83-60a3-4d0f-a234-195d3d63687a", + "511eaba4-a8f4-4230-b3ad-407332e22b48", + "51aef727-d8de-497f-abbe-e650b1baeeab", + "5233c464-f7ed-4c38-846d-89857554778b", + "5275a9fa-7a21-4ef2-9819-5358b2821300", + "52c71657-57d8-4a49-ba21-2591010b5da7", + "52fbaa44-2179-49b7-9ee9-582615102404", + "53a23d1f-67fe-4599-abf7-6d76b0999f59", + "53c40015-48a9-4a3f-a513-d617d28a2352", + "54140f9b-2929-44b6-9fb0-de4c2b22090b", + "541fc29f-a7a3-456e-b28e-80f9036a4e33", + "554c1554-ed18-4926-b8d7-5b6af2edab5b", + "55d5d301-1c65-4ba7-a769-9496b1e85352", + "5621674e-0290-487d-8c0c-49b617d1628c", + "565dbd59-2571-4af5-b160-c6d5cd3c684f", + "56d5b505-6591-47c4-b469-006e27e6e343", + "572a625b-119a-4099-b5eb-d2994f8846bf", + "5731130c-c5a6-4c15-90ea-b560377d50b5", + "577e4275-b373-40ac-ac3f-8487d6aafe16", + "58a3a386-72d7-42e1-9d31-951faa0cdd14", + "58b683d3-03cf-42e9-9cff-4143dff729ca", + "58deffba-bee5-43c0-9432-f48d476479f7", + "59a4c958-41b6-4680-8021-86ed6be8f55d", + "5a172f54-33a5-4e0d-bc0d-1760bad3beb6", + "5b80431f-c95a-41ef-8aa7-98816f00e4d6", + "5b977962-16d1-4631-9225-6be262e9ccae", + "5ba4d483-b089-436d-b5d9-204594fd9bdf", + "5bb51990-9b12-4694-bc28-b87a2efeae9f", + "5bbb5c3e-aa4f-4a39-b9b6-daebf8267e7f", + "5be8906f-0831-422d-896e-b099d5a23e13", + "5d00e91c-8691-41ff-836c-b827f23a1a7d", + "5d0feda8-27ec-4d2f-872f-010de5599038", + "5e25031d-3456-4209-9818-c8882b2623e1", + "5e811f8c-aa77-43f5-9197-f69c067b6e83", + "5ec7c9a4-d508-4f02-a5d6-2549a2beb668", + "5ecc4c21-3d22-4ee4-a5ec-f65c013fe1d8", + "5f3e080f-d2f2-4350-96b0-fb8169bfcdd9", + "5f44152a-c794-49b7-b1a3-ff85ca3b09d7", + "5f4b61e7-f383-4afe-95ed-b5291cb78e25", + "5f563e91-d384-4e1e-ac84-20f06332fe8c", + "5f5e80b2-0779-4df0-9a18-35bc0db72fdf", + "5f6e0f4b-3541-4197-a67f-01dddc0cf105", + "609ae52c-1765-4048-8e00-2ddbefb71419", + "60e4296c-5d92-4c12-bf4e-f5fe08f01614", + "614f783b-6956-40b9-9a4d-7e5aebda0eb8", + "61716326-4fa0-41b9-8ca4-5b020500e8ad", + "61d9feae-3f3b-45e8-a236-359df3e2e2d1", + "621547f4-60bc-41b6-bc21-5c970700a1e4", + "6250c51e-4eb7-4ebe-81c3-abc23724f317", + "62af56af-f65d-4aae-a599-385c1f725e23", + "62f16474-dd23-4eac-aefc-1ba7c5d67d42", + "630c4724-310e-462d-9d0d-e10083f44b9c", + "6314671e-6b9f-462c-a207-e0f99f82a659", + "63d29f05-1a74-46a0-ad91-001efa34a021", + "64309a91-ba2b-4b0e-baa9-7cfce3c5d445", + "64684889-2821-4e2b-9aa4-b57c3eb47a42", + "64c93769-83eb-4718-90f0-36d83b1dae4d", + "64cbad96-28c1-4e62-a6f5-b8b79424503a", + "64e1d438-17af-450b-b90c-04072117cbb1", + "64eedb4a-2f73-4b60-a4b1-99b5ffd0486b", + "65909bad-b2cf-46f8-883a-6cd80e9499e4", + "659bc4f7-7223-4eee-973b-432c66c7ded9", + "65b78fda-7874-455f-9c9a-bf7aca375a0b", + "65fae226-b417-43cd-a5c8-cf2336b8cff5", + "668a508d-34fa-4468-86e8-523380a34da8", + "67784226-6582-44f0-bdf0-1d2bc86d9a6a", + "67fa2c3e-ba97-4bc6-beb9-92ea33bec948", + "680f8f20-13b6-45db-872c-83b542f77227", + "69ab8827-b0dc-48ae-84b5-1d27284a7db0", + "6a96f079-8655-40da-ae1c-2259b26adc8e", + "6b339b09-2d38-4016-8aaa-bfcc788d124a", + "6b38794f-2d55-4422-8094-fb4a5e100d32", + "6bbb303c-2698-46f3-b818-702e9c75e40d", + "6bd02c9a-1d0a-4093-bc0b-26d1f6ebdb47", + "6ca6b611-2a38-41e7-a0ab-c9fd6cbb32c0", + "6d508d37-de41-4d34-8eb8-ab59e95e6eae", + "6e3aed1a-9909-462c-90e1-a1f766cd380e", + "6e650029-386f-4d8e-868e-8780782baa4b", + "6e669924-95c7-4aef-bd34-6dd28bf29fdd", + "6ea00f5c-7e63-493b-b6f9-68ba54dbbed3", + "6ea29b25-492a-4c00-819d-ec8a0909fa28", + "6f11ead1-11b1-4bda-8a20-588bb85ec126", + "6fc7505d-33db-4d19-99a1-5756cd9a0a1c", + "70291c50-770c-4e51-8f1b-60be28ea419f", + "70519cbb-bbfb-4e55-9642-e6c6a381b4d0", + "7060b0f4-a756-41f8-bc65-16c7effef1be", + "707a111e-6a29-42f6-906b-1168970d3ba0", + "7186ea5d-49a0-4d72-a24e-2a30d48aa8fc", + "719d5ca1-9869-48a6-9876-81b4816c3dbf", + "71add17d-3b59-4ca2-a032-80819608a34a", + "71bdd650-ae9d-46ee-af5f-efa21b8f6d63", + "7240ec36-6433-4e5c-ba0f-d2770817f963", + "72b34b3d-f005-48af-81dc-3631873960d8", + "73112827-65e2-4057-98e0-960b4c50afe6", + "738ebc49-f032-4c58-a5de-cbdbbdd58286", + "73de6875-a6ff-4ff4-846a-5d4866b129a6", + "74086d10-f049-45c2-8654-de93aac63d94", + "7518b08c-cf57-44fa-8cba-a22aad24d5ea", + "75b50abe-fbd8-4bc6-9170-455bcd9a3208", + "762c2720-f65c-4804-844f-2302bc33ebbc", + "76457b72-bfe8-46b4-a8fb-7644c1f9209e", + "76616c76-f485-4da1-aae6-fc2fc918d90e", + "770b9529-4358-4a27-9c8c-ab4fd91c3397", + "782f79d7-bd59-4cc5-8492-1e680fbb31c1", + "782fcb99-9b26-485f-9f7d-bda9cc37f0d2", + "785cf620-02b6-4450-aaff-67684b1af04c", + "78e933ab-3d89-4651-9e78-db7da3ce15de", + "791fcf08-b02f-4ecc-9a89-bef863ecb3db", + "792fd4bd-9b01-42bf-a883-c651789a198a", + "79377e16-5ab0-433e-ba05-39349b25c52f", + "7938acb1-91e3-4d8d-9d24-3b0a9fa28131", + "79426c6b-bd79-4343-b9fa-ee1e9cfc2aef", + "79d181d1-5b70-4306-a229-74a2a3d5278e", + "79e53d37-c41c-4234-99db-f3333d89bb3a", + "7abc79b5-e32a-4313-b130-12397d29d684", + "7ac117ba-372b-4448-ac12-0a30e53a53aa", + "7add99e3-86df-4443-a5b6-d734667814b3", + "7b062fdb-21d9-4760-8620-04b9d92f1148", + "7b1418ba-7cd7-4844-924c-ca92b0d3147c", + "7bc7e2a7-e334-405b-b0eb-b7fe7bb8b3b0", + "7c28300b-6590-429d-b628-08f020a83288", + "7c912919-4b2c-4f4d-bdfe-1988d20aeeed", + "7cb5e572-fb2b-4416-8ff9-05af3bd1bcf4", + "7d5ca602-df90-402e-9c12-933e1cdde407", + "7e1f0414-5235-4c79-b334-b278d3ebd8ae", + "7e614c42-78b1-452c-a142-57b2dfef7f9e", + "7e8a8426-4694-4e76-8525-8e56fb86837c", + "7eb17ee4-5704-4ce3-8b41-121ef051ee09", + "7eb2244c-6b4d-4d91-bfc6-44ec12d9319b", + "7ec16db5-8b4b-4c20-98ab-bb2916a7e793", + "7f46ab20-26fa-493e-98c4-24d558f4a0ce", + "7f67c5c2-e02b-4b93-8a65-0e0f0d1c3565", + "7f6b4855-5cec-45af-87ac-1c86e25526dd", + "804eb3bf-15a9-47d9-81a7-d19b060c5425", + "80d3eb60-a05b-4bdb-8957-21e383773240", + "80e88ed6-4480-4888-b25d-d41e90822142", + "817604e4-1083-463c-ac3e-3e3d72bb649a", + "81898837-23e3-40d9-96e2-04a559d95b2e", + "81aa872f-74ed-4d70-bf2b-6c99d85f7158", + "81f653f3-e276-476a-9bc9-f1f0e701d893", + "8239a02f-03ae-4492-b56e-501455438e63", + "82899c21-c3c7-4288-bb8f-4c72880c10e4", + "82fc0df9-9828-433e-ac6d-73f4bbceefcf", + "832ae460-0083-42b0-89a6-cc651e50fad4", + "83865a27-24a8-4a70-a8bd-650affa7df5c", + "842d36b0-63a8-4327-9272-829af8d0f078", + "84886ca5-d3d0-48fa-aab5-2bf8841a90bf", + "84cc7ee0-4d8e-45a1-b563-d3e05b4ec573", + "85f59eaa-e374-4131-aa69-25ac2b82570b", + "868dfde7-2df8-487f-b754-68db8a96ad3a", + "871337d9-1c55-4c97-8f67-2da1fff00847", + "877258d8-07eb-4cb6-a358-7c265c856ab6", + "87d83545-fd57-4d28-87f6-66d8f0497377", + "87e9a01b-594b-4dc4-b2a7-a14407399b50", + "87f7c470-7c45-4f41-9600-21cc527f524e", + "8840da5d-cbaa-4617-ad50-d2a012563fe6", + "884813d1-d03e-4210-9289-e5b0d415484b", + "885f171d-901c-4cc4-9c76-c5d8cdf35991", + "887d7cc2-1c24-42a9-aab3-51474d95f927", + "8898a9f3-4928-45b1-b236-71ce7cb48b11", + "89120b65-1e35-4c45-97ff-dceb88c11608", + "893dfdd4-43f4-4256-938b-d957928f0daa", + "8a193098-118b-4f89-8247-2bcc5895c652", + "8aacdf52-d394-4388-aaec-6ba68e731776", + "8ac59477-0756-41ec-b217-e043e28dfd1a", + "8bcbbdc1-57ba-414e-bd3e-5a76b3d0fe9a", + "8d9fd2be-7a3d-41b6-a8a8-703071dbefd0", + "8de95742-6e0f-45bd-b835-ce96ebc1991c", + "8df6ce25-29e1-41a9-af33-d665ff8ca4e7", + "8e1496ed-8a01-41b2-b961-4836ffec838b", + "8e892b4a-c112-47f2-a058-b87efed5a262", + "8fc6dd31-c01c-4eec-ae6c-bedd13f2c209", + "8fc7790a-a0a0-4c82-95f1-d5ddd51eeaba", + "90507c29-dc73-4082-8322-fabb7ee6c417", + "91594c64-a197-4dc9-8605-d57aff0f2e87", + "91efd1fe-91e4-48de-b94d-d6c9a01070a2", + "92363365-2bef-43b5-bb58-7a66b7cf57dc", + "92b8ae58-1054-41c0-b7b2-62f41b233069", + "937bbdf2-09e3-4bf7-8f45-e46db2188c46", + "93d7c2e3-12a7-47e7-b59f-6d32a6fc1d82", + "93e2bcb3-3310-4f04-a076-edc6d70edd83", + "941c2df6-cbaa-49ee-80af-950b8c015aa6", + "94607b56-edd9-4517-b07d-4b6f54b5bdaf", + "947c5a3d-3fc2-4bd4-ad3d-a918c0e11288", + "94db79be-389e-4acb-a40c-4a9c50ea00ee", + "94dc13e0-6390-40d2-a3c2-bec70c12d5b5", + "95834b02-36f0-4ccf-b0a8-9003c4856b03", + "95e893a0-0885-4e1c-8e31-55863d5108b3", + "95e98d94-d463-400d-8fc2-bcf5d8836479", + "962e1ed5-971f-4c9a-b300-5b26a208ee15", + "965057e9-48bc-4452-8819-2bc45723a0f7", + "96f4d488-e081-4b54-b12a-b2d9546bfc17", + "9717e5ab-015a-4fee-9864-0332c60b1e9a", + "972e55ea-7901-435b-9646-53bc8fde2e6f", + "975d56a1-7521-4cae-a00c-b5b838c5eb17", + "97cfc6c1-2a97-41ef-bb36-0ac99b8c8195", + "97eaa3ce-131c-48b8-8082-86bbb6a486b5", + "98195059-45d0-4646-8029-b7f0ade7f2cc", + "990e3e4e-8fa2-4908-b397-8e30328f5343", + "9957b026-435c-45b1-a333-70cd5dccdde0", + "9962de78-e4ef-40ba-b9fc-bd661895a99b", + "99e73efd-4a04-496f-bb32-8f73edb0ae1a", + "9a03ec79-7dc7-44fc-bb97-22ad58159436", + "9a8800b5-f35a-4f46-b73f-88126b7991d5", + "9af05201-38fa-4249-a9bd-94306c68c3eb", + "9b03ad8d-aabf-4736-820a-493db4877f84", + "9bad139c-7abf-4786-a6fc-5f9a5abcd850", + "9bb66e29-a02f-47db-b478-00a5fa1f1080", + "9d4fa1f8-c43f-44cf-8c4a-80803db9c498", + "9d98496f-f6d8-4106-8b6a-c118ed6ff229", + "9de5c25f-721b-4eb2-b261-64a6a02825de", + "9e63db48-5b68-40e8-9d8f-aff48223b80e", + "9e74066b-834e-416d-a1e7-bbec1e8f1713", + "9f48fa4c-9f7c-4d06-840b-4937b1726cb3", + "9f577e94-f952-40af-a919-108f4661fdb9", + "9f709f2c-701a-43bc-8417-77fac81c3633", + "9ff4778b-509a-40f0-bd51-d5aaeeab12ab", + "a0309063-af66-419b-a940-2412a836aafa", + "a0b7bb41-c5c9-483a-bd76-a774690606c0", + "a0f8e9a2-9407-4cbc-9739-7cb7bca8a563", + "a10329ae-6c8a-4df9-bac1-70bdf2c07571", + "a19fab73-95bb-472f-8722-c7d07427a8da", + "a1ac3c01-10da-4b93-a61a-71a62e6ddb22", + "a2070278-a8da-49ee-81b1-c165973dcd7e", + "a2385663-3f62-4512-b4d8-4bba405f50a3", + "a2569db2-a44f-4833-ae36-0303e2206980", + "a2b31671-1874-4c4a-a5c5-fd2787287893", + "a2cf538e-0bce-4328-b103-57491866f293", + "a3fbf625-f36e-4365-859a-1d32c9b2001e", + "a40ed25e-fbf0-40a3-b468-e2bdb55d56d0", + "a4152d0c-ca88-4cad-af08-40a2e799bec7", + "a45af0aa-2591-4031-8ee8-a3c0a5a76260", + "a526bd56-16e7-493f-b539-2a895c7e2b10", + "a539e00a-e61e-47d5-9032-3d3fff99ccc1", + "a57c9da5-752c-44b3-b7fa-f8a804631f64", + "a65b7c37-e038-41d5-8623-2046bdc278a4", + "a6a99736-43fb-4f67-ae26-0e24d5277c6b", + "a72ab36e-966c-44fc-b934-fcaf06679b46", + "a778ad17-3705-40bc-b425-245d17958638", + "a783909f-5237-4218-8b9d-80653729f3b1", + "a7e5f9e8-6fd9-4c46-860f-4a82e67af13f", + "a7ff32c1-f400-4af6-8698-b10a33fb38b6", + "a828062b-dd49-406f-872a-22ff8e4cdf10", + "a88b766c-31c9-44ec-be2b-a5f757296666", + "a8f749c1-b53a-48a4-b9e4-67b31201609b", + "a9088b7c-b538-42c1-906d-55327ee344a0", + "a967f05e-6159-481e-a289-908b1b320db9", + "a97b90ce-e6ad-4b92-8b97-0c60bcd46031", + "a9cc38f8-0a0e-488b-b0c7-2c77f091d0ce", + "aab776ce-7336-4b6c-94ba-830a72fbf640", + "aad8155c-b15a-438c-b89d-d1aa89869819", + "ab8e7f29-eae9-488a-9337-7a926c8857ac", + "abe9834e-4be6-4bd3-bfc1-1a09f55f3f2a", + "ac036daf-a7cc-4583-a219-814c77ed8001", + "ac59fa42-b81b-4b1d-b9f0-ef9a05366bdb", + "ac5fdc06-b856-4de0-9423-bdf05d4df650", + "acfa3362-62b0-429a-b617-3adb722c200f", + "ad0b91bd-8fbe-419e-8a8a-5e7a971aaa02", + "adbbe8e3-afa6-46ff-ae62-bc9be2c55f70", + "adca7438-701c-4afc-8580-01de6ee68974", + "ade0fe79-4629-4a49-8253-e26380046b32", + "ae5b7895-01cf-4a6e-aee0-8b58e820313c", + "b0009333-24fc-4f3e-bf35-3cc8fa808efa", + "b0025fa1-e6a6-441b-a018-2c73ceabe237", + "b09dfbcb-f6c2-459d-b637-7d12f079e20d", + "b1cd2aba-cf49-4e7f-bc0d-5dbbff0657e5", + "b1e83792-e01e-45e2-bcb8-27b81a0d9db9", + "b29ab2c2-8a15-46e5-ac3f-7f0eabd272fc", + "b2a45a04-4f23-440f-8677-676ded3e3591", + "b2a6b8c1-f0bc-4509-b255-8618d7cff205", + "b2cb471e-a094-4ede-a63c-719f14fe802f", + "b2e285b5-ffe5-4c57-a7ba-1c965366c37a", + "b2fedfad-ed1d-41f6-9a6f-0ab189247da3", + "b35e3b14-91dc-4bf0-a47d-4ed8428efbe1", + "b3739e56-e8cc-43b6-8b43-9116b5d75e69", + "b3de09c9-37f3-4d58-8930-bbd5d4e136c5", + "b43bcc28-b5cc-4c02-8655-480c5d75f24f", + "b4ea765c-8a6a-4585-a74b-b137727cd61a", + "b5c2e557-c303-42cc-8779-bf3b2256c422", + "b5ff9714-ff62-4fae-9cc1-f75eaa9bc652", + "b68e67fd-a8b5-48b2-a1fe-dcb7b84214e6", + "b6dda1ac-9635-426a-869a-82b1420ef251", + "b715cee2-5b72-49b6-b51f-5e9063ddb5a2", + "b7264fbb-2404-4ec3-9239-24238ad09a7f", + "b7d7c14d-7bf3-4a8f-8f40-8d6e98505558", + "b8734735-6ceb-479d-a1a6-5f8fdbf3cbc0", + "b8edcc72-efe5-44da-b478-9761be75a127", + "b8fda4c6-4fe9-4107-8d37-8763f33cdead", + "b92a945a-9be0-4cf6-8ce8-14f0fa3a3648", + "b9acc59a-ba7c-40ef-8611-27069458a508", + "ba2a8b21-884a-44ed-86b5-e9288dc9ce64", + "ba526c42-7c2f-43c1-a817-06ccdb4d67be", + "baa2bfd9-d2fb-4b5a-a81d-af84bf24c730", + "bb36dd96-2995-45e8-b128-6e7f28dab8f1", + "bb3fdef2-bbeb-41f9-97a0-d0e36c433ef3", + "bb788d30-169b-4160-be07-98222d0a8327", + "bb9f768d-87c9-4d9a-9fd3-2ed901168635", + "bbda7bad-f60b-4091-83b0-b8d96c3f4214", + "bcb9c8d3-54c4-404b-a87d-1e0721a4dbbe", + "bd1e5909-c184-4ee0-906c-77e399270a71", + "bef069b8-2720-4327-8298-9ab2badd4a53", + "bf119ffa-94c6-49b1-9f62-766e2a53776b", + "bf54f8d4-be87-40f2-bac4-c6e513baa54f", + "bf6cb18e-07de-404d-bebe-4a943dfb44f7", + "bf8c13a8-5875-4e53-a7d5-8b595afcfa7b", + "bf968691-34b6-4f79-9285-bbba736c3def", + "bff57385-2f4f-4695-a153-412c9aabab59", + "c04a349a-be3e-4fd7-b71b-8eb1237f838e", + "c04b8362-f2c9-4cad-b939-494e738efc19", + "c0593f2b-b6b9-4365-9c0e-2f3108dc03ae", + "c082712b-3289-46fa-86c7-b6dad9f37e55", + "c0c4e734-7669-4b29-a840-94ea6aa5872c", + "c0fc6427-6fa7-4d8d-9d6e-8844a26ff318", + "c13ed96e-3052-4a3f-9871-8196c10070a1", + "c1740f09-7595-4d38-a970-8a89da2e9f0f", + "c180c376-c910-4b07-9833-f0443ad62a59", + "c2081de1-a850-4671-9d13-d5782fb87ce2", + "c3093b68-54a2-4d31-aa15-50afb0414625", + "c3a93f32-20be-4479-aa9f-e65fb9ccaebb", + "c3d3c4a3-527b-490f-8107-bc1b44566df0", + "c458a416-5736-4b7b-817e-1d87b341f825", + "c46951ff-a25c-4bfd-9c21-0b329730a87e", + "c46f9eec-ab37-4d9e-ab8c-d4dcdf1852f7", + "c4a8c78a-7323-47cc-82aa-ab32e1d6bfb2", + "c4c3353d-f33f-4a5b-a2d8-7878daf2d01b", + "c53e8814-f633-49d0-851f-f8708e9616a7", + "c5e55f39-94a7-4ddd-8972-d217b63fb7cb", + "c62d0784-479e-43a0-8548-d7921592639d", + "c67f602f-1b0d-4b0e-bd72-af166f5443fa", + "c699ee8b-738e-451a-b91d-0e1a6c8bb6f9", + "c74cabf3-6a19-46ce-a19f-10a569839ac1", + "c7970499-e36d-49f3-b1f2-6886746333c9", + "c7adbdb4-dacc-4c5f-b477-daf94f3e08dd", + "c81a1417-0fd8-4346-856c-12174fd84dc6", + "c86979f7-726d-441b-a525-1a3369492695", + "c8995918-5491-41bc-ad76-2099c6314fb1", + "c8b4bc26-7487-48d9-a2f2-6b3934da074d", + "c8fe6dd9-1c5b-42ee-8a07-15ac97cbb6fd", + "c8ffc4fc-c802-4a03-95a1-be237423e149", + "c9517b55-fb72-463a-aab6-e4f64b95c2fc", + "c9a2a10f-6638-4463-8c8f-4260c72dcb92", + "c9d41a92-d999-4c22-98f5-f205b57b0715", + "c9fe0510-7445-4101-a4b1-67022a9a8b4b", + "ca6e8808-dcfd-4b27-90ee-47a7fda101f2", + "ca88a6da-dffa-4f39-afaf-4fd53d43c2cc", + "cabca52b-8f67-4107-8916-4fd8129ccd97", + "cb8e28b3-67e3-470f-aaea-3a5de3933f45", + "cbcd6047-0f88-4dfe-a123-648d6ed5342f", + "cc28432c-f484-4363-9b77-56b433eba183", + "ccfdae0d-34c6-4a5f-b017-5080bbd68d47", + "cdc24ed0-2141-446d-9f72-0cde913c4dd7", + "cdcb842a-e8c9-4ff9-ad22-850873c3f30a", + "ce3c8eab-dcb7-403f-8837-6a7986acb6fc", + "ce6d4c01-8676-4ae9-91b3-4148deb5b8d9", + "cf86ed0f-408f-40f9-a104-ed61c88fa5d5", + "cf9e75a1-c4a2-4aae-9767-bc3aaa7c60a3", + "d04a8b95-a45f-4fc1-a42a-a9afe3188465", + "d068c2b0-60c7-429a-938c-cb9c703c4c4d", + "d0764179-9b16-46a6-ab64-b30e0c4de1d3", + "d0b72f3b-1519-4113-aab2-f4b1d8e80345", + "d0cf423a-1ecf-499b-9e61-95662e23ba40", + "d13d109b-0106-4102-9769-82bb2ed9cfb7", + "d1ad5518-3619-46dd-a342-f5a3b34f67b1", + "d1dd53ff-b603-4345-8203-45c384cbc813", + "d1e97cb2-581a-432b-bca1-78bbe00e9127", + "d1f65c9e-628b-4c5f-b76a-1154c1666eba", + "d1f9e5d6-8df2-48d1-b558-9609710ef53f", + "d200ad0b-db9b-4064-94e5-d03c5d406371", + "d20547e4-3f00-42af-9a7f-9477ff43de0d", + "d2ac4e77-f7d1-427c-8a56-4ca6933f6a65", + "d2fc5db2-eaf1-4817-bb39-4ad61ea9aef6", + "d359ca8d-a374-4eeb-b214-69df7861d0e3", + "d4b47fcb-d3ac-4cc1-b7d2-f37c2c228ecb", + "d4bbfecd-d580-4eaa-8679-33173740b295", + "d4ee29c9-bf24-408e-855f-03ada1309ce1", + "d517b1da-4c0c-45ad-b4b0-baf8a162a8f0", + "d58f4a16-7e35-42d7-9031-9a60db734da4", + "d5aab272-e387-4bae-aeb0-987928e0c001", + "d5b993f2-d053-4420-994b-04d64bd9e356", + "d5d159b5-1ecd-4a4a-9333-e933e20e2811", + "d61bebce-41a0-4a3a-b8bf-b2acdaeb9db4", + "d675ebad-1bb7-4b9d-8c29-a25731906861", + "d691ee05-f531-4c18-b0e9-677dcaabf20f", + "d6b678fb-58e3-4b3a-9788-fb004e7e3a87", + "d73e6663-d29d-47af-a4b4-5cadcd272293", + "d7b3de6f-1ed9-461a-bb0a-d1517e9b68fc", + "d85ccb81-e861-4bb1-95b6-40762555da1d", + "d8b5e5e2-75e9-49c1-815f-2cb3a4b5cddf", + "d8b9cedb-39d5-47b7-9c64-94e6393fdd0d", + "d90be9f0-3352-4c95-8790-92668f6d65d5", + "d9e70e73-ba70-4d01-bb84-6f80535c3147", + "da23845e-e1aa-4fb0-8653-42785b457605", + "da6e341f-43d3-4c22-ab8c-3c3e81986d9b", + "daa6813e-0321-413a-9107-8c814825bf93", + "dabb5028-64d2-4dbc-89a3-0cf6079ad0cb", + "dae9b045-0d8d-4944-b8a2-d3b64ad7df34", + "db2ecbf9-0e24-4106-b594-73368de0e98b", + "db7576d3-afc9-4860-9a46-bdca8f745fa3", + "db80fef4-5dda-4ba4-8e95-5fed18ee1f3f", + "dc2a13d5-92a6-46f3-bc12-17a4bde95ada", + "dc390866-3291-414e-82f3-1cb004c27f35", + "dceb6a13-eb70-4fc9-9fdd-5792be962cdf", + "dcec351c-327a-46df-aa48-22d2647d5852", + "dcf52037-e357-4b26-9072-05e08bf47978", + "dd8ac880-75c4-4fe8-89e3-2cc41dad784a", + "dd9a9646-5645-4b0a-969b-7c225966437f", + "dda17201-ae39-44be-a644-688293254283", + "ddaab768-186d-456a-8e1d-8631dc97f6ad", + "ddd4a327-86e4-4482-abe8-59bfb035f592", + "dec19270-f9f2-466f-86e3-c56e9e9f85a8", + "df900bd9-2d04-4080-b718-590ff28ce892", + "dfb822ad-7da9-4ca6-9133-51c5e0279a9f", + "dff50bd5-38c9-4c35-a5bc-dd51e69f249a", + "e06ec666-d2ed-4801-8bc3-03ddcd151c49", + "e0a914c3-3147-4f06-a8ae-0c16029497dc", + "e0a99b8f-15e2-4a9e-b298-1066a9bcbda7", + "e0e048f6-0ab6-45fc-a74f-16711af67a2e", + "e163d226-febb-4ecf-80db-8e60680be2ab", + "e17968e7-5ef9-45fb-b45a-d73d18f41ae6", + "e1bf51d5-e656-49de-9b55-8ad814870da7", + "e1c334fa-b493-4892-a48b-3fe594e98b30", + "e2112f19-f48b-4f9b-acca-53c0e966baff", + "e28d2a66-f506-4a4d-b2c6-823e4e8124d6", + "e2d181be-9c2f-4b06-a1ca-68965b5abd5b", + "e381aa0d-c2ce-4fe4-9acd-030d9023fcb6", + "e41aceeb-21ab-420d-a393-244aac597625", + "e4468469-2eab-48b1-9c5f-b72eeee2da3a", + "e48fabae-c5df-4906-96b8-a45c77e48af0", + "e4cfd5be-adcb-4ddd-b263-659ab56591b3", + "e4d3b43a-a03c-40d4-bf8a-bc0719d773e2", + "e4d6ced4-50a3-402a-bbbc-ae329cd3689d", + "e4e308fd-c449-4aad-b61a-43c595e3da00", + "e57453f7-04f8-445a-9b64-24c5b82d95c4", + "e5bba055-1268-4e04-99ea-71660fd31c08", + "e5d2cef3-3902-418c-b905-001052979a54", + "e61740c1-0e70-4d25-a912-32617d2e71fa", + "e61fff58-84e1-41cf-86f2-7d5c120b17d5", + "e6565b7b-b195-4554-bf60-4b80f2c6dd13", + "e6aa2bc0-9650-4ba6-89fc-033a7a95f796", + "e6b33ccb-99f6-4c02-aa69-e7b581832d04", + "e6f5097f-6e88-4703-91a3-1f8af0a04ca2", + "e72b1bd6-2847-408b-9ae6-66f187d293e4", + "e744fafb-3c4b-47c3-91db-db8bb8751279", + "e8081e5b-30a8-4ed7-88df-07c9e81688c6", + "e882d829-b80b-4699-b909-269337998882", + "e91bb61d-e965-46e5-b6b3-53e3593de931", + "e9b50275-4ebe-43fe-b3de-1fe3ab930a23", + "e9def19b-3967-47e7-a2dd-1bc5f9297959", + "e9f719d5-786b-439e-bdb5-1a0434d1e815", + "ea1d2072-66cc-4e8d-8547-7197973e43a7", + "ea9a283e-ec06-432a-8bf3-40133f8f9cfc", + "eb10f476-5ffe-4954-b2e9-8a6a768fe46c", + "ebbc0d72-0743-41b8-88f6-736c36bd6499", + "ebc98059-556f-4a51-b1d3-e5afb40fe80e", + "eccad683-4c2d-4d7f-a141-1effb429fef7", + "ecfb5b99-5606-483c-817b-fbcce96ee9be", + "ed3df4c8-d006-4edc-b5fb-65af588b5984", + "ed4c7767-277c-4d39-89cf-6144161985d2", + "ed884cca-c961-40d2-bc8b-b358ea4fb780", + "edbe53c5-208b-436d-b283-1aa4ee94800c", + "ee28d3e7-02df-46a0-a3ba-f55ad747b214", + "ee36a1ac-7426-4253-81b8-715f37a2ba69", + "eff0eba9-ed02-43c2-9861-d34edfaf9f30", + "f00513d4-c39b-4607-b43e-51bc36293e3d", + "f1b0bc3c-0856-4493-95af-6b5ec42d09cc", + "f1ba59ae-f42b-403b-a777-69ced3930293", + "f26b81f5-8f36-4998-90c0-0f30ea866f41", + "f28f5241-9275-48ef-9779-0356be81a14f", + "f296caba-7bdc-47d1-a7ef-b39e358d0e3e", + "f29dfd6b-dcb8-4c50-ba95-58c2be9c7a16", + "f366ef43-bfe1-4649-9d08-3eef088ff99a", + "f3aeccbe-aa7c-46a4-8eba-34c6b90c85a9", + "f3e5a38a-c62b-4100-9fcc-18ffbe346be5", + "f4b0febc-2a23-436f-916c-2ddb328dddd4", + "f5274b10-d3ea-44c9-9f27-9af574dea10c", + "f55166a1-c4f0-4fda-ac9f-164489040ee5", + "f57edc37-d012-4382-8d4b-0e250cafa81d", + "f5ada827-68c0-4af6-88c6-7e9256b663ff", + "f5fae200-b633-4ade-8871-94cf47475c67", + "f61ff371-7c67-45cc-af18-e94ed874baba", + "f648cc69-80e7-46a1-8575-aae76b30367c", + "f6bd08a6-5630-460c-a1bc-e13a3340f7bc", + "f70ce593-fe86-4bef-9e0b-c68a09a12ccc", + "f77883e0-6609-4bda-b446-331adbd9d357", + "f78279da-e39f-463b-a1a9-02d4f99f85a5", + "f7a68998-a02b-4d1c-8768-0abb9e9ae35a", + "f7e7009f-d6e8-4fc9-92db-921d32531262", + "f8153a7e-c5fe-43b9-bb7a-90ea3d059772", + "f859d1ff-df51-4548-b8a4-9eca26bf7454", + "f8988fe1-225c-40b4-933d-9dacb8b4728f", + "f89c0972-79b4-4338-b37c-7bbfdc121f60", + "f9951b26-b6cf-40f1-9a78-37cb8f130b19", + "f9db3e23-91ca-487f-a3ec-11ffa8b8f939", + "f9eef16f-b9cc-43bb-b9f3-bf0948766e7e", + "fa17dd22-2d46-44dd-bf29-7ba21c575a6c", + "fb59546f-ca17-40ae-b0b8-ca16c1b94de9", + "fb71e3ae-31d9-4ce1-8d14-25955525b515", + "fb771836-467f-4897-a755-a17ab281a385", + "fbec3e01-aaf4-41a3-b667-1f0268571d10", + "fc1541f1-27bb-4cd1-be90-2b04c29a902e", + "fd0547d5-7f16-46e4-8948-45c82f923f69", + "fd3a8466-6eaf-4251-be4a-f46f85403719", + "fd5331f0-025b-4370-94bf-a2a2d1812704", + "fd563e44-5e1a-4dfc-bfbd-42ef32c62d69", + "fd7e7e85-7747-42c3-bc6b-0e4718202d63", + "fdb8e413-a62a-4c6c-9890-3945c0f19ce8", + "fdd026f9-0ab6-49ef-88f9-4a5d61d12188", + "fe2c65ca-06af-4760-9df8-086a81611a31", + "fe586661-4878-4882-a38f-0b6321df5c99", + "fea581ad-b8a8-47d1-a4bb-e18f0753bf13", + "fea7ae13-ad77-4b59-9922-14f748263eac", + "fecea080-2c71-42f2-a2cd-3dbd89e04c80", + "fed19e4a-e9e5-4d4c-9c5f-0c6f333b40ce", + "fed6f8f3-2c61-4361-8160-2c5a13db83d4", + "fed76aa9-d126-4747-b53e-b357fbbaed47", + "fedc286a-9bbc-4db0-8bf5-b3f0b69fb559", + "ff19abb9-e4d9-4fc4-ad5e-1fbafcbdedf2", + "ffb352c5-f9e2-497c-940c-7cb5dd0eaa5e", + "ffb64e6b-8924-4adf-ae8f-e55b4dd019dd", + "fff15476-7228-42be-be8a-bd6b02ee9f81" + ] } \ No newline at end of file diff --git a/test/indexer/data/0722b70c-6778-423d-8fe9-869e2a515d35.dss.hca.json b/test/indexer/data/0722b70c-6778-423d-8fe9-869e2a515d35.dss.hca.json index 19613f43d..bdf5655d1 100644 --- a/test/indexer/data/0722b70c-6778-423d-8fe9-869e2a515d35.dss.hca.json +++ b/test/indexer/data/0722b70c-6778-423d-8fe9-869e2a515d35.dss.hca.json @@ -6,7 +6,6 @@ "version": "2021-03-18T11:38:47.812000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1628, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -17,7 +16,6 @@ "version": "2021-03-18T11:38:49.863000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 412, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -28,7 +26,6 @@ "version": "2021-04-22T15:50:01.103000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 851, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -39,7 +36,6 @@ "version": "2021-03-18T11:38:49.142000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -50,7 +46,6 @@ "version": "2021-01-21T12:00:11.354000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 3832, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -61,7 +56,6 @@ "version": "2021-03-18T11:38:48.652000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 11636297998, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_8ab15f7b-ec0f-433a-b6fb-28cbe0fb8dc3_cc8da2bc-eeed-4c04-b069-764c0ec9f7f6", "crc32c": "d04bf2d8", @@ -75,7 +69,6 @@ "version": "2021-03-18T11:38:48.639000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 4535175932, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_8ab15f7b-ec0f-433a-b6fb-28cbe0fb8dc3_1e60afef-6c94-4eb9-84f2-ff59398ca9da", "crc32c": "5fa7dd50", @@ -89,7 +82,6 @@ "version": "2021-03-18T11:38:47.910000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 821, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -100,7 +92,6 @@ "version": "2021-03-18T11:38:48.652000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 538, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -111,7 +102,6 @@ "version": "2021-03-18T11:38:47.844000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 793, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -122,7 +112,6 @@ "version": "2021-03-18T11:38:49.499000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -133,7 +122,6 @@ "version": "2021-03-18T11:38:48.639000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 538, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -144,7 +132,6 @@ "version": "2021-03-18T11:38:47.755000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 845, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -155,7 +142,6 @@ "version": "2021-03-18T11:38:47.884000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1095, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -166,7 +152,6 @@ "version": "2021-03-18T11:38:47.207000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1047, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -177,7 +162,6 @@ "version": "2021-03-18T11:38:47.509000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 836, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -188,7 +172,6 @@ "version": "2021-03-18T11:38:47.863000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 710, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -779,5 +762,6 @@ "describedBy": "https://schema.humancellatlas.org/system/2.1.1/links", "schema_version": "2.1.1", "schema_type": "links" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/17a3d288-01a0-464a-9599-7375fda3353d.dss.hca.json b/test/indexer/data/17a3d288-01a0-464a-9599-7375fda3353d.dss.hca.json index fd0370015..7a4c949ff 100644 --- a/test/indexer/data/17a3d288-01a0-464a-9599-7375fda3353d.dss.hca.json +++ b/test/indexer/data/17a3d288-01a0-464a-9599-7375fda3353d.dss.hca.json @@ -878,5 +878,6 @@ "describedBy": "https://schema.humancellatlas.org/bundle/1.0.0/links", "schema_version": "1.0.0", "schema_type": "link_bundle" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/1b6d8348-d6e9-406a-aa6a-7ee886e52bf9.dss.hca.json b/test/indexer/data/1b6d8348-d6e9-406a-aa6a-7ee886e52bf9.dss.hca.json index 395685928..7f8f9aee6 100644 --- a/test/indexer/data/1b6d8348-d6e9-406a-aa6a-7ee886e52bf9.dss.hca.json +++ b/test/indexer/data/1b6d8348-d6e9-406a-aa6a-7ee886e52bf9.dss.hca.json @@ -1358,5 +1358,7 @@ ] } ] - } + }, + + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/1b6d8348-d6e9-406a-aa6a-7ee886e52bf9.tdr.hca.json b/test/indexer/data/1b6d8348-d6e9-406a-aa6a-7ee886e52bf9.tdr.hca.json index feca4bb2a..2411d9a0d 100644 --- a/test/indexer/data/1b6d8348-d6e9-406a-aa6a-7ee886e52bf9.tdr.hca.json +++ b/test/indexer/data/1b6d8348-d6e9-406a-aa6a-7ee886e52bf9.tdr.hca.json @@ -9,7 +9,6 @@ "version": "2019-09-24T09:35:06.958773Z", "crc32c": "", "sha256": "", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_1d239f78-f3e6-5dfb-aeb0-f50d8d97b51c" }, { @@ -20,8 +19,7 @@ "size": 1036, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "IDC9_L001_I1.fastq.gz", @@ -34,7 +32,6 @@ "sha1": "82599ed6a9e0beb47fd5bd87e718959dbbecb0bd", "sha256": "5a51c7ea8ce08cafb06d279041bd65f0759ab24bb6d2c25f2ca488d017cd2bc6", "s3_etag": "4cc2f68ce54b988081c14118adc480c4-7", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_c82292d3-61d1-5785-b8dc-24b9365df5bd" }, { @@ -45,8 +42,7 @@ "size": 4304, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "sequence_file_0.json", @@ -56,8 +52,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "process_0.json", @@ -67,8 +62,7 @@ "size": 388, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "c343a47d-683f-571d-99c4-1331841b4e63_file_name.fmt", @@ -79,7 +73,6 @@ "version": "2019-09-24T09:35:06.958773Z", "crc32c": "", "sha256": "", - "is_stitched": false, "drs_uri": null }, { @@ -93,7 +86,6 @@ "sha1": "8e36f67ce2f1ac6771a42c6b7b6053786d39c356", "sha256": "439112aa9aebd86f7e6a0c2206e005c8824994105aad3844090d765397931ed2", "s3_etag": "c9c70827a7c5d23bb150105a14112af9-20", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_385feda5-d1e3-5a51-8e55-f4f491a4e7bf" }, { @@ -107,7 +99,6 @@ "sha1": "73ce5b30e5c71e0ed538d67cf13e2bd638a86243", "sha256": "6d84bb5bcfec87db8480a01e0c65f44f7caf1af8668010cb825ef8114de130e7", "s3_etag": "06705170a39d451d000c0143135fc5c3-64", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_83e89c54-4fc6-58b0-800c-3788539c41e7" }, { @@ -118,8 +109,7 @@ "indexed": true, "content-type": "application/json; dcp-type=\"metadata/file\"", "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "sequence_file_1.json", @@ -129,8 +119,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "sequence_file_2.json", @@ -140,8 +129,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "IDC9_L002_R1.fastq.gz", @@ -154,7 +142,6 @@ "sha1": "b46f3cda41226009ad7b0caeefd76cccb4f7b7bc", "sha256": "125e5c181744e2dacf0b156d4c0b82ce771701947b26ca738689edddfc3af97e", "s3_etag": "31985ad7f32b053fa97f05216c6e805e-20", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_dba31e1c-1b9c-56ae-af74-16b00b8144d2" }, { @@ -165,8 +152,7 @@ "size": 931, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "donor_organism_0.json", @@ -176,8 +162,7 @@ "size": 1041, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "enrichment_protocol_0.json", @@ -187,8 +172,7 @@ "size": 815, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "sequence_file_3.json", @@ -198,8 +182,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "sequence_file_4.json", @@ -209,8 +192,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "sequence_file_5.json", @@ -220,8 +202,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "process_1.json", @@ -231,8 +212,7 @@ "size": 368, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "supplementary_file_1.json", @@ -242,8 +222,7 @@ "indexed": true, "content-type": "application/json; dcp-type=\"metadata/file\"", "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "507d2814-1688-54e7-b73e-2f831aa34368_file_name.fmt", @@ -254,7 +233,6 @@ "version": "2019-09-24T09:35:06.958773Z", "crc32c": "", "sha256": "", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_9d6f268f-f484-5381-9095-f0998fa0c961" }, { @@ -265,8 +243,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "sequence_file_7.json", @@ -276,8 +253,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "sequence_file_8.json", @@ -287,8 +263,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "cell_line_0.json", @@ -298,8 +273,7 @@ "size": 1207, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "collection_protocol_0.json", @@ -309,8 +283,7 @@ "size": 1256, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "IDC9_L003_R1.fastq.gz", @@ -323,7 +296,6 @@ "sha1": "a2493797f5cd1a2e644a08a0a81bc329c78ab950", "sha256": "55bd588c98a7caa2089271d79b6e0838ea8036726a7e56619786d4a23afa53c9", "s3_etag": "fc818501a59964e076aff1bc7f7068c6-20", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_a5e4e698-1d4c-5a5d-8d7c-5c84ea0f30d8" }, { @@ -334,8 +306,7 @@ "size": 781, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "sequence_file_9.json", @@ -345,8 +316,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "sequence_file_10.json", @@ -356,8 +326,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "IDC9_L004_R2.fastq.gz", @@ -370,7 +339,6 @@ "sha1": "9ee5c924eb8cce21b2544b92cea7df0ac84e6e2f", "sha256": "4c9b22cfd3eb141a30a43fd52ce576b586279ca021444ff191c460a26cf1e4cc", "s3_etag": "c92e5374ac0a53b228d4c1511c2d2842-63", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_065dad63-3e05-5738-8ba5-9925d5d73d5e" }, { @@ -381,8 +349,7 @@ "indexed": true, "content-type": "application/json; dcp-type=\"metadata/file\"", "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "IDC9_L001_R1.fastq.gz", @@ -395,7 +362,6 @@ "sha1": "4cf46e3cc2f8bc7fb019920ef0ff88c8d4541ef2", "sha256": "c2910761bfe2eb3ec958d653bc518988a8ecc081628a07d11f3308e25fb8f05d", "s3_etag": "046326b00d6cc7485eba093190ee7610-20", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_93ce1f3e-a963-5463-948f-44751a37f48d" }, { @@ -409,7 +375,6 @@ "sha1": "b851d8660a9dc81813f6d31d75e7b248241b575f", "sha256": "3813e23040c8e6a26a43fd1f164b2ec1d118e8f52b9d4510640f990d8e969dd8", "s3_etag": "3188a7180ba75349ca223905e3f589c1-64", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_e6c1d2ce-d6ad-500e-8682-626a555992ab" }, { @@ -420,8 +385,7 @@ "size": 368, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "specimen_from_organism_0.json", @@ -431,8 +395,7 @@ "size": 946, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "IDC9_L003_I1.fastq.gz", @@ -445,7 +408,6 @@ "sha1": "7e0667acc57bba6e57022d6e9e31dfa86f401ac1", "sha256": "17456db03c93cef439a31b1a43f3165db4f27a1dc93dbc76263beb5d002a0530", "s3_etag": "d7046367bee15cd004af8f9882874042-7", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_bb455f5a-a70f-5155-85a0-46f475856e9f" }, { @@ -456,8 +418,7 @@ "size": 368, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "sequence_file_11.json", @@ -467,8 +428,7 @@ "size": 645, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "IDC9_L002_R2.fastq.gz", @@ -481,7 +441,6 @@ "sha1": "5d0217eedef4e8b60f0730de08c845b50890a2f9", "sha256": "e65d5d070584e7b08847fac0be1f89b7760ee9b301df792a66e5698d7d76d7f5", "s3_etag": "29da5762d5a55b9ecbd14c8663039f11-62", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_f140bd59-16c2-5082-aaf6-1c929e7063c6" }, { @@ -492,8 +451,7 @@ "size": 702, "indexed": true, "crc32c": "", - "sha256": "", - "is_stitched": false + "sha256": "" }, { "name": "IDC9_L002_I1.fastq.gz", @@ -506,7 +464,6 @@ "sha1": "9a51a048fa73b59aa84f2a6b300bf3c57fb70346", "sha256": "45ada227726e92de0638c50f4c2ac20ff3e2250f1138b436112d91d20fed19a3", "s3_etag": "4077676da51c8b6eff706b1ebf43114c-7", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_b644bacb-5e69-5f73-baaf-f32178b0d0fd" }, { @@ -520,7 +477,6 @@ "sha1": "9a726b1fcd446ad3777e5537d4ee809fa393b8b5", "sha256": "8af97d885b995e7239a409f490e915f4754e7d1902f4a620f464995a422fb61f", "s3_etag": "20497e6cbc5f671fa94cf69bf0febdad-7", - "is_stitched": false, "drs_uri": "drs://mock_tdr.lan/v1_d8c20944-739f-4e7d-9161-b720953432ce_a694f8a4-424d-56db-9329-d449667416ea" } ], @@ -1560,5 +1516,7 @@ ] } ] - } + }, + + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/1ed68210-eaba-531d-ba9e-db80164d65ef.dss.hca.json b/test/indexer/data/1ed68210-eaba-531d-ba9e-db80164d65ef.dss.hca.json index 42b024d94..8ce0c37f3 100644 --- a/test/indexer/data/1ed68210-eaba-531d-ba9e-db80164d65ef.dss.hca.json +++ b/test/indexer/data/1ed68210-eaba-531d-ba9e-db80164d65ef.dss.hca.json @@ -767,5 +767,6 @@ ], "schema_type": "links", "schema_version": "3.1.0" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/1f6afb64-fa14-5c6f-a474-a742540108a3.dss.hca.json b/test/indexer/data/1f6afb64-fa14-5c6f-a474-a742540108a3.dss.hca.json index 308cd36dd..4018030db 100644 --- a/test/indexer/data/1f6afb64-fa14-5c6f-a474-a742540108a3.dss.hca.json +++ b/test/indexer/data/1f6afb64-fa14-5c6f-a474-a742540108a3.dss.hca.json @@ -614,5 +614,6 @@ ], "schema_type": "links", "schema_version": "3.1.0" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/1fd499c5-f397-4bff-9af0-eb42c37d5fbe.dss.hca.json b/test/indexer/data/1fd499c5-f397-4bff-9af0-eb42c37d5fbe.dss.hca.json index 1bc9e5dda..f8ae11f25 100644 --- a/test/indexer/data/1fd499c5-f397-4bff-9af0-eb42c37d5fbe.dss.hca.json +++ b/test/indexer/data/1fd499c5-f397-4bff-9af0-eb42c37d5fbe.dss.hca.json @@ -6,7 +6,6 @@ "version": "2021-03-18T11:38:49.524000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -17,7 +16,6 @@ "version": "2021-03-18T11:38:48.691000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 538, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -28,18 +26,17 @@ "version": "2021-01-21T12:00:11.354000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 3832, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" }, { + "name": "process_1.json", "uuid": "1fd499c5-f397-4bff-9af0-eb42c37d5fbe", "version": "2021-03-18T11:38:49.884000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 412, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -50,7 +47,6 @@ "version": "2021-03-18T11:38:48.691000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 15984291821, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_8ab15f7b-ec0f-433a-b6fb-28cbe0fb8dc3_470ac083-a0ce-4494-9acc-45f1be4282ed", "crc32c": "922d645b", @@ -64,7 +60,6 @@ "version": "2021-03-18T11:38:47.910000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 821, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -75,7 +70,6 @@ "version": "2021-03-18T11:38:48.731000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 414, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -86,7 +80,6 @@ "version": "2021-03-18T11:38:47.196000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 965, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -97,7 +90,6 @@ "version": "2021-03-18T11:38:48.705000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 538, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -108,7 +100,6 @@ "version": "2021-03-18T11:38:47.792000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 884, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -119,7 +110,6 @@ "version": "2021-03-18T11:38:47.172000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1119, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -130,7 +120,6 @@ "version": "2021-03-18T11:38:47.874000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1232, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -141,7 +130,6 @@ "version": "2021-03-18T11:38:48.705000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 5572888190, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_8ab15f7b-ec0f-433a-b6fb-28cbe0fb8dc3_4fb1d1c9-ec68-490f-9e1d-9f764f4a3e13", "crc32c": "2535659f", @@ -155,7 +143,6 @@ "version": "2021-03-18T11:38:47.779000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 651, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -166,7 +153,6 @@ "version": "2021-03-18T11:38:47.822000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1236, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -177,7 +163,6 @@ "version": "2021-03-18T11:38:47.853000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 923, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -756,5 +741,6 @@ "describedBy": "https://schema.humancellatlas.org/system/2.1.1/links", "schema_version": "2.1.1", "schema_type": "links" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/2a87dc5c-0c3c-4d91-a348-5d784ab48b92.dss.hca.json b/test/indexer/data/2a87dc5c-0c3c-4d91-a348-5d784ab48b92.dss.hca.json index ad30a46e3..10d2338e7 100644 --- a/test/indexer/data/2a87dc5c-0c3c-4d91-a348-5d784ab48b92.dss.hca.json +++ b/test/indexer/data/2a87dc5c-0c3c-4d91-a348-5d784ab48b92.dss.hca.json @@ -12796,5 +12796,6 @@ "describedBy": "https://schema.humancellatlas.org/bundle/1.0.0/links", "schema_version": "1.0.0", "schema_type": "link_bundle" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/2c7d06b8-658e-4c51-9de4-a768322f84c5.dss.hca.json b/test/indexer/data/2c7d06b8-658e-4c51-9de4-a768322f84c5.dss.hca.json index ef0488229..4cb6e918f 100644 --- a/test/indexer/data/2c7d06b8-658e-4c51-9de4-a768322f84c5.dss.hca.json +++ b/test/indexer/data/2c7d06b8-658e-4c51-9de4-a768322f84c5.dss.hca.json @@ -6,7 +6,6 @@ "version": "2021-09-21T17:27:23.898000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 353, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -17,7 +16,6 @@ "version": "2021-09-21T17:27:13.154000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 506, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -28,7 +26,6 @@ "version": "2021-09-21T17:26:50.176000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 963, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -39,7 +36,6 @@ "version": "2021-09-21T17:26:49.830000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 4672, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -50,7 +46,6 @@ "version": "2021-09-21T17:26:50.745000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1461, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -61,7 +56,6 @@ "version": "2021-09-21T17:26:50.716000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1391, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -72,7 +66,6 @@ "version": "2021-09-21T17:27:13.278000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -83,7 +76,6 @@ "version": "2021-09-21T17:36:41.225000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1180, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -94,7 +86,6 @@ "version": "2021-09-21T17:26:50.487000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 945, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -105,7 +96,6 @@ "version": "2021-09-21T17:26:50.735000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 738, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -116,7 +106,6 @@ "version": "2021-09-21T17:27:13.953000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 416, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -127,7 +116,6 @@ "version": "2021-09-21T17:26:50.755000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1003, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -138,7 +126,6 @@ "version": "2021-09-21T17:26:50.725000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1057, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -149,7 +136,6 @@ "version": "2021-09-21T17:26:50.764000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1348, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -160,7 +146,6 @@ "version": "2021-09-21T17:27:13.154000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 33226060, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_e2464476-c0b4-4a92-a5fe-96094905825c_8bd7e274-de04-48de-8adc-32ea86d528f8", "crc32c": "8af9f820", @@ -804,5 +789,6 @@ "describedBy": "https://schema.humancellatlas.org/system/3.0.0/links", "schema_version": "3.0.0", "schema_type": "links" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/3ac62c33-93e1-56b4-b857-59497f5d942d.dss.hca.json b/test/indexer/data/3ac62c33-93e1-56b4-b857-59497f5d942d.dss.hca.json index 9cf666e5a..651581ca8 100644 --- a/test/indexer/data/3ac62c33-93e1-56b4-b857-59497f5d942d.dss.hca.json +++ b/test/indexer/data/3ac62c33-93e1-56b4-b857-59497f5d942d.dss.hca.json @@ -563,5 +563,6 @@ ], "schema_type": "links", "schema_version": "3.1.0" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/3db604da-940e-49b1-9bcc-25699a55b295.dss.hca.json b/test/indexer/data/3db604da-940e-49b1-9bcc-25699a55b295.dss.hca.json index 12762e864..83d2ed630 100644 --- a/test/indexer/data/3db604da-940e-49b1-9bcc-25699a55b295.dss.hca.json +++ b/test/indexer/data/3db604da-940e-49b1-9bcc-25699a55b295.dss.hca.json @@ -1583,5 +1583,6 @@ ] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/3f8176ff-61a7-4504-a57c-fc70f38d5b13.dss.hca.json b/test/indexer/data/3f8176ff-61a7-4504-a57c-fc70f38d5b13.dss.hca.json index 9aa314dea..5459e5d70 100644 --- a/test/indexer/data/3f8176ff-61a7-4504-a57c-fc70f38d5b13.dss.hca.json +++ b/test/indexer/data/3f8176ff-61a7-4504-a57c-fc70f38d5b13.dss.hca.json @@ -2386,5 +2386,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/411cd8d5-5990-43cd-84cc-6c7796b8a76d.dss.hca.json b/test/indexer/data/411cd8d5-5990-43cd-84cc-6c7796b8a76d.dss.hca.json index 4e5006c45..653d6ce95 100644 --- a/test/indexer/data/411cd8d5-5990-43cd-84cc-6c7796b8a76d.dss.hca.json +++ b/test/indexer/data/411cd8d5-5990-43cd-84cc-6c7796b8a76d.dss.hca.json @@ -3110,5 +3110,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/412cd8d5-5990-43cd-84cc-6c7796b8a76d.dss.hca.json b/test/indexer/data/412cd8d5-5990-43cd-84cc-6c7796b8a76d.dss.hca.json index 8586061d3..c4507901f 100644 --- a/test/indexer/data/412cd8d5-5990-43cd-84cc-6c7796b8a76d.dss.hca.json +++ b/test/indexer/data/412cd8d5-5990-43cd-84cc-6c7796b8a76d.dss.hca.json @@ -3110,5 +3110,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/4426adc5-b3c5-5aab-ab86-51d8ce44dfbe.tdr.hca.json b/test/indexer/data/4426adc5-b3c5-5aab-ab86-51d8ce44dfbe.tdr.hca.json index 2c9aa4a67..3676cbfc0 100644 --- a/test/indexer/data/4426adc5-b3c5-5aab-ab86-51d8ce44dfbe.tdr.hca.json +++ b/test/indexer/data/4426adc5-b3c5-5aab-ab86-51d8ce44dfbe.tdr.hca.json @@ -6,7 +6,6 @@ "version": "2019-05-14T11:01:09.564000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 403, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -17,7 +16,6 @@ "version": "2020-08-10T21:24:26.174274Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 547, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -28,7 +26,6 @@ "version": "2019-10-03T10:54:38.894000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 4304, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -39,7 +36,6 @@ "version": "2019-05-14T12:06:23.503000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 628, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -50,7 +46,6 @@ "version": "2021-04-09T18:59:13.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 1335488, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_tdr.lan/v1_446f8fa3-4244-42ba-b0a1-00e16b426cf4_6783e9b7-f3f3-4e4f-845f-0f3cc9743c91", "crc32c": "776f1ec2", @@ -62,7 +57,6 @@ "version": "2019-05-14T11:29:52.575000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1267, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -73,7 +67,6 @@ "version": "2019-05-14T12:29:57.858000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 317, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -84,7 +77,6 @@ "version": "2019-05-14T11:06:42.648000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 794, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -95,7 +87,6 @@ "version": "2019-05-14T11:59:17.317000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 617, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -106,7 +97,6 @@ "version": "2019-05-16T06:24:31.517373Z", "content-type": "application/pdf; dcp-type=data", "size": 32748, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_tdr.lan/v1_446f8fa3-4244-42ba-b0a1-00e16b426cf4_f2c46f89-130f-4972-8014-74129e7a0ac5", "crc32c": "847325b6", @@ -120,7 +110,6 @@ "version": "2019-05-14T12:20:34.464000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 318, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -131,7 +120,6 @@ "version": "2020-08-10T21:24:26.174274Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 350, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -142,7 +130,6 @@ "version": "2020-08-10T21:24:26.174274Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 2123, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -153,7 +140,6 @@ "version": "2019-05-14T12:18:53.532000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 382, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -164,7 +150,6 @@ "version": "2019-05-14T11:01:09.596000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 403, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -175,7 +160,6 @@ "version": "2020-08-10T21:24:26.174274Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 354, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -186,7 +170,6 @@ "version": "2019-05-16T06:24:31.828599Z", "content-type": "application/pdf; dcp-type=data", "size": 61134, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_tdr.lan/v1_446f8fa3-4244-42ba-b0a1-00e16b426cf4_f80622ef-aba2-460a-adcf-d2017bb54284", "crc32c": "3658ec51", @@ -200,7 +183,6 @@ "version": "2019-05-14T12:26:53.666000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 315, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -211,7 +193,6 @@ "version": "2021-04-09T18:59:14.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 1683777, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_tdr.lan/v1_446f8fa3-4244-42ba-b0a1-00e16b426cf4_3e8ae9cf-cb0c-40db-adf9-29289d2bceed", "crc32c": "663a65bd", @@ -223,7 +204,6 @@ "version": "2019-05-16T06:24:31.672118Z", "content-type": "application/pdf; dcp-type=data", "size": 29230, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_tdr.lan/v1_446f8fa3-4244-42ba-b0a1-00e16b426cf4_4f8be791-addf-4633-991f-fdeda3bac8c8", "crc32c": "b9364bfa", @@ -237,7 +217,6 @@ "version": "2019-05-14T11:06:42.695000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -248,7 +227,6 @@ "version": "2019-05-14T11:01:15.816000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 407, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -259,7 +237,6 @@ "version": "2019-05-16T02:50:21.018890Z", "content-type": "application/gzip; dcp-type=data", "size": 718443, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_tdr.lan/v1_446f8fa3-4244-42ba-b0a1-00e16b426cf4_0800619e-5da7-4a4d-a082-3953ddc3e7fa", "crc32c": "b679ed09", @@ -273,7 +250,6 @@ "version": "2019-05-14T11:06:42.648000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 758, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -284,7 +260,6 @@ "version": "2019-05-14T12:13:41.926000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 382, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -295,7 +270,6 @@ "version": "2019-05-16T02:50:21.322397Z", "content-type": "application/gzip; dcp-type=data", "size": 761919, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_tdr.lan/v1_446f8fa3-4244-42ba-b0a1-00e16b426cf4_dc202bb3-425a-405f-99bd-75ac07a33131", "crc32c": "0127ea62", @@ -309,7 +283,6 @@ "version": "2019-05-14T11:06:42.781000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 590, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1044,5 +1017,29 @@ ] } ] - } + }, + "stitched": [ + "01a1d04b-05d0-4904-b627-68b0dc02bc17", + "201ae4d0-c7c6-4777-947f-18f5268884b6", + "3211ef8f-a60c-4892-ae55-91d6752dcd75", + "33e31f6f-fe78-45bd-ae57-10d2d14253cf", + "5b503dcb-dca6-4e4f-988b-f7100c030dc5", + "5d82b884-7db4-47fa-9ccd-03054065c509", + "6578c322-7060-4c82-8469-9e54100e6b44", + "6f5ddf2c-382d-4c0a-a506-3a5286067c83", + "7a015307-6db9-541f-aaae-db9fdb41000f", + "8f8b9587-237f-4995-9461-c96eac53d615", + "a06cb5d5-2675-4d64-aeb8-79e0103715f3", + "bf92ef4a-c422-44fb-bfc1-c2f86528b86b", + "c0d18b81-0b54-4a11-864b-cd3f43b7e7bf", + "c8e93df7-2623-5e86-890a-aca3e925795e", + "cd8e02d1-d0f9-4094-9a31-329931df60dc", + "dd7f3d64-4b79-48f0-9d8c-4324594fe820", + "e738a267-87fc-4070-abc7-b3be6442c6d0", + "ebf2947d-76d2-405b-a559-68c6ebb1b2d5", + "eca2ab79-ad61-411f-815a-4f6d936d992b", + "ee7404a4-c183-4a75-8bd1-34b5fc140e81", + "f4132e3a-c468-4ca3-ad7b-b97b61054151", + "fcba26aa-658c-4120-ab31-cc5a5a00f759" + ] } \ No newline at end of file diff --git a/test/indexer/data/4afbb0ea-81ad-49dc-9b12-9f77f4f50be8.dss.hca.json b/test/indexer/data/4afbb0ea-81ad-49dc-9b12-9f77f4f50be8.dss.hca.json index 6c391784d..cb038433c 100644 --- a/test/indexer/data/4afbb0ea-81ad-49dc-9b12-9f77f4f50be8.dss.hca.json +++ b/test/indexer/data/4afbb0ea-81ad-49dc-9b12-9f77f4f50be8.dss.hca.json @@ -12796,5 +12796,6 @@ "describedBy": "https://schema.humancellatlas.org/bundle/1.0.0/links", "schema_version": "1.0.0", "schema_type": "link_bundle" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/4b03c1ce-9df1-5cd5-a8e4-48a2fe095081.dss.hca.json b/test/indexer/data/4b03c1ce-9df1-5cd5-a8e4-48a2fe095081.dss.hca.json index 10a3d0b1a..a74884da3 100644 --- a/test/indexer/data/4b03c1ce-9df1-5cd5-a8e4-48a2fe095081.dss.hca.json +++ b/test/indexer/data/4b03c1ce-9df1-5cd5-a8e4-48a2fe095081.dss.hca.json @@ -6,7 +6,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 656, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -17,19 +16,18 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/zip; dcp-type=data", "size": 15535233, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_47bc2618-c6e0-4352-8350-bd5ccf7748f5", "crc32c": "5bf9776f", "sha256": "053074e25a96a463c081e38bcd02662ba1536dd0cb71411bd111b8a2086a03e1" }, { + "name": "supplementary_file_1.json", "uuid": "5b465aad-0981-5152-b468-e615e20f5884", "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 656, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -40,7 +38,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/zip; dcp-type=data", "size": 7570475, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3d334510-824b-4a28-8205-03fb50744c01", "crc32c": "c8c42fc3", @@ -52,7 +49,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 656, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -63,7 +59,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/zip; dcp-type=data", "size": 38722784, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7337ebf7-0428-4a49-bb8d-755b88aa6e8c", "crc32c": "82ee1217", @@ -75,7 +70,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 656, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -86,7 +80,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/zip; dcp-type=data", "size": 118250749, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_456d748a-6823-4225-871f-acf42c9624ea", "crc32c": "15b69eed", @@ -98,7 +91,6 @@ "version": "2019-09-13T08:37:53.825000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 11767, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -109,7 +101,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 656, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -120,7 +111,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/zip; dcp-type=data", "size": 69813802, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8c9a8805-d265-4767-8294-76f269dd18c8", "crc32c": "4f3d0c47", @@ -132,7 +122,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 651, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -143,7 +132,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/octet-stream; dcp-type=data", "size": 2300969, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8167c570-ced0-42cd-b7cf-3a18accec2d9", "crc32c": "42fcdb28", @@ -155,7 +143,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 656, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -166,7 +153,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/zip; dcp-type=data", "size": 187835236, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bd2f1c8c-91bf-479a-9cc4-2776a5b19260", "crc32c": "0209e859", @@ -178,7 +164,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 656, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -189,7 +174,6 @@ "version": "2021-02-10T16:56:40.419579Z", "content-type": "application/zip; dcp-type=data", "size": 17985905, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e36038df-51fd-4939-b65a-1241b00e98e2", "crc32c": "a21bdb72", @@ -849,5 +833,6 @@ ] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/4da04038-adab-59a9-b6c4-3a61242cc972.dss.hca.json b/test/indexer/data/4da04038-adab-59a9-b6c4-3a61242cc972.dss.hca.json index 805546939..0ed08faae 100644 --- a/test/indexer/data/4da04038-adab-59a9-b6c4-3a61242cc972.dss.hca.json +++ b/test/indexer/data/4da04038-adab-59a9-b6c4-3a61242cc972.dss.hca.json @@ -727,5 +727,6 @@ ], "schema_type": "links", "schema_version": "3.1.0" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/56a338fe-7554-4b5d-96a2-7df127a7640b.dss.hca.json b/test/indexer/data/56a338fe-7554-4b5d-96a2-7df127a7640b.dss.hca.json index b5359ad6e..097d41d96 100644 --- a/test/indexer/data/56a338fe-7554-4b5d-96a2-7df127a7640b.dss.hca.json +++ b/test/indexer/data/56a338fe-7554-4b5d-96a2-7df127a7640b.dss.hca.json @@ -580,5 +580,6 @@ "describedBy": "https://schema.humancellatlas.org/bundle/1.0.0/links", "schema_version": "1.0.0", "schema_type": "link_bundle" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/587d74b4-1075-4bbf-b96a-4d1ede0481b2.dss.hca.json b/test/indexer/data/587d74b4-1075-4bbf-b96a-4d1ede0481b2.dss.hca.json index bb0cb58b2..fc7618848 100644 --- a/test/indexer/data/587d74b4-1075-4bbf-b96a-4d1ede0481b2.dss.hca.json +++ b/test/indexer/data/587d74b4-1075-4bbf-b96a-4d1ede0481b2.dss.hca.json @@ -2138,5 +2138,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/79fa91b4-f1fc-534b-a935-b57342804a70.2020-12-10T10:30:00.000000Z.dss.hca.json b/test/indexer/data/79fa91b4-f1fc-534b-a935-b57342804a70.2020-12-10T10:30:00.000000Z.dss.hca.json index 26154b0f7..8b4844b98 100644 --- a/test/indexer/data/79fa91b4-f1fc-534b-a935-b57342804a70.2020-12-10T10:30:00.000000Z.dss.hca.json +++ b/test/indexer/data/79fa91b4-f1fc-534b-a935-b57342804a70.2020-12-10T10:30:00.000000Z.dss.hca.json @@ -6,7 +6,6 @@ "version": "2019-10-22T17:46:02.113000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 704, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -17,7 +16,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -28,7 +26,6 @@ "version": "2019-10-22T17:46:06.177000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -39,7 +36,6 @@ "version": "2019-10-22T17:46:04.919000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -50,7 +46,6 @@ "version": "2019-10-22T17:46:01.981000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1110, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -61,7 +56,6 @@ "version": "2019-10-22T17:46:02.097000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 938, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -72,7 +66,6 @@ "version": "2019-10-22T19:46:28.778000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 446, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -83,7 +76,6 @@ "version": "2019-10-23T14:49:35.991570Z", "content-type": "application/gzip; dcp-type=data", "size": 7934794716, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_7d899eb7-411e-4a83-ac78-d4f656f06916", "crc32c": "661e7ca7", @@ -97,7 +89,6 @@ "version": "2019-10-23T14:49:36.039396Z", "content-type": "application/gzip; dcp-type=data", "size": 34998841412, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_fa1c9793-47ae-43c9-8297-39fd1a19e074", "crc32c": "3b1ce216", @@ -111,7 +102,6 @@ "version": "2019-10-22T17:46:06.486000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -122,7 +112,6 @@ "version": "2019-10-22T17:46:02.644000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -133,7 +122,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -144,7 +132,6 @@ "version": "2019-10-22T17:46:06.278000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -155,7 +142,6 @@ "version": "2019-10-22T19:55:25.167000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 382, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -166,7 +152,6 @@ "version": "2021-02-04T15:19:30.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 69727417013, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_49096abc-210a-455f-9e40-48f030c2077c", "crc32c": "1747a06c", @@ -178,7 +163,6 @@ "version": "2019-10-22T17:46:02.024000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 773, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -189,7 +173,6 @@ "version": "2019-10-22T17:46:04.924000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -200,7 +183,6 @@ "version": "2021-02-04T15:10:36.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 16753121529, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_3db9d46a-5051-4f55-9f31-52447eed331f", "crc32c": "ee74c898", @@ -212,7 +194,6 @@ "version": "2019-10-23T14:49:42.059197Z", "content-type": "application/gzip; dcp-type=data", "size": 15394324425, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_17865249-e2e9-41e0-b9da-9559553b8891", "crc32c": "859e4373", @@ -226,7 +207,6 @@ "version": "2019-10-22T17:46:05.065000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -237,7 +217,6 @@ "version": "2021-02-04T15:37:35.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 975562661, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_40a0e293-6b55-4cbc-a439-045fca6bb596", "crc32c": "c3003233", @@ -249,7 +228,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -260,7 +238,6 @@ "version": "2019-10-23T14:49:36.081789Z", "content-type": "application/gzip; dcp-type=data", "size": 13195642686, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_2b244595-1db8-4518-9d02-0b380f1413b6", "crc32c": "1dd1feab", @@ -274,7 +251,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -285,7 +261,6 @@ "version": "2019-10-23T14:49:36.882952Z", "content-type": "application/gzip; dcp-type=data", "size": 14223220971, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_6fe20b20-f479-4139-b366-5f78f7077cf9", "crc32c": "3f831589", @@ -299,7 +274,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -310,7 +284,6 @@ "version": "2019-10-22T20:00:22.379000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -321,7 +294,6 @@ "version": "2019-10-22T17:46:02.061000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1108, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -332,7 +304,6 @@ "version": "2019-10-22T17:46:04.915000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -343,7 +314,6 @@ "version": "2019-10-22T19:56:54.931000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -354,7 +324,6 @@ "version": "2019-10-22T17:46:06.071000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -365,7 +334,6 @@ "version": "2019-10-23T14:49:39.474413Z", "content-type": "application/gzip; dcp-type=data", "size": 2076738629, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_eee48cb1-c0c3-491c-9620-112b6ec43d44", "crc32c": "d8abbfbc", @@ -379,7 +347,6 @@ "version": "2019-10-22T20:52:15.350000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -390,7 +357,6 @@ "version": "2019-10-22T17:46:05.371000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -401,7 +367,6 @@ "version": "2019-10-22T17:46:02.077000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 704, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -412,7 +377,6 @@ "version": "2019-10-22T20:00:50.357000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -423,7 +387,6 @@ "version": "2019-10-22T17:46:02.024000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 775, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -434,7 +397,6 @@ "version": "2019-10-22T19:46:28.764000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 392, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -445,7 +407,6 @@ "version": "2019-10-23T14:49:36.895477Z", "content-type": "application/gzip; dcp-type=data", "size": 2067151684, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_85cd64c9-06ff-45ef-9a76-3f5569522588", "crc32c": "bc98290a", @@ -459,7 +420,6 @@ "version": "2021-02-04T15:38:21.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1020032321, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_057a1815-412f-4dd3-a698-77f2e4352644", "crc32c": "30fda154", @@ -471,7 +431,6 @@ "version": "2019-10-23T14:49:36.297060Z", "content-type": "application/gzip; dcp-type=data", "size": 2679523371, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_7ea572fe-4191-462b-9f7b-e9c8ba1e14c4", "crc32c": "d70329af", @@ -485,7 +444,6 @@ "version": "2019-10-23T14:49:37.778548Z", "content-type": "application/pdf; dcp-type=data", "size": 25085, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_f2eb6276-a869-4b6b-bea5-425d23e6da9e", "crc32c": "77fd5f9a", @@ -499,7 +457,6 @@ "version": "2019-10-23T14:49:36.819981Z", "content-type": "application/gzip; dcp-type=data", "size": 8452812794, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_3e64eba0-f87b-4ab8-abf9-4675dbe50563", "crc32c": "a533086d", @@ -513,7 +470,6 @@ "version": "2019-10-22T17:46:04.931000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -524,7 +480,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -535,7 +490,6 @@ "version": "2019-10-22T19:46:28.769000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 414, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -546,7 +500,6 @@ "version": "2019-10-23T14:49:36.110149Z", "content-type": "application/gzip; dcp-type=data", "size": 44847611151, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_0518141a-d26a-4772-bfb8-f0e7c5e9a748", "crc32c": "f24a27cd", @@ -560,7 +513,6 @@ "version": "2021-02-04T15:28:41.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 302192003, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_e44813aa-0c04-4ae0-9728-7d5e05596a02", "crc32c": "599e199f", @@ -572,7 +524,6 @@ "version": "2019-10-23T14:49:36.963262Z", "content-type": "application/pdf; dcp-type=data", "size": 35613, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_93abe8d3-4293-4006-90c1-774141002547", "crc32c": "6db5a543", @@ -586,7 +537,6 @@ "version": "2019-10-22T19:56:55.149000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -597,7 +547,6 @@ "version": "2019-10-22T19:57:02.257000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -608,7 +557,6 @@ "version": "2019-10-22T19:54:54.409000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -619,7 +567,6 @@ "version": "2019-10-23T14:49:38.876464Z", "content-type": "application/gzip; dcp-type=data", "size": 239603992, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_4b1ef4c0-7b14-4797-984e-0db785288d24", "crc32c": "10e6b4ec", @@ -633,7 +580,6 @@ "version": "2019-10-22T17:46:04.933000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -644,7 +590,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -655,7 +600,6 @@ "version": "2019-10-23T14:49:35.241234Z", "content-type": "application/gzip; dcp-type=data", "size": 9055188586, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_629386e6-bb2d-444f-a318-2d0457557d29", "crc32c": "b0041fe6", @@ -669,7 +613,6 @@ "version": "2019-10-23T14:49:36.795211Z", "content-type": "application/gzip; dcp-type=data", "size": 29407193048, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_c2564d1f-cbac-4019-8c0c-ffa442631249", "crc32c": "86874a9b", @@ -683,7 +626,6 @@ "version": "2021-02-26T16:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 401, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -694,7 +636,6 @@ "version": "2019-10-23T14:49:35.155466Z", "content-type": "application/gzip; dcp-type=data", "size": 8729012923, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_e72919b0-2a69-4d45-b303-0c952d833eb1", "crc32c": "8c4558d7", @@ -708,7 +649,6 @@ "version": "2019-10-22T20:07:27.579000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -719,7 +659,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -730,7 +669,6 @@ "version": "2019-10-22T17:46:04.994000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -741,7 +679,6 @@ "version": "2019-10-22T17:46:02.166000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 928, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -752,7 +689,6 @@ "version": "2019-10-22T19:54:17.416000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -763,7 +699,6 @@ "version": "2019-10-22T17:46:01.992000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 775, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -774,7 +709,6 @@ "version": "2019-10-22T17:46:02.092000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 704, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -785,7 +719,6 @@ "version": "2021-02-04T15:30:21.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 432926914, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_dc1ce6b2-85d2-41ff-a709-c2fa1253b80b", "crc32c": "1303acc0", @@ -797,7 +730,6 @@ "version": "2021-02-04T15:18:45.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37125601530, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_9533c103-24a1-452e-be8e-623a43ce8b93", "crc32c": "ff8963ff", @@ -809,7 +741,6 @@ "version": "2021-02-04T15:30:01.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 425012253, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_d57f7126-bd4f-461c-a03f-6ef76027c501", "crc32c": "bdc8f0d2", @@ -821,7 +752,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -832,7 +762,6 @@ "version": "2019-10-22T19:56:40.411000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -843,7 +772,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -854,7 +782,6 @@ "version": "2019-10-22T17:46:04.893000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -865,7 +792,6 @@ "version": "2019-10-22T17:46:04.911000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -876,7 +802,6 @@ "version": "2021-02-04T15:36:40.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 904118285, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_b0f4167a-ca3c-44e4-b987-383416f450c5", "crc32c": "7e417f16", @@ -888,7 +813,6 @@ "version": "2019-10-22T17:46:06.381000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -899,7 +823,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -910,7 +833,6 @@ "version": "2019-10-22T17:46:05.281000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -921,7 +843,6 @@ "version": "2019-10-22T17:46:05.013000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -932,7 +853,6 @@ "version": "2019-10-22T17:46:02.700000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -943,7 +863,6 @@ "version": "2021-02-04T15:20:15.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 19858781768, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_9fd05989-ccc1-4dcf-b613-a7e955d97d1c", "crc32c": "3d0fd311", @@ -955,7 +874,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -966,7 +884,6 @@ "version": "2019-10-22T19:55:00.661000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -977,7 +894,6 @@ "version": "2019-10-22T17:46:02.100000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 704, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -988,7 +904,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -999,7 +914,6 @@ "version": "2019-10-22T17:46:02.079000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 938, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1010,7 +924,6 @@ "version": "2019-10-22T17:46:01.986000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 773, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1021,7 +934,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1032,7 +944,6 @@ "version": "2019-10-22T17:46:02.161000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 773, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1043,7 +954,6 @@ "version": "2021-02-04T15:34:25.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 745509487, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_1c903a50-02ad-4e73-8ec2-ddb70e460ff2", "crc32c": "5fc8c565", @@ -1055,7 +965,6 @@ "version": "2021-02-04T15:42:04.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1270248608, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_2fa6bbe3-76b7-4762-8078-90fcf0638da7", "crc32c": "67682c74", @@ -1067,7 +976,6 @@ "version": "2019-10-22T20:38:00.788000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1078,7 +986,6 @@ "version": "2019-10-22T19:56:44.768000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1089,7 +996,6 @@ "version": "2021-05-24T12:00:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 447, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -1100,7 +1006,6 @@ "version": "2019-10-22T20:01:11.161000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1111,7 +1016,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1122,7 +1026,6 @@ "version": "2019-10-22T17:46:02.057000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 775, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1133,7 +1036,6 @@ "version": "2019-10-23T14:49:36.492952Z", "content-type": "application/gzip; dcp-type=data", "size": 2727613148, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_4f139691-1ff3-45a3-bd6d-580f98c5337a", "crc32c": "7a44573c", @@ -1147,7 +1049,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1158,7 +1059,6 @@ "version": "2019-10-22T17:46:06.707000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1169,7 +1069,6 @@ "version": "2019-10-23T14:49:36.319957Z", "content-type": "application/gzip; dcp-type=data", "size": 236997583, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_211568c0-0c9d-4f5d-a556-66e340fa3ca6", "crc32c": "d11e0400", @@ -1183,7 +1082,6 @@ "version": "2019-10-23T14:49:35.964355Z", "content-type": "application/gzip; dcp-type=data", "size": 2728310745, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_b1dc2cd1-1715-42ed-9b7e-863137bdfd13", "crc32c": "11a4f342", @@ -1197,7 +1095,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1208,7 +1105,6 @@ "version": "2019-10-22T20:35:14.291000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1219,7 +1115,6 @@ "version": "2019-10-22T19:54:21.561000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1230,7 +1125,6 @@ "version": "2021-02-04T15:39:46.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1127115181, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_cce3cc61-0b6a-462c-88f9-5b7d0023a8e4", "crc32c": "7e6a6128", @@ -1242,7 +1136,6 @@ "version": "2021-02-04T15:19:14.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 18307641836, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_a9756190-47db-43a0-9774-c6101bd660f4", "crc32c": "7c5a064d", @@ -1254,7 +1147,6 @@ "version": "2019-10-22T19:59:53.780000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1265,7 +1157,6 @@ "version": "2021-02-04T15:34:14.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 698572304, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_9e44a014-7418-476f-86d2-12fbd7773868", "crc32c": "40b3fbbf", @@ -1277,7 +1168,6 @@ "version": "2019-10-23T14:49:36.612035Z", "content-type": "application/gzip; dcp-type=data", "size": 30748549353, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_72f32f88-85b3-42e2-93c9-6438fb977a92", "crc32c": "8f32aedb", @@ -1291,7 +1181,6 @@ "version": "2019-10-22T17:46:04.938000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1302,7 +1191,6 @@ "version": "2019-10-22T17:46:04.885000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1313,7 +1201,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1324,7 +1211,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1335,7 +1221,6 @@ "version": "2019-10-22T19:54:08.351000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 382, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1346,7 +1231,6 @@ "version": "2021-02-04T15:19:59.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 38166507058, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_2c1f54bc-43d9-47f8-8afd-63b35ba5037c", "crc32c": "cf26ba03", @@ -1358,7 +1242,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1369,7 +1252,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1380,7 +1262,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1391,7 +1272,6 @@ "version": "2021-02-04T15:18:10.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 2505123988, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_2d66e23a-6a94-4dd9-9a65-1d109e87806f", "crc32c": "3f7dc49c", @@ -1403,7 +1283,6 @@ "version": "2019-10-22T17:46:02.101000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 704, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1414,7 +1293,6 @@ "version": "2019-10-23T14:49:36.225050Z", "content-type": "application/gzip; dcp-type=data", "size": 226815871, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_b2d20048-4e9b-4e25-b609-aa63bef4731a", "crc32c": "d90dd8ae", @@ -1428,7 +1306,6 @@ "version": "2019-10-22T17:46:05.511000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1439,7 +1316,6 @@ "version": "2019-10-22T17:46:01.969000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 767, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1450,7 +1326,6 @@ "version": "2019-10-22T19:46:26.250000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 432, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1461,7 +1336,6 @@ "version": "2019-10-22T17:46:02.098000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 773, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1472,7 +1346,6 @@ "version": "2019-10-22T17:46:05.024000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1483,7 +1356,6 @@ "version": "2019-10-22T17:46:04.988000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1494,7 +1366,6 @@ "version": "2019-10-22T20:44:10.369000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1505,7 +1376,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1516,7 +1386,6 @@ "version": "2019-10-22T17:46:02.166000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1233, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1527,7 +1396,6 @@ "version": "2019-10-23T14:49:34.986762Z", "content-type": "application/gzip; dcp-type=data", "size": 3032736934, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_051a15bb-37c6-44b8-9fde-efad9ab808e8", "crc32c": "fc194b2f", @@ -1541,7 +1409,6 @@ "version": "2019-10-23T14:49:35.505898Z", "content-type": "application/gzip; dcp-type=data", "size": 8263566565, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_da0fa9f8-c22b-42ab-a3b2-20f12a04ba14", "crc32c": "7d369cc7", @@ -1555,7 +1422,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1566,7 +1432,6 @@ "version": "2019-10-23T14:49:38.127172Z", "content-type": "application/pdf; dcp-type=data", "size": 16787, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_dad4f64e-6dcf-4899-934e-a77f534c5c43", "crc32c": "453be99a", @@ -1580,7 +1445,6 @@ "version": "2019-10-22T17:46:02.720000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1591,7 +1455,6 @@ "version": "2021-02-04T15:09:35.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 64709136628, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_e830decc-226a-4983-bb30-8980d80dc524", "crc32c": "a1c6f6d0", @@ -1603,7 +1466,6 @@ "version": "2019-10-22T20:08:07.569000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1614,7 +1476,6 @@ "version": "2019-10-22T20:26:36.167000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1625,7 +1486,6 @@ "version": "2019-10-22T17:46:02.131000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 773, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1636,7 +1496,6 @@ "version": "2019-10-22T19:46:28.777000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 443, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1647,7 +1506,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1658,7 +1516,6 @@ "version": "2019-10-23T14:49:36.424530Z", "content-type": "application/pdf; dcp-type=data", "size": 30667, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_d9dd781d-2be3-4f8e-bef7-cf55b3635c96", "crc32c": "961e1c9f", @@ -1672,7 +1529,6 @@ "version": "2019-10-22T20:00:26.561000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1683,7 +1539,6 @@ "version": "2019-10-22T17:46:05.004000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1694,7 +1549,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1705,7 +1559,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1716,7 +1569,6 @@ "version": "2019-10-22T17:46:02.150000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 775, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1727,7 +1579,6 @@ "version": "2019-10-23T14:49:36.042217Z", "content-type": "application/pdf; dcp-type=data", "size": 29758, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_fa940aec-2887-4197-a994-b45ffa8978da", "crc32c": "4a4fd4b4", @@ -1741,7 +1592,6 @@ "version": "2019-10-22T20:00:07.659000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1752,7 +1602,6 @@ "version": "2019-10-23T14:49:37.075449Z", "content-type": "application/gzip; dcp-type=data", "size": 1461060105, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_a5f28c90-87e0-4aaf-b5b4-116127c53b16", "crc32c": "fa850fec", @@ -1766,7 +1615,6 @@ "version": "2019-10-22T17:46:02.076000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1208, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1777,7 +1625,6 @@ "version": "2019-10-23T14:49:36.041233Z", "content-type": "application/gzip; dcp-type=data", "size": 35757128617, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_78c5e445-715c-4b92-9a42-67d668321872", "crc32c": "4798d142", @@ -1791,7 +1638,6 @@ "version": "2021-02-04T15:37:43.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 989760502, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_24a0b9e0-8128-42e3-b9ad-7c4a2eebe3dd", "crc32c": "c2d99f86", @@ -1803,7 +1649,6 @@ "version": "2021-02-04T16:04:14.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1413771224, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_221dd7d3-c8d9-426a-8d96-bc363688c6f9", "crc32c": "b6456846", @@ -1815,7 +1660,6 @@ "version": "2019-10-22T17:46:04.928000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1826,7 +1670,6 @@ "version": "2021-02-04T15:42:09.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1335835942, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_da4d1f76-1c7e-4bae-97fe-b0901d0a0bdd", "crc32c": "b39eaf46", @@ -1838,7 +1681,6 @@ "version": "2019-10-22T17:46:04.918000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1849,7 +1691,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1860,7 +1701,6 @@ "version": "2019-10-22T19:46:28.769000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 442, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1871,7 +1711,6 @@ "version": "2019-10-23T14:49:37.235823Z", "content-type": "application/gzip; dcp-type=data", "size": 30793890299, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_c80cfe3c-09f8-4a00-80a6-fc88b5f4946c", "crc32c": "e6bd2329", @@ -1885,7 +1724,6 @@ "version": "2019-10-22T20:30:32.880000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1896,7 +1734,6 @@ "version": "2019-10-22T17:46:04.943000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1907,7 +1744,6 @@ "version": "2019-10-22T20:01:04.775000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1918,7 +1754,6 @@ "version": "2019-10-22T20:30:46.345000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1929,7 +1764,6 @@ "version": "2019-10-23T14:49:35.751781Z", "content-type": "application/gzip; dcp-type=data", "size": 5417339650, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_2cc6c72b-9d26-44a4-9171-86856e17a27f", "crc32c": "e5c09532", @@ -1943,7 +1777,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1954,7 +1787,6 @@ "version": "2019-10-22T17:46:04.889000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1965,7 +1797,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1976,7 +1807,6 @@ "version": "2019-10-22T17:46:05.178000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1987,7 +1817,6 @@ "version": "2019-10-22T20:39:59.165000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1998,7 +1827,6 @@ "version": "2019-10-22T17:46:05.824000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2009,7 +1837,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2020,7 +1847,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2031,7 +1857,6 @@ "version": "2019-10-23T14:49:36.685177Z", "content-type": "application/pdf; dcp-type=data", "size": 31682, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_c883c14a-547c-4021-bc47-43f0c2889ce1", "crc32c": "a6250ea1", @@ -2045,7 +1870,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2056,7 +1880,6 @@ "version": "2019-10-22T20:05:50.572000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2067,7 +1890,6 @@ "version": "2019-10-23T14:49:35.249762Z", "content-type": "application/gzip; dcp-type=data", "size": 2783613851, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_b5794a36-08fb-4c4f-93a4-d28d98db8296", "crc32c": "0af708b6", @@ -2081,7 +1903,6 @@ "version": "2019-10-22T17:46:01.992000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1189, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2092,7 +1913,6 @@ "version": "2019-10-23T14:49:35.401133Z", "content-type": "application/gzip; dcp-type=data", "size": 27182622227, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_47ae7a9a-33de-4834-8a28-527ab727d46b", "crc32c": "94c6eb91", @@ -2106,7 +1926,6 @@ "version": "2019-10-23T14:49:36.195057Z", "content-type": "application/gzip; dcp-type=data", "size": 8500881028, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_332f228b-e63c-4c90-aae4-83d282da2225", "crc32c": "76ff6bf3", @@ -2120,7 +1939,6 @@ "version": "2019-10-22T17:46:01.986000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 691, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2131,7 +1949,6 @@ "version": "2021-02-04T15:19:29.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 2682183828, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_36276888-23c4-4d1f-9d75-e0ae4d6b18a9", "crc32c": "a97d1fd6", @@ -2143,7 +1960,6 @@ "version": "2021-02-04T15:18:34.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37113773777, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_b3613a5b-9799-4fc0-af2f-58d562d37cee", "crc32c": "cf3be405", @@ -2155,7 +1971,6 @@ "version": "2019-10-22T17:46:04.822000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2166,7 +1981,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14717, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2177,7 +1991,6 @@ "version": "2019-10-22T19:46:28.777000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 410, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2188,7 +2001,6 @@ "version": "2019-10-23T14:49:35.594638Z", "content-type": "application/gzip; dcp-type=data", "size": 26659901434, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_5bd55a48-bcb3-44c8-aca8-115b77e12da8", "crc32c": "30dfca88", @@ -2202,7 +2014,6 @@ "version": "2019-10-23T14:49:36.207303Z", "content-type": "application/gzip; dcp-type=data", "size": 29570108834, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_55e29ab9-fc1c-4df1-a914-ec3e5fbeb7b0", "crc32c": "5cbe6c0a", @@ -2216,19 +2027,18 @@ "version": "2021-02-04T15:21:25.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 65707445386, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_49e29970-394c-4c91-b20c-13b79c513b0c", "crc32c": "5238ca18", "sha256": "04b3c4a0b85159145d49208536b7020807b022fd9b7a2b031fe7695a1ba317c8" }, { + "name": "sequence_file_29.json", "uuid": "7a058660-f594-4eb5-b02f-bace314f6d76", "version": "2019-10-22T20:01:16.863000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2239,7 +2049,6 @@ "version": "2019-10-22T17:46:04.900000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2250,7 +2059,6 @@ "version": "2019-10-22T17:46:02.168000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 773, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2261,7 +2069,6 @@ "version": "2021-02-04T15:18:31.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 35777068223, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_5166344f-3023-49b1-bba1-267cd05169e6", "crc32c": "916734d4", @@ -2273,7 +2080,6 @@ "version": "2019-10-22T19:55:25.913000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 382, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2284,7 +2090,6 @@ "version": "2019-10-23T14:49:37.725790Z", "content-type": "application/gzip; dcp-type=data", "size": 14201706930, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_49a62425-1266-4bb2-b4af-0e92441041cd", "crc32c": "0fbeedfb", @@ -2298,7 +2103,6 @@ "version": "2019-10-22T17:46:02.148000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 775, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2309,7 +2113,6 @@ "version": "2019-10-22T17:46:04.987000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2320,7 +2123,6 @@ "version": "2021-02-04T15:34:36.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 698042665, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_c28f3965-b1a0-464d-91a5-2f9afbdf92ca", "crc32c": "98229a5d", @@ -2332,7 +2134,6 @@ "version": "2019-10-22T17:46:06.611000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2343,7 +2144,6 @@ "version": "2021-02-04T15:19:56.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 29466887027, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_c96ab730-644c-496c-98e3-8c07a4e30d7e", "crc32c": "f2cc8e97", @@ -2355,7 +2155,6 @@ "version": "2019-10-22T19:57:03.834000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2366,7 +2165,6 @@ "version": "2019-10-22T17:46:02.681000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2377,7 +2175,6 @@ "version": "2019-10-22T19:57:00.375000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2388,7 +2185,6 @@ "version": "2019-10-22T17:46:02.066000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 704, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2399,7 +2195,6 @@ "version": "2019-10-23T14:49:41.743420Z", "content-type": "application/gzip; dcp-type=data", "size": 4492443846, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_2c603cc5-df4e-4291-bb00-c624ec1264db", "crc32c": "554839a4", @@ -2413,7 +2208,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2424,7 +2218,6 @@ "version": "2019-10-23T14:49:35.816042Z", "content-type": "application/gzip; dcp-type=data", "size": 42909587234, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_aff873cd-365b-4a97-bebf-e41724dce1e0", "crc32c": "614a426d", @@ -2438,7 +2231,6 @@ "version": "2019-10-22T17:46:02.099000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 934, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2449,7 +2241,6 @@ "version": "2019-10-22T17:46:02.136000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 937, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2460,7 +2251,6 @@ "version": "2021-02-04T15:18:10.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 38148588923, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_ef8fda31-1a6e-4421-9cbe-ced923d9da85", "crc32c": "76608f7f", @@ -2472,7 +2262,6 @@ "version": "2019-10-22T17:46:02.056000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1114, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2483,7 +2272,6 @@ "version": "2019-10-23T14:49:34.890344Z", "content-type": "application/gzip; dcp-type=data", "size": 2772712768, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_61256863-b124-4819-89fd-77676396e603", "crc32c": "de263e30", @@ -2497,7 +2285,6 @@ "version": "2019-10-22T19:54:09.177000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 382, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2508,7 +2295,6 @@ "version": "2019-10-22T19:57:04.353000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2519,7 +2305,6 @@ "version": "2021-02-04T15:20:20.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 34392353626, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_56d18a52-99a2-40ee-8efe-1dd10e56e8f0", "crc32c": "1374624d", @@ -2531,7 +2316,6 @@ "version": "2019-10-22T20:35:23.748000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2542,7 +2326,6 @@ "version": "2019-10-22T17:46:04.931000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2553,7 +2336,6 @@ "version": "2019-10-23T14:12:53.970000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2564,7 +2346,6 @@ "version": "2021-02-04T15:18:49.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 423142737, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_2af7fd99-c281-4855-8522-467f0f97d206", "crc32c": "eb47f837", @@ -2576,7 +2357,6 @@ "version": "2019-10-22T17:46:02.039000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1114, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2587,7 +2367,6 @@ "version": "2019-10-22T19:46:31.753000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 409, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2598,7 +2377,6 @@ "version": "2019-10-22T17:46:04.897000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2609,7 +2387,6 @@ "version": "2020-12-10T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 522, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -2620,7 +2397,6 @@ "version": "2019-10-22T20:37:50.566000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2631,7 +2407,6 @@ "version": "2019-10-22T17:46:04.925000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2642,7 +2417,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2653,7 +2427,6 @@ "version": "2019-10-22T19:56:45.629000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2664,7 +2437,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2675,7 +2447,6 @@ "version": "2019-10-22T19:56:43.448000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2686,7 +2457,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2697,7 +2467,6 @@ "version": "2019-10-22T20:34:54.646000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2708,7 +2477,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2719,7 +2487,6 @@ "version": "2019-10-22T17:46:01.976000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1053, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2730,7 +2497,6 @@ "version": "2019-10-22T17:46:02.017000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 775, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2741,7 +2507,6 @@ "version": "2019-10-22T20:58:52.013000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2752,7 +2517,6 @@ "version": "2019-10-22T17:46:02.027000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 775, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2763,7 +2527,6 @@ "version": "2019-10-22T17:46:02.049000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1116, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2774,7 +2537,6 @@ "version": "2019-10-22T19:56:38.627000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 382, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2785,7 +2547,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2796,7 +2557,6 @@ "version": "2019-10-22T17:46:04.821000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2807,7 +2567,6 @@ "version": "2019-10-23T14:49:35.806273Z", "content-type": "application/gzip; dcp-type=data", "size": 28636209988, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_730f11f1-a6af-4541-99c7-c8e7e7b70fd3", "crc32c": "2f350f69", @@ -2821,7 +2580,6 @@ "version": "2019-10-22T17:46:02.139000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 775, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2832,7 +2590,6 @@ "version": "2019-10-23T14:49:35.905654Z", "content-type": "application/gzip; dcp-type=data", "size": 30314151414, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_6d1eaef4-b09e-470f-95fa-6e885bb2dfe7", "crc32c": "6ebf1336", @@ -2846,7 +2603,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2857,7 +2613,6 @@ "version": "2019-10-22T17:46:04.893000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2868,7 +2623,6 @@ "version": "2019-10-22T17:46:02.149000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1298, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2879,7 +2633,6 @@ "version": "2021-02-04T15:19:15.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 2580789544, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_41393a0a-8f82-4637-98af-0208016dd721", "crc32c": "4b2de361", @@ -2891,7 +2644,6 @@ "version": "2021-02-04T15:38:21.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1010980009, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_cc2a5f64-27ea-4372-8cc5-0a4dd3421b57", "crc32c": "ee277c19", @@ -2903,7 +2655,6 @@ "version": "2019-10-22T19:59:46.861000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2914,7 +2665,6 @@ "version": "2019-10-22T17:46:04.891000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2925,7 +2675,6 @@ "version": "2021-02-04T15:19:45.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 18231102336, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_d51f7c57-ebe7-4d08-b9eb-0ce0aa5ffe9b", "crc32c": "2b04c689", @@ -2937,7 +2686,6 @@ "version": "2019-10-22T17:46:02.049000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 6869, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -2948,7 +2696,6 @@ "version": "2019-10-22T19:54:07.454000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 382, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2959,7 +2706,6 @@ "version": "2019-10-22T17:46:04.912000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2970,7 +2716,6 @@ "version": "2019-10-22T20:58:38.889000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2981,7 +2726,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2992,7 +2736,6 @@ "version": "2019-10-22T17:46:05.944000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3003,7 +2746,6 @@ "version": "2019-10-23T14:49:37.430555Z", "content-type": "application/pdf; dcp-type=data", "size": 23723, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_bf160bb2-19ab-4784-a54a-1f886e5bb5c6", "crc32c": "2c141f9b", @@ -3017,7 +2759,6 @@ "version": "2019-10-23T14:49:39.066147Z", "content-type": "application/gzip; dcp-type=data", "size": 612566319, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_b9c7367e-cbdf-4ec8-ac4e-034b2ba3e486", "crc32c": "19ef755e", @@ -3031,7 +2772,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3042,7 +2782,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3053,7 +2792,6 @@ "version": "2019-10-22T19:56:49.472000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3064,7 +2802,6 @@ "version": "2019-10-22T17:46:05.005000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3075,7 +2812,6 @@ "version": "2021-02-04T15:22:02.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 65248457241, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_102f41c2-3b37-4ec3-9f8c-0e73ac3c72e3", "crc32c": "ae57f412", @@ -3087,7 +2823,6 @@ "version": "2019-10-23T14:49:35.581314Z", "content-type": "application/gzip; dcp-type=data", "size": 2559298831, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_3d4e8ad6-b672-47ee-a8ab-ff4b725a2db5", "crc32c": "39a4cee4", @@ -3101,7 +2836,6 @@ "version": "2019-10-22T19:56:37.083000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3112,7 +2846,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3123,7 +2856,6 @@ "version": "2019-10-22T17:46:05.700000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3134,7 +2866,6 @@ "version": "2019-10-22T19:57:04.689000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 382, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3145,7 +2876,6 @@ "version": "2019-10-22T17:46:02.129000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1116, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3156,7 +2886,6 @@ "version": "2019-10-23T14:49:36.564794Z", "content-type": "application/gzip; dcp-type=data", "size": 593089466, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_783f9bd5-6a4b-48d2-9ed3-051aced7e436", "crc32c": "c9a8242c", @@ -3170,7 +2899,6 @@ "version": "2019-10-22T17:46:04.833000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3181,7 +2909,6 @@ "version": "2019-10-22T17:46:01.927000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 802, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3192,7 +2919,6 @@ "version": "2021-02-04T15:20:54.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 31094466435, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_c305742c-01a2-4d73-ab49-358c014c55f9", "crc32c": "69c365f0", @@ -3204,7 +2930,6 @@ "version": "2019-10-23T14:49:37.437316Z", "content-type": "application/gzip; dcp-type=data", "size": 4130964219, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_c2ef14bf-fafc-4880-a269-9bff4c99c772", "crc32c": "20988393", @@ -3218,7 +2943,6 @@ "version": "2019-10-22T19:59:27.453000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3229,7 +2953,6 @@ "version": "2021-02-04T15:20:16.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37636723501, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_86c07d53-cc92-46fa-9e07-5a9e4f470c18", "crc32c": "51a1f1c7", @@ -3241,7 +2964,6 @@ "version": "2019-10-23T14:49:36.430227Z", "content-type": "application/gzip; dcp-type=data", "size": 4148481478, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_78c91c18-2f67-4453-80c3-eae2e0993f84", "crc32c": "e6223d9f", @@ -3255,7 +2977,6 @@ "version": "2019-10-22T20:35:37.065000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3266,7 +2987,6 @@ "version": "2019-10-22T19:54:18.671000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3277,7 +2997,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3288,7 +3007,6 @@ "version": "2019-10-22T17:46:02.080000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 705, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3299,7 +3017,6 @@ "version": "2021-02-04T15:20:12.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37372897739, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_1d1eb1ee-1b1e-4b8b-9a19-6097121cb5ba", "crc32c": "b5f6f5af", @@ -3311,7 +3028,6 @@ "version": "2019-10-23T14:49:35.560374Z", "content-type": "application/gzip; dcp-type=data", "size": 30442430986, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_735c31a0-bf71-4641-a931-428a460be807", "crc32c": "e06814b9", @@ -3325,7 +3041,6 @@ "version": "2021-02-04T15:42:49.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1316667030, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_5948132f-fa09-4fe7-8699-3cf073aa1271", "crc32c": "1b82593b", @@ -3337,7 +3052,6 @@ "version": "2019-10-22T19:55:34.020000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 382, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3348,7 +3062,6 @@ "version": "2019-10-22T17:46:02.174000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 773, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3359,7 +3072,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3370,7 +3082,6 @@ "version": "2019-10-23T14:49:36.121618Z", "content-type": "application/gzip; dcp-type=data", "size": 42865041101, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_c48f6982-a8d3-473f-8ce6-8cdbdc2f2f94", "crc32c": "98168bf7", @@ -3384,7 +3095,6 @@ "version": "2019-10-22T20:00:33.199000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3395,7 +3105,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3406,7 +3115,6 @@ "version": "2019-10-22T17:46:04.927000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3417,7 +3125,6 @@ "version": "2020-12-10T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 462, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -3428,7 +3135,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3439,7 +3145,6 @@ "version": "2019-10-22T19:46:26.267000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 432, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3450,7 +3155,6 @@ "version": "2019-10-22T17:46:02.167000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 704, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3461,7 +3165,6 @@ "version": "2019-10-22T19:54:55.955000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3472,7 +3175,6 @@ "version": "2019-10-23T14:49:37.166260Z", "content-type": "application/pdf; dcp-type=data", "size": 25919, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_e45bd9c3-b455-4510-9b6c-8f2ef508bf31", "crc32c": "afd7c65b", @@ -3486,7 +3188,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3497,7 +3198,6 @@ "version": "2019-10-22T17:46:02.055000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 938, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3508,7 +3208,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3519,7 +3218,6 @@ "version": "2019-10-22T17:46:05.001000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3530,7 +3228,6 @@ "version": "2019-10-23T14:49:35.869066Z", "content-type": "application/gzip; dcp-type=data", "size": 30076415799, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_d03c3744-17fb-4404-8690-4472b7a27c5c", "crc32c": "1a8279b5", @@ -3544,7 +3241,6 @@ "version": "2021-02-04T15:41:19.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1298450525, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_3c0fa713-9ded-4f00-830e-6112c64fa587", "crc32c": "a1f23b01", @@ -3556,7 +3252,6 @@ "version": "2019-10-22T17:46:02.039000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 766, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3567,7 +3262,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3578,7 +3272,6 @@ "version": "2019-10-23T14:49:36.268172Z", "content-type": "application/gzip; dcp-type=data", "size": 48816315438, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_0c80fc7f-4737-4794-b0cb-bee804f55303", "crc32c": "e0b7f471", @@ -3592,7 +3285,6 @@ "version": "2019-10-23T14:49:35.987421Z", "content-type": "application/gzip; dcp-type=data", "size": 8648502692, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_830e9413-1e9e-420f-87ce-8f974919b995", "crc32c": "dc634164", @@ -3606,7 +3298,6 @@ "version": "2019-10-22T20:06:38.132000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3617,7 +3308,6 @@ "version": "2019-10-22T20:27:41.045000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3628,7 +3318,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3639,7 +3328,6 @@ "version": "2019-10-22T17:46:05.606000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3650,7 +3338,6 @@ "version": "2019-10-23T14:49:36.910033Z", "content-type": "application/gzip; dcp-type=data", "size": 2010781605, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_b3c6c659-4a08-4fb1-8810-fdfa72256a04", "crc32c": "1ae856d3", @@ -3664,7 +3351,6 @@ "version": "2019-10-23T14:49:36.145573Z", "content-type": "application/gzip; dcp-type=data", "size": 1457701663, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_b20ff1d0-a460-4532-b29a-f455b9c6f26a", "crc32c": "732bb646", @@ -3678,7 +3364,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3689,7 +3374,6 @@ "version": "2019-10-22T17:46:02.104000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 780, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3700,7 +3384,6 @@ "version": "2019-10-22T17:46:02.744000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3711,7 +3394,6 @@ "version": "2019-10-22T20:49:05.917000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3722,7 +3404,6 @@ "version": "2019-10-22T20:52:28.164000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 380, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3733,7 +3414,6 @@ "version": "2019-10-22T17:46:05.015000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3744,7 +3424,6 @@ "version": "2019-10-23T14:49:36.527086Z", "content-type": "application/gzip; dcp-type=data", "size": 8647876508, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_0aff3a74-9c60-4205-bd4a-02b4f6951781", "crc32c": "31ba101d", @@ -3758,7 +3437,6 @@ "version": "2019-10-23T14:49:35.633033Z", "content-type": "application/gzip; dcp-type=data", "size": 5469801433, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_8163cb71-0e5a-4d25-b53b-200267215c80", "crc32c": "1ea8db4f", @@ -3772,7 +3450,6 @@ "version": "2019-10-22T20:39:15.207000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3783,7 +3460,6 @@ "version": "2019-10-22T17:46:04.896000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 320, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3794,7 +3470,6 @@ "version": "2019-10-23T14:49:38.400942Z", "content-type": "application/pdf; dcp-type=data", "size": 21398, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_4a03c9d1-0ab5-4bc1-b1fc-b8203371f9ad", "crc32c": "986d079f", @@ -3808,7 +3483,6 @@ "version": "2021-02-04T15:45:09.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 827698659, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_d6d46c9e-f341-46aa-994c-207822dabc01", "crc32c": "fcdfbbf8", @@ -3820,7 +3494,6 @@ "version": "2019-10-23T14:49:35.268557Z", "content-type": "application/gzip; dcp-type=data", "size": 5339043888, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_4969f015-9667-463e-b6af-b6247f6917cf", "crc32c": "3d9e0aee", @@ -3834,7 +3507,6 @@ "version": "2021-02-04T15:21:05.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 68938633339, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_27649526-f0c7-4f77-aa43-f702ae73d307", "crc32c": "3a71013d", @@ -3846,7 +3518,6 @@ "version": "2019-10-22T17:46:04.927000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3857,7 +3528,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3868,7 +3538,6 @@ "version": "2019-10-22T17:46:02.035000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 775, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3879,7 +3548,6 @@ "version": "2019-10-22T19:59:47.179000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3890,7 +3558,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14717, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3901,7 +3568,6 @@ "version": "2019-10-22T17:46:02.130000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 773, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3912,7 +3578,6 @@ "version": "2019-10-22T17:46:04.904000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3923,7 +3588,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3934,7 +3598,6 @@ "version": "2021-02-04T15:49:34.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1066947865, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_f9b38222-c970-4a93-bee0-cb6ae1b09cb3", "crc32c": "5c0696a6", @@ -3946,7 +3609,6 @@ "version": "2021-02-04T15:23:10.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 755461419, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_bbd2c2af-69a2-4ad2-a821-f38f988781f0", "crc32c": "26f1f7cf", @@ -3958,7 +3620,6 @@ "version": "2019-10-22T17:46:02.662000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3969,7 +3630,6 @@ "version": "2019-10-22T19:59:53.073000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3980,7 +3640,6 @@ "version": "2019-10-22T19:59:15.797000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3991,7 +3650,6 @@ "version": "2019-10-23T14:49:36.592775Z", "content-type": "application/gzip; dcp-type=data", "size": 613836315, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_43812944-7502-45f4-bba2-8040a2c10b80", "crc32c": "c4ec9d5e", @@ -4005,7 +3663,6 @@ "version": "2019-10-22T17:46:02.036000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 705, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4016,7 +3673,6 @@ "version": "2019-10-22T17:46:04.916000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4027,7 +3683,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4038,7 +3693,6 @@ "version": "2019-10-23T14:49:36.362500Z", "content-type": "application/gzip; dcp-type=data", "size": 48573702948, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_061a1498-c142-453c-86ab-cb6004067e6e", "crc32c": "516d0080", @@ -4052,7 +3706,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4063,7 +3716,6 @@ "version": "2019-10-22T20:42:02.299000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 379, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4074,7 +3726,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4085,7 +3736,6 @@ "version": "2019-10-22T17:46:02.129000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 928, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4096,7 +3746,6 @@ "version": "2019-10-23T14:49:36.093968Z", "content-type": "application/gzip; dcp-type=data", "size": 26928156069, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_2c8143db-42be-4e89-a34e-85da1d8b4a2c", "crc32c": "b6b1f27a", @@ -4110,7 +3759,6 @@ "version": "2021-02-04T15:35:28.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 820653081, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_9f91fda7-c7ab-4296-a549-1775c73941ff", "crc32c": "eff7e88e", @@ -4122,7 +3770,6 @@ "version": "2019-10-23T14:49:35.785263Z", "content-type": "application/pdf; dcp-type=data", "size": 27953, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_33bca929-b565-4eb9-a6e1-3726e38ba3a0", "crc32c": "fac67f28", @@ -4136,7 +3783,6 @@ "version": "2019-10-23T14:49:41.497702Z", "content-type": "application/gzip; dcp-type=data", "size": 1516326215, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_de68519a-226f-4038-9a5d-566df275bb3a", "crc32c": "43d9a093", @@ -4150,7 +3796,6 @@ "version": "2019-10-22T19:46:28.777000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4161,7 +3806,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4172,7 +3816,6 @@ "version": "2019-10-23T14:49:35.621545Z", "content-type": "application/gzip; dcp-type=data", "size": 2786677316, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_6f3e8684-4511-47d1-97c5-48579f211b60", "crc32c": "e25ca78f", @@ -4186,7 +3829,6 @@ "version": "2019-10-22T17:46:01.985000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 775, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4197,7 +3839,6 @@ "version": "2019-10-23T14:49:35.514301Z", "content-type": "application/gzip; dcp-type=data", "size": 1353916837, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_a161aadf-a475-4841-b55b-0acec665f554", "crc32c": "5ea82bd2", @@ -4211,7 +3852,6 @@ "version": "2019-10-22T17:46:01.980000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 676, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4222,7 +3862,6 @@ "version": "2019-10-22T17:46:02.025000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 938, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4233,7 +3872,6 @@ "version": "2019-10-22T17:46:02.036000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 937, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4244,7 +3882,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4255,7 +3892,6 @@ "version": "2019-10-23T14:49:36.222729Z", "content-type": "application/gzip; dcp-type=data", "size": 26326625541, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_a00deef8-2ac5-4aff-979d-d2ae5319d703", "crc32c": "ac861c0f", @@ -4269,7 +3905,6 @@ "version": "2019-10-22T17:46:02.047000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 935, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4280,7 +3915,6 @@ "version": "2019-10-22T20:00:02.480000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 381, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4291,7 +3925,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4302,7 +3935,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4313,7 +3945,6 @@ "version": "2019-10-22T19:55:17.232000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 382, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4324,7 +3955,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4335,7 +3965,6 @@ "version": "2021-02-11T23:24:52.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1675405939, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_2473e53e-3daa-4d9c-83f2-435410692c8a", "crc32c": "60aaad4d", @@ -4347,7 +3976,6 @@ "version": "2019-10-23T14:49:35.471867Z", "content-type": "application/gzip; dcp-type=data", "size": 30177323727, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_8e5114bf-5b85-4da8-ae28-f3248f6043dc", "crc32c": "3699dcce", @@ -4361,7 +3989,6 @@ "version": "2019-10-23T14:49:35.793282Z", "content-type": "application/gzip; dcp-type=data", "size": 5338713782, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_d4d2b5f2-28fe-4230-a192-3f176a4039f2", "crc32c": "2be19f36", @@ -4375,7 +4002,6 @@ "version": "2019-10-22T17:46:02.098000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 788, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4386,7 +4012,6 @@ "version": "2019-10-23T14:49:34.767268Z", "content-type": "application/gzip; dcp-type=data", "size": 2612403484, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_6d6ef00d-10da-445d-82d6-294a1832755e", "crc32c": "b9e81614", @@ -4400,7 +4025,6 @@ "version": "2019-10-23T14:49:35.688269Z", "content-type": "application/gzip; dcp-type=data", "size": 2806497828, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_72311a04-e2b5-4773-9cef-337907c2d10b", "crc32c": "28b614d6", @@ -4414,7 +4038,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4425,7 +4048,6 @@ "version": "2019-10-23T14:49:35.820178Z", "content-type": "application/gzip; dcp-type=data", "size": 7926144011, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_bf871462-613c-4247-8d89-e2886436e016", "crc32c": "67796be8", @@ -4439,7 +4061,6 @@ "version": "2019-10-23T14:49:35.077705Z", "content-type": "application/gzip; dcp-type=data", "size": 8193923333, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_6a7c33c7-e101-4a30-8918-621334440bbb", "crc32c": "fb3eee6f", @@ -4453,7 +4074,6 @@ "version": "2019-10-23T14:49:35.543273Z", "content-type": "application/gzip; dcp-type=data", "size": 5489964040, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_a5d777f7-669f-494a-ba55-31788709e50a", "crc32c": "5a88b9ad", @@ -4467,7 +4087,6 @@ "version": "2019-10-23T14:49:35.852293Z", "content-type": "application/gzip; dcp-type=data", "size": 3932810672, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_b4e4823f-5d20-46dd-afa2-853f0f7e51ab_7d9a3911-299d-4915-bd32-b8d5af6871d4", "crc32c": "02cb97d8", @@ -19896,5 +19515,384 @@ ] } ] - } + }, + "stitched": [ + "00ccb65c-2134-4309-9199-bea00ea1d5de", + "0115dbfc-99f2-59b4-8430-75cd79e3c04d", + "01f7c3d0-d4be-432d-aa25-8c7fbce20b49", + "03c1159c-1a7a-4ede-bac4-d2093b260c65", + "05617ca5-c033-40aa-b865-45b34a14bc27", + "0635494f-d45d-48a9-81b1-5f1d4ac15835", + "06e90b33-4403-41e8-b783-e65bf7de982a", + "075284e4-6a7b-45ba-a990-112beefd1296", + "07e479d6-d44a-444e-bd19-7b955e4d0b37", + "082e87ac-5cf6-4bad-bedb-5f6591b8f566", + "09cd4cb6-65e3-44eb-b5b1-796ac895013d", + "0aa931a7-1850-47ff-86f9-2e3b1260cbb3", + "0b52914d-687b-44d1-9a70-a95df55ed502", + "0c8d1b87-0d6e-4e47-8130-1372bfa05c51", + "0d2f92fd-72da-53e6-8035-6b9b2b41a2f6", + "0d6404e4-f507-4c6d-aa26-4c83c058b623", + "0de1f04e-aaf3-4dc7-9869-248e87207d93", + "0df377a4-119b-5600-a3e6-e7c1bc94033f", + "0e9affc6-0257-44d8-8e27-3c723b9c8443", + "0f14c412-5014-4ac0-9a71-858b2f047777", + "0f2bdf51-97c6-5892-b9e7-ad826dbf1321", + "0f9e435b-dbd3-5fd6-9b4e-347433de69b0", + "0fadf81a-30b4-4e70-ba6f-028950d06ec4", + "10439c86-98bb-5009-8374-577a41575424", + "10e05576-100a-48cc-aa83-a30f09514384", + "119ebaa3-a3b6-4cfe-8978-46d93796b9aa", + "121b6c9b-3b12-4fb8-8d98-fba4f1005770", + "125a0c93-3187-463f-990b-1166aeb26e84", + "12995713-3c1b-4e13-a7b9-26d242e9ad71", + "138dcce5-f9a8-497c-9de1-70a289bdc936", + "13a062ba-2b8e-43a1-bc2a-bc17f650b37d", + "1456adad-9a4b-4a80-b115-9813f7a6b93c", + "154ff85c-da53-4b85-b02b-002211631867", + "157ba915-28d7-4d80-89ad-71c8291dbc05", + "15ec2b2a-c3fe-4946-8cf6-9386bb87eec1", + "16a9712a-0a62-4f57-a57f-189992e6070b", + "17aea4fd-cd72-4c36-8ded-d686162804b4", + "182c7357-0ac0-483d-8189-b321cb3e8d74", + "1841191a-cad6-4bb8-b174-f41d94bee738", + "18c7131a-6f18-50a0-a805-04e0f4e2d7aa", + "1932be60-8d3d-412b-86ac-4186ea87326b", + "1a04d1fb-55cc-4fd2-810a-71cf26d1aee9", + "1a625464-2ab2-4d39-a1a5-e4e2240aa1fc", + "1ab8df81-b7c8-4726-8b9b-c9f1d2bcac7e", + "1b675693-2615-519e-bfa7-cc008b0ff6e9", + "1c531e83-02f4-4c00-b161-f186a1b5e1fb", + "1d428c59-694c-4596-a360-a5e857f90635", + "1d8a4488-3c4c-52b1-9912-52f08da57022", + "1e3c935e-a508-47e5-a1a1-da5ad78a4f36", + "1eb30a4b-d595-4142-ae68-0a4ff4281c8d", + "1f50a6ba-90e5-4162-b6ac-6f8d5bfe72cc", + "200f221c-c86e-4c67-9d25-5d8210ae33c6", + "210c7287-2f6e-4a93-8c63-202fa0b596b7", + "2387fc2c-65e4-42ad-b718-6586f88a7183", + "24552395-eef1-405d-a85e-df65c08b8ceb", + "247b3006-918e-49de-9797-df31ffcfe4ca", + "25f7e8ad-e20e-4b7a-99b5-1f3c5bbfdf18", + "289ec28b-ce11-5be8-89ab-92fbceb874a0", + "29a8f5fb-43a8-4f18-9255-f7573e9c4600", + "2b8c990c-4b79-4536-bf5f-1c8e57bff598", + "2b9f7c89-d1c2-53ef-a769-80fec2f7d9e6", + "2c2c943c-1c0e-462c-b630-8a91a1f0fb94", + "2cbca5ef-0850-4c4a-9d24-05454a1060e8", + "2dd22fa3-fe29-4d60-b890-a8ee8b9731ce", + "2dea8819-57bd-4acf-bb26-7a8031df87fb", + "2ffa92e4-d98d-4a94-a059-2251b3b2ea20", + "30e6964e-df3b-5f93-ae18-b49ba08aea26", + "313c30cb-6941-5c2e-8c3e-60c02df4b977", + "316010e4-fdb5-5628-9510-adba0ca80a29", + "32c69d68-1792-53af-9f42-0e97c9afc94b", + "354517f9-c515-401a-a490-9917dea7d3f2", + "362835d6-4ab3-4f0b-8b15-fb7c0fc3311c", + "36bbd76b-b6ab-4c84-a5ec-965af8c40a28", + "37612503-8289-407f-93fa-b2993247a0e0", + "37accfb7-029b-57ba-892f-716f718dc9d2", + "37cad11b-c8c9-4d1f-b715-498b0f8d4b35", + "38a0ef48-9df1-5fef-8eb6-b32fbb67aabd", + "3a20b6a5-6652-4486-86bc-842c7c31c343", + "3aaf2fa3-6cb8-4c04-9a91-eb1e862154ce", + "3c277a01-33b1-4846-8a6d-8103b41a4db5", + "3c480b25-d8d1-5516-96ea-be6547af82ca", + "3cd78fb7-b7bc-5ab1-b122-47585f0023d4", + "3de452b4-1c2a-49d6-80c8-495715921447", + "3de6303a-cff0-444a-a79c-66c4c7ebae8e", + "3e9b54c2-4244-5549-a0ca-ea1524949a86", + "3f646bab-c762-4dbd-8f7b-b374427dac74", + "3fd7eed2-b7c5-43eb-b0cb-314efb1d8589", + "40905b7b-03ca-52b1-9ac7-76e350824c88", + "41c9fb6c-664e-4d51-94ae-a36dfb25073e", + "41d76180-77ac-5cb3-92bd-eb867d8c52c9", + "4246f2be-5949-525d-a4ba-491176f13f69", + "427003bc-a728-469a-aa8a-61bc2309956f", + "4294907c-ba62-4597-845a-07fb788a2bb0", + "438f185f-0e8b-4b34-b03f-7491552ef9b7", + "44175006-91f3-5d95-9a08-b33e08ed1ae3", + "442f68c7-502a-4fc7-a3b8-94e9574cd22d", + "4471ff2f-9528-4ab0-a422-78ed0852e4a5", + "448173cc-00c9-56e1-9bde-a8136521dc6f", + "44b8ad82-1109-4543-a534-a85b34c2c301", + "44d21c39-6acb-483a-99be-8fe8e7a5d208", + "475885e1-5b81-452f-a939-91dc9b207f5b", + "4785d42e-648a-4d1d-9b1e-677cf5486850", + "47bb0f79-31f9-42a8-ac34-4be08ef807d9", + "48cb1c07-fb20-453a-bb98-18dfd9eb4eb8", + "49e80111-c3ae-5c09-b484-18cf66b7c7fd", + "4ad98f14-2ff2-53de-9c97-50fbcc9a6e3e", + "4bf5245d-0168-48b5-83b8-c6aabdcf1a46", + "4c12888b-2a1a-52c9-b0fa-499ef34adc21", + "4c46c08e-5552-4c32-8e39-5bd489718c8c", + "4cc61094-94b9-4d21-a8f8-edbd73129049", + "4cd84763-27c6-42ef-8577-613d3665bc01", + "4d411b9c-06de-5805-bb7f-eca54e1c42cc", + "4db3cc2d-f0ac-5cdf-8656-4c9b096a0092", + "4e80d841-15c5-4da1-9660-4400b41d0536", + "4fc5aa24-c7b1-511c-b6a2-6d8366b3b025", + "50547806-882a-5915-b217-5bbc692239b9", + "509608f1-e1d5-561c-b0d6-54348f0adb29", + "509c765d-cf97-5166-ae8f-b0c26a42f759", + "50de5887-5ab7-5e8f-a6da-81b52089e98b", + "51aab3dd-5ca8-4a83-b821-99fd3604f8e7", + "51c769a9-63ad-42bc-b3e5-eba1d9ce843f", + "51fb7eb7-a422-482e-a98e-c9e6f9628e97", + "5238fd9b-f4c2-46d9-bb44-6cebc9371a52", + "53089129-f71b-412c-ae2d-f7e8e50044c3", + "5355142f-f257-49bb-9589-2fd932361519", + "548a75b4-ba45-4700-b7bb-656c3995c316", + "55a939d9-dab5-49e3-82cc-bba3796800ed", + "5646ff87-0427-4af5-a1ad-e072e6187c23", + "566d48d1-fee9-45a5-80e8-b88f9305e0b2", + "56a5a34b-1362-4d3c-ae6f-b5f01d4eabc0", + "56b327ac-557e-4a07-90a7-4f167d241773", + "5756416b-6522-41da-8db3-977c3f707a0e", + "57c38b28-848d-5716-8c68-a3b3222aac6e", + "58630e07-76d1-4d12-af1f-8a15fef59e1c", + "5878b562-defb-486f-8fa2-f4573bcd7322", + "5935370b-5330-5787-b1cf-51987f5957d5", + "599a4315-3b4b-4c42-9d68-961a2396cae5", + "59e40d0b-dfbc-4668-bb8a-d0b39d25ca88", + "5a6285f9-6133-47ce-ae8a-fbe67160af21", + "5b84bbca-dfde-462c-9c79-c914f32e03c4", + "5bb0243e-0764-5a77-ae7d-1638ebfd27b0", + "5bb24f6f-34f5-4955-80b1-dd7ceb6d55a6", + "5be64c5b-766b-43ad-ab5a-467ef1c47cc4", + "5d2624e6-d55b-4dac-8e59-55e165900fd6", + "5ef41564-04c4-5260-b974-9b37fcc73e35", + "5f89237b-83d8-5b2b-880c-2fc4f0c1db1c", + "5fbd4bb4-e761-4345-99b8-bd5e141a8b94", + "602081b8-1b64-430c-8c85-093e21e1c972", + "6033d2ea-8c96-4f43-956c-b9701f63ed66", + "604b4322-f029-4bcd-84e1-e234017cda2f", + "60d4e19b-aa28-4ed1-9ac5-1db33d287b0a", + "6144552f-b4b0-460b-b5a6-7bd3035d2f1b", + "615aea9b-2bc7-54b8-97c5-a16ac697f790", + "61618af9-079f-578d-a834-8ec482403b17", + "61c9f4df-f92b-4d7c-894a-9150718ab39a", + "61f531af-0cc2-5f69-8b93-bc04f8f29279", + "6235a244-ae17-402f-b944-d67aa600aef8", + "62e9f752-eab4-48c8-9fba-95b847207ee5", + "63a1acfd-ca01-451d-a41d-d3a7ffd1655b", + "6447d1eb-f1ee-44f1-9fc6-1a0bb39677fd", + "64c1be0b-56b7-4d5a-b7c8-e8f7f88e0427", + "64eb5fef-b257-47af-a797-7808f1aa0a0c", + "6500ad38-5b46-4186-9208-6a9494679191", + "65128ed2-a70b-4b04-8591-4303acef31e3", + "657b9016-387f-4951-bf3d-4b749f4a4f23", + "67f7a04b-7b04-5bb2-a492-efb98f819e97", + "688b5dd2-f1cb-4268-85a8-ec8431c25df6", + "689bcda6-eb41-588a-b4a9-8827e22b1856", + "6a0f0064-ba67-43d6-985e-68d8edcf8c0b", + "6c002a62-76b3-4578-8afd-c88cfd62a682", + "6d273f72-f55c-4c8e-b91e-29e762194c3f", + "6ef15cb9-46a9-4cf2-9fda-d536641bc6c5", + "6f7195ee-5bcd-5b4d-a3a7-a6ad404edba9", + "6ff514d2-c9aa-482a-ba40-da02a5c5fac8", + "70341236-6291-4b53-b161-17bca3b50cb9", + "70d226a8-01f4-4955-8293-210a6ec78920", + "70fa85f0-3a54-4bb0-a7b7-061575f963e3", + "71efd7ce-0ec0-4423-9eb2-9bd42f40a33f", + "722fafff-d2ec-4a1f-b36b-70f7cc6d2192", + "72932e5b-c25b-401c-8c48-aab023661968", + "741ffe1e-7bb1-4307-9d55-9ab77258314c", + "7512e2e0-ac08-5d56-b2a4-d553bc24227c", + "75150c4f-0ce4-56b1-a4d8-2342f5d4a3b8", + "758b97fb-d92f-484f-8160-d85b3d1aed7b", + "75eaaa73-142a-46db-8db1-6a0d7e487a0f", + "77700dee-f8b3-40d1-b527-e0e53562eb49", + "791a846a-1241-4b0c-a3e3-24160fc321ee", + "7923e38e-8649-41b7-b0a6-ac901630be3c", + "79c607a7-8bf6-5288-831d-715ef9e450d5", + "7a058660-f594-4eb5-b02f-bace314f6d76", + "7a625379-2c08-4bde-aa32-1081132bdeb7", + "7aa5c9c1-6540-4f6a-88c6-859d1bef4851", + "7c7a336b-a771-5257-a7b2-da2d87896ea4", + "7d29fb39-c214-4edd-9dec-093dcc527429", + "7e63de17-6e27-4a78-b029-a8db8cc121a6", + "7ef94c74-d428-4588-89ff-45378d5b0017", + "7f8aa404-55fb-4439-ab20-f9fc2e92440f", + "824111f5-d9fa-5ca8-9329-0f172332c98e", + "83b474d3-c20f-48f6-95a0-b0fa2269f14d", + "855fdb57-1c0e-5875-aef5-f6e14876b15c", + "85849811-ff50-46ec-9245-79140a1ca705", + "875e0856-b5e7-4ae2-a1d0-6b5d408a9472", + "8831df7b-25f6-482e-9e54-5c53bdda4d53", + "89849bc8-4b60-45a5-b1b0-869e29625599", + "8a9a73f6-9a38-494a-84b2-2d0e11b60c17", + "8b643b3c-3000-5cf4-8aa1-64a4b9d68abf", + "8bee60a4-c810-4157-852d-f6510859aad6", + "8c0ef0ae-0687-4f2a-8a27-d833b7032a26", + "8c1b5489-7bf1-40c0-ba60-5e6b079e108a", + "8d2bd05e-52ae-5fae-bdcd-97e9cd74a62b", + "8ef48580-339e-4c23-b5bd-04c8692cab5f", + "8f2afe24-5222-4451-a9d6-323d33e49156", + "8f6318ea-e692-4085-a693-02f4ff3204b5", + "8fb13af8-c385-46a2-aecc-c741c1e8a5ad", + "901b4d92-9b4d-5e10-b98b-c64c8535c7e3", + "90a63c12-7fec-49c5-9b1a-7d622c4390f8", + "90b34757-474f-42c3-9d31-683a5a0a84bd", + "91069ce7-7605-401a-bdbb-087420d0b207", + "9178a5a8-dbc2-5dfd-be33-2ac8e6f2fc96", + "91f51e13-dc56-4526-9e39-92a6c6778e16", + "944589e7-48a4-4333-b773-8e632ccb8865", + "94bb3ed5-df2e-4e73-987f-d7d63d0db2b9", + "9614720d-ed06-4e72-9a4f-cb62088ff608", + "963a3ac2-373f-4d72-bca7-d00f0a982a69", + "9702f6ba-fd5b-5972-80d4-629e8a8fa8e9", + "97890d18-72bf-4feb-b713-1d057d1f6519", + "9a41c791-004c-5d89-a10c-d58d2ef7eca3", + "9abf31bf-fc25-4e44-ae99-0af17e017b95", + "9b35ba1f-2445-5fcc-a510-d4da345854fe", + "9b53a5c0-fd77-4d55-b697-16a95c67c4c2", + "9be12f87-5674-4d72-8dc3-f86ebf53ae00", + "9d5c8595-a80c-4a12-b869-0b6c45ad6e16", + "9db33a18-ffb7-4e50-88e7-22b4f5d8bce3", + "9ea7643b-d0ba-49b0-b441-0c5d3c2cfe59", + "9fa78638-59a3-45d6-b065-ed1fbf84fa96", + "9fde0deb-9630-4007-aea6-e7a7b1e68c2a", + "a04c3838-8a5f-44c7-9b72-1c31c7a6c547", + "a201d705-2a67-452d-a8c8-4d792885fecc", + "a228f157-78ea-4e3c-85bc-dc90ccd3ec44", + "a2a60cf5-2597-4ba3-b9fa-7ecdde004c8c", + "a39685fd-b34a-4db7-b973-381919edb96e", + "a3b89f52-1007-4aa4-8889-f2b3670c82bd", + "a4a43ddf-e654-526c-98fa-9c0679f2bc95", + "a5365490-1246-4349-b49f-d6b18d834996", + "a6116756-3aeb-48f2-8952-caccbfd3f57b", + "a642669d-72f1-5e03-94fe-83a993c7facd", + "a64cdd04-6d28-5f81-9f2d-4ae6989e9ddc", + "a6a5f2ec-2b8c-4419-82a9-f6bdb80e849c", + "a9cf1331-fec6-4a66-9d92-8649aa4dc00b", + "aac09eaf-b9e3-5469-b34f-d2ec70f57089", + "abffd51d-843c-4f79-8e18-40d8374ade83", + "ad09a0ef-ce88-461b-803f-059a6d37d420", + "ae5068b7-fa8a-46be-8a07-d735093f1aa5", + "aec768aa-9e5d-57ab-b249-09f01b2e5f03", + "afd0ea55-e710-4b46-bb05-2423e491b6f5", + "b0d1afa7-c798-4172-9231-33584e52f70f", + "b12b9f7a-1136-456b-b0e0-aa05c29d1355", + "b138cb0f-a34d-5b29-8b23-a37bc6f961fd", + "b149162c-3450-5301-b057-c3930459584d", + "b2ba2d5e-31f2-4bc6-be3d-c20acad86aa1", + "b3ce1085-08dc-42ff-a609-6968315327a8", + "b4efa99e-25c8-5eef-96a4-84f2551bcc29", + "b58109d6-0e7e-49cb-abd5-4ca20e43046e", + "b58fd1d3-1488-40b2-9530-50c0fe54a4dd", + "b666cb1a-1a4f-511f-859e-2779aad16fa0", + "b6dec4a6-2d9b-40ac-80c4-41dce01aea46", + "b72fccff-7178-4f4c-bf6a-c32cc99af28c", + "b736af42-04c7-4845-a410-310f8f912eeb", + "b869ef9d-300d-46e0-941f-ad0f036773b2", + "b93eec14-cbe3-41c3-af82-a4e352f50377", + "b9a9d40e-7b4f-48f1-a893-f678e917a96d", + "ba36a0b5-a686-5e72-91c9-b29f9c1d3f2e", + "ba802a39-ab3c-4ddf-8606-6904ec798ff5", + "ba9ca87a-7818-4915-9f7f-0ba588ffad1f", + "bba19c1b-66b5-5b45-8391-e7b9e749afc3", + "bc752490-c165-4e59-a335-5690f1809ac9", + "be252ee9-c27b-4937-8e96-e971c25ed794", + "be64dbc9-183f-44c9-8b15-d8298ee6c4e9", + "be883019-a8df-564d-87ff-c24a1358fdb6", + "c0e783a5-a154-4f3a-b887-629ff44346ab", + "c0eb3628-4aae-5215-8fe8-dfc1974fb288", + "c1e549a6-8711-4381-853d-c54469b4b5c0", + "c1eef424-40cb-51f6-a574-755494d44789", + "c2137939-c2c6-44d7-8e11-7d6d6d5443eb", + "c23013ce-1c97-4717-af7f-7b92d2d3c5ae", + "c2552add-e5bd-4022-b3b0-9d160ebbda5b", + "c2fadf72-fab9-47a5-ae9f-50d97753d3ef", + "c30f45e7-0575-46c3-8ea2-3ac864b439e9", + "c564580f-c1bb-5c2d-a0d0-0baebebdf7e4", + "c5f8e956-21dc-4b3e-be69-6f865e3a694b", + "c6d5d8ad-4234-4d4b-b508-c5b9b05ea4c2", + "c72eb744-4971-4525-802c-d898349b392a", + "c79356b3-d639-4026-8865-73a20225efd4", + "c8758f13-7e9b-464a-bada-b41b8b9e925f", + "c89d294a-1921-46fa-9392-b714af40c97c", + "c8b8eac3-92be-5a6c-94ac-e554face58a8", + "c98d14ec-8761-45f7-8e86-e63c188bd97f", + "c99659fc-134b-4290-aae6-0bd6adbe3f0a", + "c9c4fc85-aaf7-4fa3-9ab1-2d0b0a886f62", + "ca6b8d6b-6d19-4ff0-b487-c13cdf801a60", + "ca707466-c643-54d0-a251-d4314081608b", + "ca78a1a9-375c-4aa8-bfdc-822279d0eca3", + "caee5d2b-466f-5762-a565-8fa4a520faba", + "caf7fc00-38ab-4af5-beda-c70c1fb4448e", + "cb189806-adb0-42d2-b519-b9e48a23bc94", + "cb6662a8-c395-4f75-b6fa-87c186917ed2", + "cb7a8922-0b74-42f5-9346-f80ebbaddb57", + "cbc88af9-e283-49fa-8c4d-7931a266d2fb", + "cc5a78a1-539f-4dec-80b6-62f35dcafd89", + "cc671147-98a3-4e96-ae78-7f6b637271d6", + "cc811606-6aff-421b-ac56-b26adbfe67f4", + "cca2842a-813b-4f29-a8d5-98ebdb6d1b4c", + "d18bbb45-9103-421a-b0cf-a40e2821ff5b", + "d1f0becb-7640-4861-aee5-0578cd987194", + "d3ea1255-7208-4952-be7f-7372d2dc9466", + "d8577b2c-16a2-484f-9269-9196d7cca451", + "d8c08782-6f69-4314-947c-1afe6928cbce", + "d96cdcd2-d832-470d-96d8-db8f92075703", + "da200c32-cfbd-435f-8786-2cf542b87367", + "db9fbac5-641e-4dad-af15-a7afa407654b", + "dc31f31d-ab56-4025-9834-99be638a2d50", + "dc4b7fff-0876-4f92-96cc-167efc91b516", + "dc6cba3b-5de7-5405-80ba-ba0d16f9285f", + "dce25965-6000-496a-b884-fa4dc0491a4d", + "dd3dccbb-4bc8-5384-8693-96b82fe5f685", + "dd584f8a-9127-4d00-b251-a3042b2528f4", + "ddc00ab2-17ea-4b61-8f75-29e26d82551c", + "ddd10ecc-f7b7-4370-82cf-14e30987b751", + "de1febb4-49dd-4a8a-b9c0-7ea493dd2d5a", + "de4c5a98-eea2-4790-92fe-dd0adc5c05b2", + "de9d1258-715d-47f9-8480-5695c198f6cc", + "dec92f6d-8aa9-48e5-9c8d-5d0c2cfb7749", + "df5af5d4-56e1-517b-8f47-7bf4888c853a", + "df9eea5a-6dea-55bc-9257-35cd9e7c58cc", + "dfad809b-a282-5bb4-9d71-0a5bf3da0417", + "e0556c96-db70-426b-a44d-63da9c722734", + "e28e68a3-3042-45f6-a714-ba8622a4b34e", + "e3777b07-1706-4434-a523-1335f0b96b30", + "e5b37a2a-d819-4961-8fa5-f47ce08532a9", + "e68843c2-df7c-4607-b98f-84b39b31963c", + "e6e30d90-6a3f-4b47-9d7b-6a66989271da", + "e768a12c-327e-4d27-85e0-347d95921452", + "e957cc11-3b0d-41ab-9f4e-3bb45688fd8e", + "e9af9182-ea0a-4942-9ae5-e2fc36272da6", + "ec1af218-9b00-4366-8890-5cebf580f225", + "ed31fe54-3acf-4fdd-9877-3f241b6480a6", + "ee2bfb40-7aa4-4c78-b78a-91aa69c7dc6e", + "ee6f108e-efd4-4eb3-8e51-76fcef37455b", + "ef880b39-ded0-529f-8b50-44961b8f852e", + "eff119a8-5bdb-473d-8479-27b3aa0926bc", + "f11f27c5-f4b0-4d20-9c8f-d1af764c7c0a", + "f1aecf03-b60d-483c-a09f-69223cc1ad0e", + "f2393819-bde7-5d77-a1ef-ea58d87e5232", + "f2f0f2f6-21bb-4672-8cbe-6143c5586b69", + "f37a0dec-b7ba-4b34-8e51-732fb5ac7213", + "f3b306f2-3627-4fbe-b4d0-9968ee934452", + "f44d6b65-0866-47d5-bfb2-8173b1b6a2b3", + "f47bb6a8-a753-4d40-8254-28fee9d03c1b", + "f5d590c5-b307-4b99-af98-8ddba1e2a266", + "f6809490-ac47-5fe5-af87-1923c320164e", + "f6cf748f-03ac-411c-8e52-d5a5c606e673", + "f870bf7e-2cb7-44b2-a299-f4e06da4453c", + "f9703a2c-b024-4917-a6b0-981b38cfb784", + "f9b8be35-2641-5f85-af13-c0390b7bfe23", + "f9bf5721-5ee8-5837-8eb9-da3810cf04f1", + "fb5fdf8f-f79f-479a-a662-2f3bed88e960", + "fbcc2483-8a75-50ec-8cb6-8148a5087dce", + "fd1a13ab-4a77-4f7c-964b-7e07722581c1", + "fe320cac-6005-46ab-a023-1c7157f5d426", + "fe71fe4a-0903-42e0-9a65-d985abd943ca", + "fe86eb27-196d-48be-a58b-840d7add69ec", + "feb85664-ff85-4b95-9198-036360f87cc9", + "febe54b0-6388-5024-a971-fa88862a4e62", + "fede9b23-84cc-4d8e-97e3-9bd3fa3f4b19", + "ff6b12b6-7733-476d-a081-32904abff547", + "ffa809d2-47c7-45c6-b221-7c9d2478caa6", + "ffac7235-fb12-4e0d-ac86-c608d45f43c3" + ] } \ No newline at end of file diff --git a/test/indexer/data/7a330531-ec7f-5aee-84d4-2ba24d66e93b.dss.hca.json b/test/indexer/data/7a330531-ec7f-5aee-84d4-2ba24d66e93b.dss.hca.json index b4aee82a8..81c367be0 100644 --- a/test/indexer/data/7a330531-ec7f-5aee-84d4-2ba24d66e93b.dss.hca.json +++ b/test/indexer/data/7a330531-ec7f-5aee-84d4-2ba24d66e93b.dss.hca.json @@ -731,5 +731,6 @@ ], "schema_type": "links", "schema_version": "3.1.0" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/7eb74d9f-8346-5420-b7e4-b486f99451a8.dss.hca.json b/test/indexer/data/7eb74d9f-8346-5420-b7e4-b486f99451a8.dss.hca.json index f93a841a6..711aaa080 100644 --- a/test/indexer/data/7eb74d9f-8346-5420-b7e4-b486f99451a8.dss.hca.json +++ b/test/indexer/data/7eb74d9f-8346-5420-b7e4-b486f99451a8.dss.hca.json @@ -6,7 +6,6 @@ "version": "2019-09-13T08:37:57.269000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 302, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -17,7 +16,6 @@ "version": "2019-09-13T09:16:23.710869Z", "content-type": "application/gzip; dcp-type=data", "size": 1110577684, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cd7ace86-c1f9-4c36-8ba0-078520babe83", "crc32c": "3f0921bb", @@ -31,7 +29,6 @@ "version": "2019-09-13T08:37:53.822000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 758, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -42,7 +39,6 @@ "version": "2021-02-26T16:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 401, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -53,7 +49,6 @@ "version": "2019-09-13T08:43:56.724000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -64,7 +59,6 @@ "version": "2019-09-13T08:37:53.821000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 894, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -75,7 +69,6 @@ "version": "2019-09-13T08:54:00.067000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -86,7 +79,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -97,7 +89,6 @@ "version": "2019-09-13T09:16:24.192766Z", "content-type": "application/gzip; dcp-type=data", "size": 9820193406, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7b607ae7-1136-41f7-937e-ea2c3015a949", "crc32c": "3c380752", @@ -111,7 +102,6 @@ "version": "2021-02-03T21:08:31.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1016626791, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_55cb0c0b-e617-491a-b055-a7cd1a438c96", "crc32c": "9d1f0a8c", @@ -123,7 +113,6 @@ "version": "2021-02-03T20:52:27.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 13010167180, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4bc6a861-4ecb-4758-ba27-8326821d6be5", "crc32c": "2ad80e5f", @@ -135,7 +124,6 @@ "version": "2019-09-13T09:16:23.982952Z", "content-type": "application/gzip; dcp-type=data", "size": 2950925436, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_96e58cce-a961-48c5-b4fd-84f4e994e10a", "crc32c": "068824ae", @@ -144,12 +132,12 @@ "s3_etag": "be870140031523af537bbb3861fff77e-44" }, { + "name": "project_0.json", "uuid": "8185730f-4113-40d3-9cc3-929271784c2b", "version": "2019-09-13T08:37:53.825000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 11767, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -160,7 +148,6 @@ "version": "2019-09-13T08:37:53.868000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 569, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -171,7 +158,6 @@ "version": "2019-09-13T08:57:01.788000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 608, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -182,7 +168,6 @@ "version": "2019-09-13T08:37:53.815000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 915, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -193,7 +178,6 @@ "version": "2019-09-13T08:37:57.174000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -204,7 +188,6 @@ "version": "2019-09-13T08:37:57.252000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 301, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -215,7 +198,6 @@ "version": "2019-09-13T08:37:53.853000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 847, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -226,7 +208,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -237,7 +218,6 @@ "version": "2019-09-13T08:37:53.832000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 668, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -248,7 +228,6 @@ "version": "2020-02-03T10:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -259,7 +238,6 @@ "version": "2019-09-13T08:37:53.864000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 838, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -270,7 +248,6 @@ "version": "2019-09-13T08:37:53.809000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 970, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1522,5 +1499,24 @@ ] } ] - } + }, + "stitched": [ + "1116b396-448e-4dd1-b9c9-78357c511e15", + "1985c53a-b78f-4d9e-9563-dffed8207efd", + "2509f42a-0328-4e33-8d21-79d37560d846", + "30040306-be5c-48f9-b221-e666e279ab5b", + "3030903f-4a4b-4b30-ab93-3b10183181e0", + "39255288-6791-45b0-ac7e-b3ef4c981a3b", + "5140b603-8cc1-4566-9043-e68145efbbd6", + "79f589cb-32a2-4ba6-a091-7c5d820d02df", + "932000d6-c63b-40f0-bdd5-469fa4db8be2", + "9f8f5212-0749-460b-9a46-2949dea45d52", + "a166be3d-6e84-4058-a1bd-edf90cf3ee88", + "a5e37780-0b71-4610-8a7c-26142dedfcec", + "b360251f-7550-4c08-b576-781858554ea1", + "b8049daa-7458-47bf-8ec2-3f5c56d2cb34", + "ba595d79-aa43-4e3a-ad10-89f92ef4f22f", + "edc72947-b776-4150-8bfe-b7331acfa66f", + "fa99959f-faa2-4d69-a092-48333e59f5f3" + ] } \ No newline at end of file diff --git a/test/indexer/data/80baee6e-00a5-4fdc-bfe3-d339ff8a7178.dss.hca.json b/test/indexer/data/80baee6e-00a5-4fdc-bfe3-d339ff8a7178.dss.hca.json index 22ea45006..fd7ce1a28 100644 --- a/test/indexer/data/80baee6e-00a5-4fdc-bfe3-d339ff8a7178.dss.hca.json +++ b/test/indexer/data/80baee6e-00a5-4fdc-bfe3-d339ff8a7178.dss.hca.json @@ -6,7 +6,6 @@ "version": "2021-03-12T22:38:42.790000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 93750142, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_e2464476-c0b4-4a92-a5fe-96094905825c_6d790286-6350-4c5c-b59d-4928d0aba9c2", "crc32c": "2176c107", @@ -20,7 +19,6 @@ "version": "2021-06-16T11:07:31.803000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1143, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -31,7 +29,6 @@ "version": "2021-09-30T17:37:33.058000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 3756, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -42,7 +39,6 @@ "version": "2021-03-12T22:30:59.855000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 795, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -53,7 +49,6 @@ "version": "2021-03-12T22:30:47.194000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 971, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -64,7 +59,6 @@ "version": "2021-03-12T22:30:59.983000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1587, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -75,7 +69,6 @@ "version": "2021-03-12T22:40:56.568000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 354, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -86,7 +79,6 @@ "version": "2021-03-12T22:31:00.073000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 904, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -97,7 +89,6 @@ "version": "2021-03-12T22:28:36.842000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 1099, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -108,7 +99,6 @@ "version": "2021-03-12T22:30:59.796000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1124, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -119,7 +109,6 @@ "version": "2021-03-12T22:38:42.790000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 587, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -130,7 +119,6 @@ "version": "2021-03-12T22:38:42.802000Z", "content-type": "binary/octet-stream; dcp-type=data; dcp-type=data", "size": 101854552, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_e2464476-c0b4-4a92-a5fe-96094905825c_57e4e9ad-2bdf-49aa-9576-aa6a851534f8", "crc32c": "2fd3d7c6", @@ -139,12 +127,12 @@ "s3_etag": "4a55ee383287a1b4f0aa4e756178c73f-2" }, { + "name": "process_1.json", "uuid": "80baee6e-00a5-4fdc-bfe3-d339ff8a7178", "version": "2021-03-12T22:43:32.330000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -155,7 +143,6 @@ "version": "2021-03-12T22:30:59.829000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 716, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -166,7 +153,6 @@ "version": "2021-03-12T22:31:00.063000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1156, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -177,7 +163,6 @@ "version": "2021-03-12T22:38:42.802000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 587, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -188,7 +173,6 @@ "version": "2021-03-12T22:38:42.888000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -835,5 +819,6 @@ "describedBy": "https://schema.humancellatlas.org/system/2.1.1/links", "schema_version": "2.1.1", "schema_type": "links" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/8338b891-f3fa-5e7b-885f-e4ee5689ee15.dss.hca.json b/test/indexer/data/8338b891-f3fa-5e7b-885f-e4ee5689ee15.dss.hca.json index 558da1965..b7fb2ac93 100644 --- a/test/indexer/data/8338b891-f3fa-5e7b-885f-e4ee5689ee15.dss.hca.json +++ b/test/indexer/data/8338b891-f3fa-5e7b-885f-e4ee5689ee15.dss.hca.json @@ -6,7 +6,6 @@ "version": "2020-12-03T10:39:17.144517Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 671, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -17,7 +16,6 @@ "version": "2020-12-03T10:39:17.144517Z", "content-type": "application/zip; dcp-type=data", "size": 76742835, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_c3c588a8-be3f-467f-a244-da614be6889a_ad683500-3756-4a85-aba8-05a9165aac90", "crc32c": "97a7a932", @@ -29,7 +27,6 @@ "version": "2020-12-03T10:39:17.144517Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 671, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -40,7 +37,6 @@ "version": "2020-12-03T10:39:17.144517Z", "content-type": "application/zip; dcp-type=data", "size": 124022765, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_c3c588a8-be3f-467f-a244-da614be6889a_df2476d4-ed12-4891-92cc-7384c32be978", "crc32c": "7de6e00e", @@ -52,18 +48,17 @@ "version": "2019-09-13T08:37:53.825000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 11767, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" }, { + "name": "supplementary_file_2.json", "uuid": "8d2ba1c1-bc9f-5c2a-a74d-fe5e09bdfb18", "version": "2020-12-03T10:39:17.144517Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 669, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -74,7 +69,6 @@ "version": "2020-12-03T10:39:17.144517Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 154980798, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_c3c588a8-be3f-467f-a244-da614be6889a_0b9a12c6-95df-487b-87ce-84e278e66789", "crc32c": "d675b7ea", @@ -599,5 +593,6 @@ ] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/8543d32f-4c01-48d5-a79f-1c5439659da3.dss.hca.json b/test/indexer/data/8543d32f-4c01-48d5-a79f-1c5439659da3.dss.hca.json index ed5b8ff49..41ea4d045 100644 --- a/test/indexer/data/8543d32f-4c01-48d5-a79f-1c5439659da3.dss.hca.json +++ b/test/indexer/data/8543d32f-4c01-48d5-a79f-1c5439659da3.dss.hca.json @@ -678,5 +678,6 @@ "describedBy": "https://schema.humancellatlas.org/bundle/1.0.0/links", "schema_version": "1.0.0", "schema_type": "link_bundle" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/8c1773c3-1885-545f-9381-0dab1edf6074.dss.hca.json b/test/indexer/data/8c1773c3-1885-545f-9381-0dab1edf6074.dss.hca.json index df8102870..8f26b1b31 100644 --- a/test/indexer/data/8c1773c3-1885-545f-9381-0dab1edf6074.dss.hca.json +++ b/test/indexer/data/8c1773c3-1885-545f-9381-0dab1edf6074.dss.hca.json @@ -706,5 +706,6 @@ ], "schema_type": "links", "schema_version": "3.1.0" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/8c90d4fe-9a5d-4e3d-ada2-0414b666b880.dss.hca.json b/test/indexer/data/8c90d4fe-9a5d-4e3d-ada2-0414b666b880.dss.hca.json index 13f42e0e2..1a3f56c0c 100644 --- a/test/indexer/data/8c90d4fe-9a5d-4e3d-ada2-0414b666b880.dss.hca.json +++ b/test/indexer/data/8c90d4fe-9a5d-4e3d-ada2-0414b666b880.dss.hca.json @@ -1697,5 +1697,6 @@ ] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/94f2ba52-30c8-4de0-a78e-f95a3f8deb9c.dss.hca.json b/test/indexer/data/94f2ba52-30c8-4de0-a78e-f95a3f8deb9c.dss.hca.json index 610482401..c8e3d57e3 100644 --- a/test/indexer/data/94f2ba52-30c8-4de0-a78e-f95a3f8deb9c.dss.hca.json +++ b/test/indexer/data/94f2ba52-30c8-4de0-a78e-f95a3f8deb9c.dss.hca.json @@ -11966,5 +11966,6 @@ ] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/97f0cc83-f0ac-417a-8a29-221c77debde8.dss.hca.json b/test/indexer/data/97f0cc83-f0ac-417a-8a29-221c77debde8.dss.hca.json index 82b13a528..bdec17aa3 100644 --- a/test/indexer/data/97f0cc83-f0ac-417a-8a29-221c77debde8.dss.hca.json +++ b/test/indexer/data/97f0cc83-f0ac-417a-8a29-221c77debde8.dss.hca.json @@ -926,5 +926,6 @@ ] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/9dec1bd6-ced8-448a-8e45-1fc7846d8995.dss.hca.json b/test/indexer/data/9dec1bd6-ced8-448a-8e45-1fc7846d8995.dss.hca.json index b197d3ad9..28347ab78 100644 --- a/test/indexer/data/9dec1bd6-ced8-448a-8e45-1fc7846d8995.dss.hca.json +++ b/test/indexer/data/9dec1bd6-ced8-448a-8e45-1fc7846d8995.dss.hca.json @@ -580,5 +580,6 @@ "describedBy": "https://schema.humancellatlas.org/bundle/1.0.0/links", "schema_version": "1.0.0", "schema_type": "link_bundle" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/aaa96233-bf27-44c7-82df-b4dc15ad4d9d.2018-11-02T11:33:44.698028Z.dss.hca.json b/test/indexer/data/aaa96233-bf27-44c7-82df-b4dc15ad4d9d.2018-11-02T11:33:44.698028Z.dss.hca.json index 7988bc571..fa7da5135 100644 --- a/test/indexer/data/aaa96233-bf27-44c7-82df-b4dc15ad4d9d.2018-11-02T11:33:44.698028Z.dss.hca.json +++ b/test/indexer/data/aaa96233-bf27-44c7-82df-b4dc15ad4d9d.2018-11-02T11:33:44.698028Z.dss.hca.json @@ -587,5 +587,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/aaa96233-bf27-44c7-82df-b4dc15ad4d9d.2018-11-04T11:33:44.698028Z.dss.hca.json b/test/indexer/data/aaa96233-bf27-44c7-82df-b4dc15ad4d9d.2018-11-04T11:33:44.698028Z.dss.hca.json index 1bf0a58dc..c2778bb99 100644 --- a/test/indexer/data/aaa96233-bf27-44c7-82df-b4dc15ad4d9d.2018-11-04T11:33:44.698028Z.dss.hca.json +++ b/test/indexer/data/aaa96233-bf27-44c7-82df-b4dc15ad4d9d.2018-11-04T11:33:44.698028Z.dss.hca.json @@ -587,5 +587,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/b0850e79-5544-49fe-b54d-e29b9fc3f61f.dss.hca.json b/test/indexer/data/b0850e79-5544-49fe-b54d-e29b9fc3f61f.dss.hca.json index 5c4c24ec6..3ba38f5c5 100644 --- a/test/indexer/data/b0850e79-5544-49fe-b54d-e29b9fc3f61f.dss.hca.json +++ b/test/indexer/data/b0850e79-5544-49fe-b54d-e29b9fc3f61f.dss.hca.json @@ -12796,5 +12796,6 @@ "describedBy": "https://schema.humancellatlas.org/bundle/1.0.0/links", "schema_version": "1.0.0", "schema_type": "link_bundle" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/b2216048-7eaa-45f4-8077-5a3fb4204953.dss.hca.json b/test/indexer/data/b2216048-7eaa-45f4-8077-5a3fb4204953.dss.hca.json index a494c951c..ba60102af 100644 --- a/test/indexer/data/b2216048-7eaa-45f4-8077-5a3fb4204953.dss.hca.json +++ b/test/indexer/data/b2216048-7eaa-45f4-8077-5a3fb4204953.dss.hca.json @@ -627,5 +627,6 @@ "describedBy": "https://schema.humancellatlas.org/bundle/1.0.0/links", "schema_version": "1.0.0", "schema_type": "link_bundle" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/b7fc737e-9b7b-4800-8977-fe7c94e131df.dss.hca.json b/test/indexer/data/b7fc737e-9b7b-4800-8977-fe7c94e131df.dss.hca.json index b29f6b7b8..cb8aed169 100644 --- a/test/indexer/data/b7fc737e-9b7b-4800-8977-fe7c94e131df.dss.hca.json +++ b/test/indexer/data/b7fc737e-9b7b-4800-8977-fe7c94e131df.dss.hca.json @@ -690,5 +690,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/c94a43f9-257f-4cd0-b2fe-eaf6d5d37d18.dss.hca.json b/test/indexer/data/c94a43f9-257f-4cd0-b2fe-eaf6d5d37d18.dss.hca.json index 0ac584027..24f48db53 100644 --- a/test/indexer/data/c94a43f9-257f-4cd0-b2fe-eaf6d5d37d18.dss.hca.json +++ b/test/indexer/data/c94a43f9-257f-4cd0-b2fe-eaf6d5d37d18.dss.hca.json @@ -12409,5 +12409,6 @@ "describedBy": "https://schema.humancellatlas.org/bundle/1.0.0/links", "schema_version": "1.0.0", "schema_type": "link_bundle" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/cfab8304-dc9f-439e-af29-f8eb75b0729d.dss.hca.json b/test/indexer/data/cfab8304-dc9f-439e-af29-f8eb75b0729d.dss.hca.json index 0b5d0344b..11c229559 100644 --- a/test/indexer/data/cfab8304-dc9f-439e-af29-f8eb75b0729d.dss.hca.json +++ b/test/indexer/data/cfab8304-dc9f-439e-af29-f8eb75b0729d.dss.hca.json @@ -763,5 +763,6 @@ ] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/d0e17014-9a58-4763-9e66-59894efbdaa8.dss.hca.json b/test/indexer/data/d0e17014-9a58-4763-9e66-59894efbdaa8.dss.hca.json index cd2ef9a55..5ad13428b 100644 --- a/test/indexer/data/d0e17014-9a58-4763-9e66-59894efbdaa8.dss.hca.json +++ b/test/indexer/data/d0e17014-9a58-4763-9e66-59894efbdaa8.dss.hca.json @@ -42432,5 +42432,6 @@ ] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/d5e01f9d-615f-4153-8a56-f2317d7d9ce8.dss.hca.json b/test/indexer/data/d5e01f9d-615f-4153-8a56-f2317d7d9ce8.dss.hca.json index ddb6fed8b..e4e69c1de 100644 --- a/test/indexer/data/d5e01f9d-615f-4153-8a56-f2317d7d9ce8.dss.hca.json +++ b/test/indexer/data/d5e01f9d-615f-4153-8a56-f2317d7d9ce8.dss.hca.json @@ -2167,5 +2167,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/d7b8cbff-aee9-5a05-a4a1-d8f4e720aee7.dss.hca.json b/test/indexer/data/d7b8cbff-aee9-5a05-a4a1-d8f4e720aee7.dss.hca.json index 0c4e3609b..b9bf43801 100644 --- a/test/indexer/data/d7b8cbff-aee9-5a05-a4a1-d8f4e720aee7.dss.hca.json +++ b/test/indexer/data/d7b8cbff-aee9-5a05-a4a1-d8f4e720aee7.dss.hca.json @@ -779,5 +779,6 @@ ], "schema_type": "links", "schema_version": "3.1.0" - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/dcccb551-4766-4210-966c-f9ee25d19190.dss.hca.json b/test/indexer/data/dcccb551-4766-4210-966c-f9ee25d19190.dss.hca.json index d632a9c69..e71b4214b 100644 --- a/test/indexer/data/dcccb551-4766-4210-966c-f9ee25d19190.dss.hca.json +++ b/test/indexer/data/dcccb551-4766-4210-966c-f9ee25d19190.dss.hca.json @@ -3110,5 +3110,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/e0ae8cfa-2b51-4419-9cde-34df44c6458a.dss.hca.json b/test/indexer/data/e0ae8cfa-2b51-4419-9cde-34df44c6458a.dss.hca.json index b269b25d5..ef78a318b 100644 --- a/test/indexer/data/e0ae8cfa-2b51-4419-9cde-34df44c6458a.dss.hca.json +++ b/test/indexer/data/e0ae8cfa-2b51-4419-9cde-34df44c6458a.dss.hca.json @@ -812,5 +812,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/e2c3054e-9fba-4d7a-b85b-a2220d16da73.dss.hca.json b/test/indexer/data/e2c3054e-9fba-4d7a-b85b-a2220d16da73.dss.hca.json index 10c5888fd..643a84c16 100644 --- a/test/indexer/data/e2c3054e-9fba-4d7a-b85b-a2220d16da73.dss.hca.json +++ b/test/indexer/data/e2c3054e-9fba-4d7a-b85b-a2220d16da73.dss.hca.json @@ -2386,5 +2386,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/f0731ab4-6b80-4eed-97c9-4984de81a47c.dss.hca.json b/test/indexer/data/f0731ab4-6b80-4eed-97c9-4984de81a47c.dss.hca.json index 31e7ea289..ee0385e96 100644 --- a/test/indexer/data/f0731ab4-6b80-4eed-97c9-4984de81a47c.dss.hca.json +++ b/test/indexer/data/f0731ab4-6b80-4eed-97c9-4984de81a47c.dss.hca.json @@ -11892,5 +11892,6 @@ ] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/f79257a7-dfc6-46d6-ae00-ba4b25313c10.dss.hca.json b/test/indexer/data/f79257a7-dfc6-46d6-ae00-ba4b25313c10.dss.hca.json index caff9c466..9563b6f1e 100644 --- a/test/indexer/data/f79257a7-dfc6-46d6-ae00-ba4b25313c10.dss.hca.json +++ b/test/indexer/data/f79257a7-dfc6-46d6-ae00-ba4b25313c10.dss.hca.json @@ -810,5 +810,6 @@ "protocols": [] } ] - } + }, + "stitched": [] } diff --git a/test/indexer/data/fa5be5eb-2d64-49f5-8ed8-bd627ac9bc7a.dss.hca.json b/test/indexer/data/fa5be5eb-2d64-49f5-8ed8-bd627ac9bc7a.dss.hca.json index 90063e3b0..9caadc848 100644 --- a/test/indexer/data/fa5be5eb-2d64-49f5-8ed8-bd627ac9bc7a.dss.hca.json +++ b/test/indexer/data/fa5be5eb-2d64-49f5-8ed8-bd627ac9bc7a.dss.hca.json @@ -1611,5 +1611,6 @@ ] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/data/fce68057-b0f0-5d11-b9a7-30e8fa3259a8.dss.hca.json b/test/indexer/data/fce68057-b0f0-5d11-b9a7-30e8fa3259a8.dss.hca.json index da70bd714..1654e0ae7 100644 --- a/test/indexer/data/fce68057-b0f0-5d11-b9a7-30e8fa3259a8.dss.hca.json +++ b/test/indexer/data/fce68057-b0f0-5d11-b9a7-30e8fa3259a8.dss.hca.json @@ -6,7 +6,6 @@ "version": "2020-08-13T10:24:31.885000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1801, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -17,7 +16,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -28,7 +26,6 @@ "version": "2020-08-13T10:24:32.490000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -39,7 +36,6 @@ "version": "2020-08-13T10:24:33.604000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2552809421, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ab47b7b4-2df9-47b4-bbb4-57d69a382a87", "crc32c": "3426d4b4", @@ -53,7 +49,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -64,7 +59,6 @@ "version": "2020-08-13T10:24:31.566000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -75,7 +69,6 @@ "version": "2020-08-13T10:24:39.091000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -86,7 +79,6 @@ "version": "2020-08-13T10:24:34.163000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29797316111, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b56c571e-d974-47a7-941b-b44a53124dc2", "crc32c": "27ce82ad", @@ -100,7 +92,6 @@ "version": "2020-08-13T10:24:35.160000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -111,7 +102,6 @@ "version": "2020-08-13T10:24:32.576000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 610, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -122,7 +112,6 @@ "version": "2020-08-13T10:24:32.055000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -133,7 +122,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -144,7 +132,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -155,7 +142,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -166,7 +152,6 @@ "version": "2020-08-13T10:24:33.458000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 7988836041, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_37204ac6-191f-47ba-b3c7-3d927d9e522b", "crc32c": "24a02c8f", @@ -180,7 +165,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -191,7 +175,6 @@ "version": "2020-08-13T10:24:41.908000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 354, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -202,7 +185,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -213,7 +195,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -224,7 +205,6 @@ "version": "2021-02-09T10:00:00.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 61104038030, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8fa0492a-20cc-44cb-b62d-98cb1b1cb02a", "crc32c": "f9e695e2", @@ -236,7 +216,6 @@ "version": "2021-02-09T08:34:58.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1705801482, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e9b071f2-1584-428b-9e3c-9a5943905a7d", "crc32c": "792b4a5d", @@ -248,7 +227,6 @@ "version": "2020-08-13T10:24:35.281000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -259,7 +237,6 @@ "version": "2020-08-13T10:24:35.916000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -270,7 +247,6 @@ "version": "2020-08-13T10:24:34.100000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2603387356, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c97495cc-41f5-4662-af51-77846111717a", "crc32c": "dcc11ef6", @@ -284,7 +260,6 @@ "version": "2021-02-09T08:26:46.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1363923249, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8b6e01b6-7e12-4b8f-9f16-97a1dd354215", "crc32c": "9a0339f5", @@ -296,7 +271,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -307,7 +281,6 @@ "version": "2020-08-13T10:24:42.459000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -318,7 +291,6 @@ "version": "2020-08-13T10:24:30.913000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -329,7 +301,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -340,7 +311,6 @@ "version": "2020-08-13T10:24:42.189000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -351,7 +321,6 @@ "version": "2020-08-13T10:24:32.650000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8159243311, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_78ce92be-f82c-41dd-827c-d5cef8a348f4", "crc32c": "0c841aab", @@ -365,7 +334,6 @@ "version": "2021-02-09T08:22:39.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 32947839530, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_76492cfb-8b1b-4c35-b6b1-557d42f5d60c", "crc32c": "5c6fa039", @@ -377,7 +345,6 @@ "version": "2020-08-13T10:24:33.420000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -388,7 +355,6 @@ "version": "2020-08-13T10:24:32.564000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -399,7 +365,6 @@ "version": "2020-08-13T10:24:42.080000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -410,7 +375,6 @@ "version": "2020-08-13T10:24:32.673000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -421,7 +385,6 @@ "version": "2021-02-09T08:58:27.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1535383236, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_959f3d74-1e15-4ca8-9acc-4e0ae60ba748", "crc32c": "cbc2c019", @@ -433,7 +396,6 @@ "version": "2020-08-13T10:24:32.079000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 47392260066, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_746bffff-170c-441b-a24f-08b86f5a5d20", "crc32c": "8ef4b28c", @@ -447,7 +409,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -458,7 +419,6 @@ "version": "2020-08-13T10:24:32.208000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 27574032619, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4d25fa13-4b11-4c21-957c-e4ba8b261610", "crc32c": "1e8c31d4", @@ -472,7 +432,6 @@ "version": "2020-08-13T10:24:43.108000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -483,7 +442,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -494,7 +452,6 @@ "version": "2020-08-13T10:24:35.788000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -505,7 +462,6 @@ "version": "2021-02-09T08:45:17.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1364895619, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_083e36aa-3de8-42f0-a043-b8646d0c2c71", "crc32c": "b3564b89", @@ -517,7 +473,6 @@ "version": "2020-08-13T10:24:35.400000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2379045893, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ca3e64ab-a7cb-4575-8440-849f9b2fc6eb", "crc32c": "0f73566d", @@ -531,7 +486,6 @@ "version": "2020-08-13T10:24:32.196000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 612, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -542,7 +496,6 @@ "version": "2021-02-09T08:43:11.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 649399414, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_42b46880-906c-47a2-bd77-fefb2ff4d45b", "crc32c": "b023220c", @@ -554,7 +507,6 @@ "version": "2020-08-13T10:24:33.513000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29609252851, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2335283c-4206-44f5-9e4b-0d20fa2ae808", "crc32c": "38b99048", @@ -568,7 +520,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -579,7 +530,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -590,7 +540,6 @@ "version": "2020-08-13T10:24:35.874000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -601,7 +550,6 @@ "version": "2021-02-09T07:58:54.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37957956713, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_434730a8-a51b-4fee-bead-eeccab02f463", "crc32c": "905302dd", @@ -613,7 +561,6 @@ "version": "2020-08-13T10:24:31.793000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -624,7 +571,6 @@ "version": "2021-02-09T09:21:12.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1455002091, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6bb86ff7-8f4a-4a06-bd75-57137cfd935d", "crc32c": "7bbeb67f", @@ -636,7 +582,6 @@ "version": "2020-08-13T10:24:31.810000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -647,7 +592,6 @@ "version": "2020-08-13T10:24:32.019000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -658,7 +602,6 @@ "version": "2020-08-13T10:24:35.433000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 7400300782, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fc7ae751-2405-4c9c-8a49-777eb1f6f1d4", "crc32c": "8b9ff8c5", @@ -672,7 +615,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -683,7 +625,6 @@ "version": "2020-08-13T10:24:31.538000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 571, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -694,7 +635,6 @@ "version": "2020-08-13T10:24:35.172000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -705,7 +645,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -716,7 +655,6 @@ "version": "2020-08-13T10:24:30.757000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 954, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -727,7 +665,6 @@ "version": "2020-08-13T10:24:31.669000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -738,7 +675,6 @@ "version": "2020-08-13T10:24:32.906000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2647677455, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c7ccdc71-8c41-4cbb-956b-e22b73a4a940", "crc32c": "77b8e825", @@ -752,7 +688,6 @@ "version": "2020-08-13T10:24:43.022000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -763,7 +698,6 @@ "version": "2020-08-13T10:24:32.961000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 7664122784, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ecc695f2-0073-416d-80bc-47fe35daac7a", "crc32c": "87d62ffb", @@ -777,7 +711,6 @@ "version": "2020-08-13T10:24:42.979000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -788,7 +721,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -799,7 +731,6 @@ "version": "2020-08-13T10:24:32.734000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 30039390235, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b7e94aa3-02f4-40d2-9f1b-43928c817ffb", "crc32c": "b4cf29b4", @@ -813,7 +744,6 @@ "version": "2020-08-13T10:24:32.552000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -824,7 +754,6 @@ "version": "2020-08-13T10:24:31.037000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -835,7 +764,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -846,7 +774,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -857,7 +784,6 @@ "version": "2020-08-13T10:24:31.785000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -868,7 +794,6 @@ "version": "2021-02-09T08:55:17.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1924677966, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_72df293d-51e7-4933-b7a6-3a36efa8b2fd", "crc32c": "10c5753b", @@ -880,7 +805,6 @@ "version": "2020-08-13T10:24:35.845000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -891,7 +815,6 @@ "version": "2020-08-13T10:24:31.844000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -902,7 +825,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -913,7 +835,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -924,7 +845,6 @@ "version": "2020-08-13T10:24:32.399000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 42003446174, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d38a6174-35b4-404d-9677-a70df7bd32e7", "crc32c": "2db41d11", @@ -938,7 +858,6 @@ "version": "2020-08-13T10:24:34.934000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8096191323, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2215e846-b67d-4be6-8c8f-7625cda8eb47", "crc32c": "a9af9c3c", @@ -952,7 +871,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -963,7 +881,6 @@ "version": "2020-08-13T10:24:35.036000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29450046385, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_af4015fa-9116-4187-808a-584145b2f571", "crc32c": "dead08e6", @@ -977,7 +894,6 @@ "version": "2020-08-13T10:24:33.537000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 7882855569, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c3cd00b7-9c8b-4cbb-adb4-4755d4271d5c", "crc32c": "920855cb", @@ -991,7 +907,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14717, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1002,7 +917,6 @@ "version": "2020-08-13T10:24:42.022000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1013,7 +927,6 @@ "version": "2020-08-13T10:24:34.149000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1024,7 +937,6 @@ "version": "2020-08-13T10:24:41.868000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1035,7 +947,6 @@ "version": "2020-08-13T10:24:32.661000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1046,7 +957,6 @@ "version": "2020-08-13T10:24:32.387000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1057,7 +967,6 @@ "version": "2020-08-13T10:24:35.927000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1068,7 +977,6 @@ "version": "2020-08-13T10:24:35.400000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1079,7 +987,6 @@ "version": "2021-02-09T08:37:06.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1625907345, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6835ecba-8a48-4c52-aa46-44fe1f5d41e2", "crc32c": "00e25bae", @@ -1091,7 +998,6 @@ "version": "2020-08-13T10:24:34.175000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1102,7 +1008,6 @@ "version": "2020-08-13T10:24:33.109000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 27535115175, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0104fe7e-f505-4268-95e2-9b170c80b700", "crc32c": "fa38cab6", @@ -1116,7 +1021,6 @@ "version": "2020-08-13T10:24:31.877000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1372, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1127,7 +1031,6 @@ "version": "2020-08-13T10:24:31.801000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1138,7 +1041,6 @@ "version": "2020-08-13T10:24:41.859000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1149,7 +1051,6 @@ "version": "2020-08-13T10:24:41.741000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1160,7 +1061,6 @@ "version": "2020-08-13T10:24:32.686000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8127231249, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6d847405-8bbc-4c2e-93c3-2b508497b077", "crc32c": "38f53dce", @@ -1174,7 +1074,6 @@ "version": "2021-02-26T16:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 401, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1185,7 +1084,6 @@ "version": "2020-08-13T10:24:33.628000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1196,7 +1094,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1207,7 +1104,6 @@ "version": "2020-08-13T10:24:32.734000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1218,7 +1114,6 @@ "version": "2020-08-13T10:24:31.835000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1229,7 +1124,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1240,7 +1134,6 @@ "version": "2020-08-13T10:24:41.667000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1251,7 +1144,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1262,7 +1154,6 @@ "version": "2020-08-13T10:24:42.383000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1273,7 +1164,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1284,7 +1174,6 @@ "version": "2020-08-13T10:24:42.039000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1295,7 +1184,6 @@ "version": "2021-02-09T09:07:07.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37471834021, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_88c9c172-e8e5-4271-a556-ae6409e80c21", "crc32c": "b623c9bb", @@ -1307,7 +1195,6 @@ "version": "2020-08-13T10:24:41.770000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 416, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1318,7 +1205,6 @@ "version": "2020-08-13T10:24:33.403000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8113714492, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a6f3589a-6f4d-4cb7-a702-ea7b196d2c12", "crc32c": "03274c7a", @@ -1332,7 +1218,6 @@ "version": "2020-08-13T10:24:32.375000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1343,7 +1228,6 @@ "version": "2020-08-13T10:24:34.315000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 30681130249, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1e7a9b1e-2060-4450-8253-c4e895faef79", "crc32c": "c8adc630", @@ -1357,7 +1241,6 @@ "version": "2021-02-09T07:52:42.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1516197204, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a33985d6-7424-4179-8831-04c491936269", "crc32c": "fa7dddf4", @@ -1369,7 +1252,6 @@ "version": "2020-08-13T10:24:31.046000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1380,7 +1262,6 @@ "version": "2020-08-13T10:24:33.513000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1391,7 +1272,6 @@ "version": "2020-08-13T10:24:32.709000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1402,7 +1282,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1413,7 +1292,6 @@ "version": "2020-08-13T10:24:32.031000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 619, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1424,7 +1302,6 @@ "version": "2020-08-13T10:24:41.984000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1435,7 +1312,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1446,7 +1322,6 @@ "version": "2021-02-09T08:32:23.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1770152665, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f11da9f1-cbaa-4d4b-aa41-2af8072d2ffa", "crc32c": "8adabeed", @@ -1458,7 +1333,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1469,7 +1343,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1480,7 +1353,6 @@ "version": "2020-08-13T10:24:43.131000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1491,7 +1363,6 @@ "version": "2020-08-13T10:24:34.290000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2795371911, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c0503610-8f0c-45e0-a05c-b93152341c8d", "crc32c": "73c9cb39", @@ -1505,7 +1376,6 @@ "version": "2020-08-13T10:24:32.031000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 33574288219, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7e29e017-abc0-418b-a687-6f045dbb771a", "crc32c": "27abbcdc", @@ -1519,7 +1389,6 @@ "version": "2020-08-13T10:24:33.060000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1530,7 +1399,6 @@ "version": "2020-08-13T10:24:35.268000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1541,7 +1409,6 @@ "version": "2020-08-13T10:24:30.765000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 928, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1552,7 +1419,6 @@ "version": "2021-02-09T08:27:29.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1292449695, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_68603f62-06f5-439d-bb1d-f0ac2dde8b5d", "crc32c": "23b634b1", @@ -1564,7 +1430,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1575,7 +1440,6 @@ "version": "2020-08-13T10:24:33.086000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1586,7 +1450,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1597,7 +1460,6 @@ "version": "2020-08-13T10:24:35.148000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 30206160452, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_59075c99-0f72-4ffc-a598-5f1f7107c8fe", "crc32c": "99720b83", @@ -1611,7 +1473,6 @@ "version": "2020-08-13T10:24:34.137000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1622,7 +1483,6 @@ "version": "2021-02-09T08:29:42.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1634487281, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_40bc5b5b-0210-431e-a5b5-4634a94c0818", "crc32c": "6789712c", @@ -1634,7 +1494,6 @@ "version": "2020-08-13T10:24:35.024000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1645,7 +1504,6 @@ "version": "2021-02-09T08:32:25.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1735761928, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bdfc4e44-3b5d-47b8-9c43-55eaef2e6b1c", "crc32c": "cee09154", @@ -1657,7 +1515,6 @@ "version": "2020-08-13T10:24:42.500000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1668,7 +1525,6 @@ "version": "2020-08-13T10:24:32.600000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2602658363, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b99bed54-1eda-46d1-9cef-bf42af726cdd", "crc32c": "ba5786e5", @@ -1682,7 +1538,6 @@ "version": "2020-08-13T10:24:33.639000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1693,7 +1548,6 @@ "version": "2020-08-13T10:24:32.221000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1704,7 +1558,6 @@ "version": "2020-08-13T10:24:32.673000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2641718151, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e0d90078-678e-4942-9005-3f07e01f9487", "crc32c": "f808bffa", @@ -1718,7 +1571,6 @@ "version": "2020-08-13T10:24:42.403000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1729,7 +1581,6 @@ "version": "2021-05-24T12:00:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 447, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -1740,7 +1591,6 @@ "version": "2020-08-13T10:24:36.065000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1751,7 +1601,6 @@ "version": "2020-08-13T10:24:35.373000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1762,7 +1611,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1773,7 +1621,6 @@ "version": "2020-08-13T10:24:33.458000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1784,7 +1631,6 @@ "version": "2020-08-13T10:24:35.281000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8092391798, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cb6827ec-6fdb-4f00-9f68-d8a7124a9c7b", "crc32c": "a573585b", @@ -1798,7 +1644,6 @@ "version": "2020-08-13T10:24:32.540000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8005753163, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_73a0e7a2-e7a5-43c7-8439-e6d2f3d3fd24", "crc32c": "f7f64c44", @@ -1812,7 +1657,6 @@ "version": "2020-08-13T10:24:31.350000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1823,7 +1667,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 522, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -1834,7 +1677,6 @@ "version": "2020-08-13T10:24:31.516000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1845,7 +1687,6 @@ "version": "2020-08-13T10:24:34.213000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2712770985, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9fc63729-e1a6-4f29-9ce5-d7e4c04b97b9", "crc32c": "edf0dc75", @@ -1859,7 +1700,6 @@ "version": "2021-02-09T07:42:30.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1110154771, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_66a01517-b283-4841-9529-539e2c718a5a", "crc32c": "f0c12312", @@ -1871,7 +1711,6 @@ "version": "2020-08-13T10:24:32.540000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1882,7 +1721,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1893,7 +1731,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1904,7 +1741,6 @@ "version": "2020-08-13T10:24:34.230000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1915,7 +1751,6 @@ "version": "2020-08-13T10:24:33.592000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29364453874, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1195598d-6c77-4af6-a0fd-5fb5a1204dc0", "crc32c": "89676a09", @@ -1929,7 +1764,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1940,7 +1774,6 @@ "version": "2021-02-09T08:50:46.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 35610254235, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_73559e8a-1b51-4a65-b0dd-5f8ce6d2e79f", "crc32c": "b7940494", @@ -1952,7 +1785,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1963,7 +1795,6 @@ "version": "2021-02-09T08:34:03.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1166855607, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d87b4666-ba29-4e33-8ecb-552171ff22c3", "crc32c": "f82fe55a", @@ -1975,7 +1806,6 @@ "version": "2021-02-09T09:40:11.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 40332614890, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_31b13924-fe64-4f21-ab6b-88589f7afe32", "crc32c": "ed4b4045", @@ -1987,7 +1817,6 @@ "version": "2020-08-13T10:24:31.936000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1077, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -1998,7 +1827,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2009,7 +1837,6 @@ "version": "2020-08-13T10:24:35.294000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2020,7 +1847,6 @@ "version": "2021-02-09T09:09:16.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 38131548530, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3d1b845d-f8d6-4c09-8d5d-b86eadf168c8", "crc32c": "59c9afb8", @@ -2032,7 +1858,6 @@ "version": "2020-08-13T10:24:35.307000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2043,7 +1868,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2054,7 +1878,6 @@ "version": "2020-08-13T10:24:34.199000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29298841392, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_64e4b5f0-ef82-4314-acc5-01a695238d31", "crc32c": "799c2f98", @@ -2068,7 +1891,6 @@ "version": "2020-08-13T10:24:35.184000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2079,7 +1901,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2090,7 +1911,6 @@ "version": "2020-08-13T10:24:31.660000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2101,7 +1921,6 @@ "version": "2020-08-13T10:24:33.499000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8054577078, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_eadaa69d-0f6a-4c24-a21d-136da13c117e", "crc32c": "492201cb", @@ -2115,7 +1934,6 @@ "version": "2020-08-13T10:24:31.312000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2126,7 +1944,6 @@ "version": "2020-08-13T10:24:34.352000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2137,7 +1954,6 @@ "version": "2020-08-13T10:24:32.588000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 28681149127, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0e8d3673-5109-41ee-9092-8b79baa6d3b1", "crc32c": "785f754e", @@ -2151,7 +1967,6 @@ "version": "2020-08-13T10:24:34.137000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2710626769, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e369361e-e2de-45e6-829b-47068daee3d8", "crc32c": "4ca806b7", @@ -2165,7 +1980,6 @@ "version": "2020-08-13T10:24:34.315000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2176,7 +1990,6 @@ "version": "2020-08-13T10:24:31.408000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 573, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2187,7 +2000,6 @@ "version": "2020-08-13T10:24:34.340000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8658421622, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_dabab5b8-d7bb-41c1-8b6f-a31edd0d97bb", "crc32c": "bbc13b86", @@ -2201,7 +2013,6 @@ "version": "2020-08-13T10:24:35.373000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29595349500, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c3b18ea4-a329-45a0-a8a4-458a22f496e8", "crc32c": "db939591", @@ -2215,7 +2026,6 @@ "version": "2021-02-09T07:51:37.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 36887446676, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1796e1b4-7b31-4652-8f43-43c0bde724fd", "crc32c": "318c8949", @@ -2227,7 +2037,6 @@ "version": "2020-08-13T10:24:33.579000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2238,7 +2047,6 @@ "version": "2020-08-13T10:24:34.304000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2249,7 +2057,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2260,7 +2067,6 @@ "version": "2020-08-13T10:24:43.036000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2271,7 +2077,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2282,7 +2087,6 @@ "version": "2020-08-13T10:24:35.011000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2531732699, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3c6fddd8-d7d5-4b6a-96ec-7ff0884bc7fa", "crc32c": "2ccba1a0", @@ -2296,7 +2100,6 @@ "version": "2020-08-13T10:24:32.846000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 7380079824, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_aa0d9a26-ec62-433f-8c07-543ae8188389", "crc32c": "f0e14d78", @@ -2310,7 +2113,6 @@ "version": "2020-08-13T10:24:34.972000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2527600833, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_692b6aec-9320-4e1d-bffb-6babf930040f", "crc32c": "ee665ac5", @@ -2324,7 +2126,6 @@ "version": "2020-08-13T10:24:31.028000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2335,7 +2136,6 @@ "version": "2020-08-13T10:24:35.049000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2346,7 +2146,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2357,7 +2156,6 @@ "version": "2020-08-13T10:24:31.920000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 898, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2368,7 +2166,6 @@ "version": "2020-08-13T10:24:34.113000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8205664547, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ea444f79-25fb-4170-9889-b9ab96fe86b2", "crc32c": "c7ff599a", @@ -2382,7 +2179,6 @@ "version": "2020-08-13T10:24:35.731000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2393,7 +2189,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2404,7 +2199,6 @@ "version": "2020-08-13T10:24:32.870000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2524321207, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_db65b244-3d7f-4823-a8a8-0bf86f213220", "crc32c": "f30b7f71", @@ -2418,7 +2212,6 @@ "version": "2020-08-13T10:24:32.490000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2567370695, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_dce50f55-e2ed-4c97-b36b-da609486752f", "crc32c": "69c93f77", @@ -2432,7 +2225,6 @@ "version": "2021-02-09T09:30:07.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37762807667, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7bbcdb92-bb0b-40a2-9e8a-4431c3e430e5", "crc32c": "ea6693a9", @@ -2444,7 +2236,6 @@ "version": "2021-02-09T09:55:41.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 74013925528, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_64d345e1-3582-4551-ae9f-1bc8aa018ad0", "crc32c": "d96afadd", @@ -2456,7 +2247,6 @@ "version": "2020-08-13T10:24:36.786000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2467,7 +2257,6 @@ "version": "2020-08-13T10:24:33.526000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2523843996, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a903180c-2c06-4056-9f39-56992dba8c71", "crc32c": "2820e86d", @@ -2481,7 +2270,6 @@ "version": "2020-08-13T10:24:32.576000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 7951923434, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_01b73e38-a2b2-4ec6-b4a0-831e1258c3ea", "crc32c": "f36645a9", @@ -2495,7 +2283,6 @@ "version": "2020-08-13T10:24:41.711000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2506,7 +2293,6 @@ "version": "2020-08-13T10:24:30.656000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 907, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2517,7 +2303,6 @@ "version": "2021-02-09T06:58:40.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 928343192, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cbf909fc-caa8-422a-8793-2ec9cfbf15c7", "crc32c": "04bf8663", @@ -2529,7 +2314,6 @@ "version": "2020-08-13T10:24:40.340000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2540,7 +2324,6 @@ "version": "2020-08-13T10:24:42.443000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2551,7 +2334,6 @@ "version": "2020-08-13T10:24:32.552000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29591566635, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0f549aae-515b-4504-9e85-07269eb59db0", "crc32c": "41e2731d", @@ -2565,7 +2347,6 @@ "version": "2021-02-09T09:23:58.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 36787725415, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7cd9be33-4c18-42c7-a1ba-253be9ea2c2e", "crc32c": "52b54eb5", @@ -2577,7 +2358,6 @@ "version": "2020-08-13T10:24:31.652000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2588,7 +2368,6 @@ "version": "2020-08-13T10:24:35.836000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2599,7 +2378,6 @@ "version": "2020-08-13T10:24:31.143000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2610,7 +2388,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2621,7 +2398,6 @@ "version": "2020-08-13T10:24:34.163000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2632,7 +2408,6 @@ "version": "2021-02-09T08:41:26.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1539661052, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6a9a196e-4f14-49e7-8668-8c4e36f4972f", "crc32c": "bd72b77c", @@ -2644,7 +2419,6 @@ "version": "2020-08-13T10:24:32.961000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2655,7 +2429,6 @@ "version": "2020-08-13T10:24:31.731000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2666,7 +2439,6 @@ "version": "2020-08-13T10:24:30.811000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2677,7 +2449,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2688,7 +2459,6 @@ "version": "2020-08-13T10:24:40.486000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2699,7 +2469,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2710,7 +2479,6 @@ "version": "2020-08-13T10:24:42.013000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2721,7 +2489,6 @@ "version": "2020-08-13T10:24:35.124000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2732,7 +2499,6 @@ "version": "2020-08-13T10:24:35.346000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2740930201, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1e6ca3ca-eca6-47c5-94dd-0250dc15d885", "crc32c": "bbc02ddb", @@ -2746,7 +2512,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2757,7 +2522,6 @@ "version": "2021-02-09T09:03:28.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 39749424357, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cfb5458f-7625-4b83-9098-3aca7ac7180a", "crc32c": "2012939c", @@ -2769,7 +2533,6 @@ "version": "2020-08-13T10:24:31.320000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2780,7 +2543,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2791,7 +2553,6 @@ "version": "2020-08-13T10:24:32.528000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2559623513, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5e2dbfa6-a1fd-42de-9b00-184e6ba13c28", "crc32c": "327c1a46", @@ -2805,7 +2566,6 @@ "version": "2020-08-13T10:24:32.055000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 5498156481, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_38ef4491-9ec7-4149-8a67-70cf17488149", "crc32c": "02df1ea7", @@ -2819,7 +2579,6 @@ "version": "2021-02-09T07:08:34.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 962998594, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2dd23545-b70a-46b6-94dc-d196d02ab1cd", "crc32c": "c818d535", @@ -2831,7 +2590,6 @@ "version": "2020-08-13T10:24:34.984000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8440668116, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c23bd7fa-dd83-4b87-bf02-088f26b19201", "crc32c": "4c5191c5", @@ -2845,7 +2603,6 @@ "version": "2020-08-13T10:24:38.998000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2856,7 +2613,6 @@ "version": "2020-08-13T10:24:35.892000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2867,7 +2623,6 @@ "version": "2020-08-13T10:24:33.592000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2878,7 +2633,6 @@ "version": "2020-08-13T10:24:30.896000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2889,7 +2643,6 @@ "version": "2020-08-13T10:24:35.307000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2636369466, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_45726a28-f1c7-48a8-8805-f42cc0593188", "crc32c": "ead420fa", @@ -2903,7 +2656,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2914,7 +2666,6 @@ "version": "2020-08-13T10:24:36.007000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2925,7 +2676,6 @@ "version": "2020-08-13T10:24:32.339000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2936,7 +2686,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2947,7 +2696,6 @@ "version": "2021-02-09T09:00:25.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 38153744901, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ed6691ee-a3e3-48db-b67d-9ecfca5d4ba0", "crc32c": "2f566525", @@ -2959,7 +2707,6 @@ "version": "2020-08-13T10:24:34.377000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2970,7 +2717,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2981,7 +2727,6 @@ "version": "2020-08-13T10:24:31.258000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 572, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -2992,7 +2737,6 @@ "version": "2020-08-13T10:24:30.949000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3003,7 +2747,6 @@ "version": "2021-02-09T09:09:18.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 36724627878, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b58af2aa-b6f4-4446-9ded-e517c2ca76ee", "crc32c": "3d1cd02c", @@ -3015,7 +2758,6 @@ "version": "2020-08-13T10:24:34.972000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3026,7 +2768,6 @@ "version": "2021-02-09T09:20:58.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 39837428286, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_47a36c88-3184-4290-98cf-a01a4b91771e", "crc32c": "c87c5692", @@ -3038,7 +2779,6 @@ "version": "2020-08-13T10:24:35.320000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8117405452, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1cb76395-d184-489d-9bd7-d54f91757e23", "crc32c": "433426ba", @@ -3052,7 +2792,6 @@ "version": "2020-08-13T10:24:35.049000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2754382848, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a82c287c-42e3-4e70-80c1-f9c7dcea74e9", "crc32c": "f7fac904", @@ -3066,7 +2805,6 @@ "version": "2020-08-13T10:24:31.769000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3077,7 +2815,6 @@ "version": "2020-08-13T10:24:32.624000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 30029847641, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7a17314a-d973-4b75-a978-8935b3a71e01", "crc32c": "fd3371ca", @@ -3091,7 +2828,6 @@ "version": "2020-08-13T10:24:35.061000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8524527518, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0f524dab-036c-4113-98e2-c5b32076fa04", "crc32c": "e4ea5733", @@ -3105,7 +2841,6 @@ "version": "2021-02-09T08:29:35.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1726693893, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_dbb60d21-66b0-4fb9-8147-f16804e03291", "crc32c": "113c4605", @@ -3117,7 +2852,6 @@ "version": "2020-08-13T10:24:40.584000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3128,7 +2862,6 @@ "version": "2020-08-13T10:24:32.650000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3139,7 +2872,6 @@ "version": "2020-08-13T10:24:35.346000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3150,7 +2882,6 @@ "version": "2020-08-13T10:24:42.208000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3161,7 +2892,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3172,7 +2902,6 @@ "version": "2020-08-13T10:24:35.160000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2640570306, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3c41f6db-d0c3-43da-b76f-9b0a0335db81", "crc32c": "e6605ec9", @@ -3186,7 +2915,6 @@ "version": "2020-08-13T10:24:41.822000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 416, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3197,7 +2925,6 @@ "version": "2020-08-13T10:24:31.393000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 573, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3208,7 +2935,6 @@ "version": "2020-08-13T10:24:31.550000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3219,7 +2945,6 @@ "version": "2020-08-13T10:24:32.375000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 5592765334, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a3f5fc1c-3faa-44cb-ad4e-e81065a44933", "crc32c": "f1505101", @@ -3233,7 +2958,6 @@ "version": "2020-08-13T10:24:42.930000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3244,7 +2968,6 @@ "version": "2021-02-09T08:44:10.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37541412008, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_08e096ac-08f8-4ec4-a8ab-0cf6e5e821fe", "crc32c": "dcc73c1d", @@ -3256,7 +2979,6 @@ "version": "2020-08-13T10:24:34.149000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8391657139, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4b87ddb9-714f-4f20-9291-e47651e163a9", "crc32c": "bf976dec", @@ -3270,7 +2992,6 @@ "version": "2021-02-09T08:31:12.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1518839816, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c17dce00-5342-4ef9-b431-7b7b31a92cca", "crc32c": "5c432ac6", @@ -3282,7 +3003,6 @@ "version": "2020-08-13T10:24:31.585000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3293,7 +3013,6 @@ "version": "2020-08-13T10:24:32.893000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3304,7 +3023,6 @@ "version": "2020-08-13T10:24:34.365000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3315,7 +3033,6 @@ "version": "2020-08-13T10:24:30.987000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3326,7 +3043,6 @@ "version": "2020-08-13T10:24:32.363000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3337,7 +3053,6 @@ "version": "2021-02-09T09:38:10.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 39885962156, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b58fd5b9-7cee-41c9-934f-49d5a8e7353e", "crc32c": "8681eff4", @@ -3349,7 +3064,6 @@ "version": "2021-02-09T07:33:37.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1808328147, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1fe3ca9c-6f19-40b4-888c-eba63b1db841", "crc32c": "7a026058", @@ -3361,7 +3075,6 @@ "version": "2021-02-09T08:06:13.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 33526153780, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a614ecde-cd68-4c6e-b30f-57f5db399101", "crc32c": "910292ed", @@ -3373,7 +3086,6 @@ "version": "2020-08-13T10:24:32.882000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3384,7 +3096,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3395,7 +3106,6 @@ "version": "2020-08-13T10:24:30.748000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 953, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3406,7 +3116,6 @@ "version": "2020-08-13T10:24:41.011000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3417,7 +3126,6 @@ "version": "2021-02-09T09:48:19.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 41248867155, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_da3e3adc-5b23-46bc-b88f-a436a2e80747", "crc32c": "c11b58da", @@ -3429,7 +3137,6 @@ "version": "2020-08-13T10:24:32.612000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8113680451, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6e664e9a-7344-4809-a48d-4aff34415976", "crc32c": "ca2033c8", @@ -3443,7 +3150,6 @@ "version": "2021-02-09T08:55:35.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1518855002, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1574e129-3f6e-497f-8fc2-f58c833e2fd9", "crc32c": "b694799b", @@ -3455,7 +3161,6 @@ "version": "2021-02-09T07:47:33.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 34747308229, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fba73888-3f2a-487b-b91c-5aff91741195", "crc32c": "cf7f3ce3", @@ -3467,7 +3172,6 @@ "version": "2020-08-13T10:24:32.600000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3478,7 +3182,6 @@ "version": "2020-08-13T10:24:35.358000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8643455475, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_72e8ba6a-2658-4fc0-8c1c-d64c756659a4", "crc32c": "05222286", @@ -3492,7 +3195,6 @@ "version": "2020-08-13T10:24:33.616000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8058944367, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9808343b-da84-432e-99dd-5d306cc70edf", "crc32c": "a9c71acc", @@ -3506,7 +3208,6 @@ "version": "2020-08-13T10:24:32.846000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3517,7 +3218,6 @@ "version": "2020-08-13T10:24:31.341000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3528,7 +3228,6 @@ "version": "2021-02-09T08:14:41.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1212983844, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9270f2ba-13a9-4e77-a5b1-d9536b0e0fc8", "crc32c": "d6563e51", @@ -3540,7 +3239,6 @@ "version": "2020-08-13T10:24:32.686000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3551,7 +3249,6 @@ "version": "2020-08-13T10:24:33.438000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3562,7 +3259,6 @@ "version": "2020-08-13T10:24:42.049000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3573,7 +3269,6 @@ "version": "2020-08-13T10:24:43.095000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3584,7 +3279,6 @@ "version": "2020-08-13T10:24:41.751000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 416, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3595,7 +3289,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3606,7 +3299,6 @@ "version": "2020-08-13T10:24:32.721000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3617,7 +3309,6 @@ "version": "2021-02-09T08:38:30.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1816595621, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1a944af7-0c3d-44eb-81cb-b8a17272dde1", "crc32c": "805c7637", @@ -3629,7 +3320,6 @@ "version": "2020-08-13T10:24:32.044000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 47340957033, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cf1332d5-400f-4a8e-b180-a95a6deffb8d", "crc32c": "f6c3976a", @@ -3643,7 +3333,6 @@ "version": "2020-08-13T10:24:41.147000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3654,7 +3343,6 @@ "version": "2020-08-13T10:24:34.113000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3665,7 +3353,6 @@ "version": "2020-08-13T10:24:32.515000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29927666255, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4aad1dbc-3fef-4541-90f5-daab4de02fcc", "crc32c": "6a4349a3", @@ -3679,7 +3366,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3690,7 +3376,6 @@ "version": "2021-02-09T08:41:35.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1005304091, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5b612f1d-25b6-4e66-9a73-932a21619fda", "crc32c": "f6d69eb7", @@ -3702,7 +3387,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3713,7 +3397,6 @@ "version": "2020-08-13T10:24:34.213000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3724,7 +3407,6 @@ "version": "2020-08-13T10:24:33.664000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3735,7 +3417,6 @@ "version": "2020-08-13T10:24:33.403000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3746,7 +3427,6 @@ "version": "2020-08-13T10:24:34.389000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3757,7 +3437,6 @@ "version": "2021-02-09T09:31:18.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 38861399831, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0f1fe40f-6ba7-4842-aa59-5187a8a84509", "crc32c": "eb444174", @@ -3769,7 +3448,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3780,7 +3458,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3791,7 +3468,6 @@ "version": "2020-08-13T10:24:35.061000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3802,7 +3478,6 @@ "version": "2020-08-13T10:24:31.418000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 571, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3813,7 +3488,6 @@ "version": "2020-08-13T10:24:30.684000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 928, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3824,7 +3498,6 @@ "version": "2020-08-13T10:24:32.858000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3835,7 +3508,6 @@ "version": "2020-08-13T10:24:31.853000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3846,7 +3518,6 @@ "version": "2021-02-09T07:41:29.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 35811504976, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2400e232-fab4-4d4e-a117-88e3521c32f3", "crc32c": "542caaf7", @@ -3858,7 +3529,6 @@ "version": "2020-08-13T10:24:36.291000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3869,7 +3539,6 @@ "version": "2021-02-09T09:05:31.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37705449199, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_db018aa9-e5f9-4cb7-ab8b-8a3d268d6a9e", "crc32c": "fb5b0b7a", @@ -3881,7 +3550,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3892,7 +3560,6 @@ "version": "2020-08-13T10:24:31.911000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1230, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3903,7 +3570,6 @@ "version": "2020-08-13T10:24:35.073000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3914,7 +3580,6 @@ "version": "2021-02-09T07:28:57.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1567802720, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3a5aa503-7718-4e75-8b44-0f66b4a968cb", "crc32c": "a2485471", @@ -3926,7 +3591,6 @@ "version": "2020-08-13T10:24:35.477000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 24647352163, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5c55c350-77b6-47ad-8c63-a54acae633cc", "crc32c": "5a93fd9e", @@ -3940,7 +3604,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3951,7 +3614,6 @@ "version": "2020-08-13T10:24:41.371000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3962,7 +3624,6 @@ "version": "2020-08-13T10:24:31.711000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3973,7 +3634,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3984,7 +3644,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -3995,7 +3654,6 @@ "version": "2020-08-13T10:24:30.639000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 912, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4006,7 +3664,6 @@ "version": "2020-08-13T10:24:32.858000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 24826056416, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a266d3e1-1dce-4606-be5d-b74e93c91783", "crc32c": "4bf90bcd", @@ -4020,7 +3677,6 @@ "version": "2020-08-13T10:24:33.499000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4031,7 +3687,6 @@ "version": "2020-08-13T10:24:35.320000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4042,7 +3697,6 @@ "version": "2020-08-13T10:24:33.384000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2752979126, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c2fdcc28-3eba-40f7-aa9b-41a7f2630879", "crc32c": "fa31a9a4", @@ -4056,7 +3710,6 @@ "version": "2020-08-13T10:24:32.661000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29568944094, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fb89d42e-84a2-4771-addf-036e22b5d411", "crc32c": "942a2b3c", @@ -4070,7 +3723,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4081,7 +3733,6 @@ "version": "2020-08-13T10:24:31.677000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4092,7 +3743,6 @@ "version": "2020-08-13T10:24:34.984000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4103,7 +3753,6 @@ "version": "2020-08-13T10:24:31.527000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4114,7 +3763,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4125,7 +3773,6 @@ "version": "2020-08-13T10:24:37.787000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4136,7 +3783,6 @@ "version": "2021-02-09T10:39:06.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 66992698678, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_507fc8a8-dea8-448d-a8f6-b99d6145c232", "crc32c": "250d98bb", @@ -4148,7 +3794,6 @@ "version": "2021-02-09T08:32:45.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1429598310, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6613496e-73a0-427f-9d60-8d9967ac47e8", "crc32c": "43ee58d0", @@ -4160,7 +3805,6 @@ "version": "2021-02-09T08:18:47.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1489412801, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1adcac3d-e01f-412e-ba04-59865b2d9b20", "crc32c": "ef7c991d", @@ -4172,7 +3816,6 @@ "version": "2020-08-13T10:24:33.552000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 28269232850, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3b387d39-9f87-42c6-82d9-142abb485122", "crc32c": "dcd651c1", @@ -4186,7 +3829,6 @@ "version": "2020-08-13T10:24:32.906000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4197,7 +3839,6 @@ "version": "2020-08-13T10:24:30.739000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 950, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4208,7 +3849,6 @@ "version": "2020-08-13T10:24:31.072000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4219,7 +3859,6 @@ "version": "2020-08-13T10:24:34.187000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4230,7 +3869,6 @@ "version": "2020-08-13T10:24:32.067000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 34186133752, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7174b07a-bbc1-4796-9071-a52800c2db12", "crc32c": "091840f1", @@ -4244,7 +3882,6 @@ "version": "2021-02-09T09:15:47.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37197953325, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f379bb72-faae-47a2-a757-9d5301fafe75", "crc32c": "ca73b12e", @@ -4256,7 +3893,6 @@ "version": "2020-08-13T10:24:42.092000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4267,7 +3903,6 @@ "version": "2020-08-13T10:24:34.921000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2644720206, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_40689d99-e0e4-4637-ab3d-29ac7cf29496", "crc32c": "1f131d31", @@ -4281,7 +3916,6 @@ "version": "2020-08-13T10:24:32.339000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 5473797659, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9d24fef4-d7ac-42bd-8754-376642d97679", "crc32c": "bc1f78d2", @@ -4295,7 +3929,6 @@ "version": "2020-08-13T10:24:35.358000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4306,7 +3939,6 @@ "version": "2020-08-13T10:24:32.351000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 31604322898, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_4cccdd0c-adeb-4d23-8abb-cb9f91f9d4fc", "crc32c": "737b2a70", @@ -4320,7 +3952,6 @@ "version": "2020-08-13T10:24:39.020000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4331,7 +3962,6 @@ "version": "2021-02-09T09:16:35.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37171815921, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_de044165-6e46-4bde-8761-780ef577dd91", "crc32c": "29f9c047", @@ -4343,7 +3973,6 @@ "version": "2020-08-13T10:24:32.834000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4354,7 +3983,6 @@ "version": "2020-08-13T10:24:35.184000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 26524646588, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ddaea5ad-452a-4979-bb95-1c10e052b24e", "crc32c": "6a41c885", @@ -4368,7 +3996,6 @@ "version": "2021-02-09T09:21:44.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37546376084, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7b10b449-d20e-478e-8182-9689f849080f", "crc32c": "99f17ac7", @@ -4380,7 +4007,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4391,7 +4017,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4402,7 +4027,6 @@ "version": "2020-08-13T10:24:33.604000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4413,7 +4037,6 @@ "version": "2020-08-13T10:24:33.031000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4424,7 +4047,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4435,7 +4057,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4446,7 +4067,6 @@ "version": "2020-08-13T10:24:41.954000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4457,7 +4077,6 @@ "version": "2020-08-13T10:24:32.624000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4468,7 +4087,6 @@ "version": "2020-08-13T10:24:33.526000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4479,7 +4097,6 @@ "version": "2020-08-13T10:24:33.485000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4490,7 +4107,6 @@ "version": "2020-08-13T10:24:41.585000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4501,7 +4117,6 @@ "version": "2020-08-13T10:24:34.175000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2695339160, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f114568a-30a8-4041-9dfc-eace4ecfdcf0", "crc32c": "2e172bb1", @@ -4515,7 +4130,6 @@ "version": "2021-02-09T09:16:22.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 40477878537, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fd43bb1b-9a0f-4ce7-b78d-c895e548ccac", "crc32c": "3c606ed1", @@ -4527,7 +4141,6 @@ "version": "2020-08-13T10:24:35.817000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4538,7 +4151,6 @@ "version": "2020-08-13T10:24:35.901000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4549,7 +4161,6 @@ "version": "2020-08-13T10:24:42.170000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4560,7 +4171,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4571,7 +4181,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4582,7 +4191,6 @@ "version": "2020-08-13T10:24:35.770000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4593,7 +4201,6 @@ "version": "2020-08-13T10:24:32.067000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4604,7 +4211,6 @@ "version": "2020-08-13T10:24:33.438000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2606430396, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6e189345-cf7d-4dc2-b967-bce909a60daf", "crc32c": "e8bb45c5", @@ -4618,7 +4224,6 @@ "version": "2020-08-13T10:24:35.333000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4629,7 +4234,6 @@ "version": "2021-02-09T08:06:08.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 38529883052, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9b14d584-d798-4c14-aa36-2c25435eee7d", "crc32c": "9625ab49", @@ -4641,7 +4245,6 @@ "version": "2021-02-09T08:52:45.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1725559169, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_90b4289c-1b72-4719-b3ec-61c930fd656f", "crc32c": "ead979ce", @@ -4653,7 +4256,6 @@ "version": "2020-08-13T10:24:31.575000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4664,7 +4266,6 @@ "version": "2020-08-13T10:24:41.439000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4675,7 +4276,6 @@ "version": "2020-08-13T10:24:33.086000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 7932249292, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_509c3002-913e-4403-af5c-e9fdd912b383", "crc32c": "1f2c4145", @@ -4689,7 +4289,6 @@ "version": "2020-08-13T10:24:31.188000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4700,7 +4299,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4711,7 +4309,6 @@ "version": "2020-08-13T10:24:36.075000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4722,7 +4319,6 @@ "version": "2020-08-13T10:24:31.205000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4733,7 +4329,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4744,7 +4339,6 @@ "version": "2020-08-13T10:24:42.991000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4755,7 +4349,6 @@ "version": "2020-08-13T10:24:41.649000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4766,7 +4359,6 @@ "version": "2020-08-13T10:24:33.060000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2537235360, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_94040803-02b3-44a5-9a8a-0f068639032a", "crc32c": "2e2f20dc", @@ -4780,7 +4372,6 @@ "version": "2020-08-13T10:24:32.503000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8061388633, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3cbbd837-be9e-4771-8778-845c99a8893c", "crc32c": "ef0d337b", @@ -4794,7 +4385,6 @@ "version": "2021-02-09T10:23:06.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 69828774828, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a3f8888a-b975-4bba-87bf-2c0b5e4584c5", "crc32c": "e682591d", @@ -4806,7 +4396,6 @@ "version": "2020-08-13T10:24:31.902000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 634, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4817,7 +4406,6 @@ "version": "2020-08-13T10:24:35.268000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2771712478, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_445b501b-2630-485f-a38a-b0b1f2ab075c", "crc32c": "5029ff14", @@ -4831,7 +4419,6 @@ "version": "2020-08-13T10:24:30.849000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4842,7 +4429,6 @@ "version": "2020-08-13T10:24:31.761000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4853,7 +4439,6 @@ "version": "2020-08-13T10:24:30.711000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 954, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4864,7 +4449,6 @@ "version": "2020-08-13T10:24:41.802000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 416, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4875,7 +4459,6 @@ "version": "2020-08-13T10:24:32.503000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4886,7 +4469,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4897,7 +4479,6 @@ "version": "2020-08-13T10:24:42.179000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4908,7 +4489,6 @@ "version": "2020-08-13T10:24:40.179000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4919,7 +4499,6 @@ "version": "2021-02-09T09:36:18.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 37432413492, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_384ab538-2298-4dd0-9e7e-e9f9b646cea3", "crc32c": "eb901da6", @@ -4931,7 +4510,6 @@ "version": "2020-08-13T10:24:34.187000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8374506413, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_058ef571-0842-4255-a4b2-290c6b20be84", "crc32c": "c7e7b5b6", @@ -4945,7 +4523,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4956,7 +4533,6 @@ "version": "2020-08-13T10:24:42.112000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4967,7 +4543,6 @@ "version": "2020-08-13T10:24:32.612000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4978,7 +4553,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -4989,7 +4563,6 @@ "version": "2020-08-13T10:24:35.124000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2813852808, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_06f09e02-e0d9-43ce-80a3-8a572d61ec00", "crc32c": "b8d01ea7", @@ -5003,7 +4576,6 @@ "version": "2020-08-13T10:24:31.702000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5014,7 +4586,6 @@ "version": "2020-08-13T10:24:34.100000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5025,7 +4596,6 @@ "version": "2020-08-13T10:24:42.241000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5036,7 +4606,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5047,7 +4616,6 @@ "version": "2020-08-13T10:24:30.976000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5058,7 +4626,6 @@ "version": "2020-08-13T10:24:35.294000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 28826974589, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fbd1ce3a-9b08-4858-9c48-df24261eceb6", "crc32c": "225c5259", @@ -5072,7 +4639,6 @@ "version": "2020-08-13T10:24:41.422000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5083,7 +4649,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5094,7 +4659,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5105,7 +4669,6 @@ "version": "2020-08-13T10:24:30.782000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 956, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5116,7 +4679,6 @@ "version": "2020-08-13T10:24:34.934000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5127,7 +4689,6 @@ "version": "2020-08-13T10:24:35.011000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5138,7 +4699,6 @@ "version": "2020-08-13T10:24:32.528000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5149,7 +4709,6 @@ "version": "2020-08-13T10:24:34.365000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2725428706, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ed96c39c-ac5b-4265-854b-2773795406ac", "crc32c": "68fdd3fd", @@ -5163,7 +4722,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5174,7 +4732,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5185,7 +4742,6 @@ "version": "2020-08-13T10:24:42.220000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5196,7 +4752,6 @@ "version": "2020-08-13T10:24:43.121000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5207,7 +4762,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5218,7 +4772,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5229,7 +4782,6 @@ "version": "2020-08-13T10:24:35.172000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8019487890, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0ceddb9b-834e-4554-b0d4-e932e1083857", "crc32c": "2ca4c9b3", @@ -5243,7 +4795,6 @@ "version": "2020-08-13T10:24:33.628000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29501970647, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6b9e121a-227e-4a04-9f50-d56cfddf5cb0", "crc32c": "d28c822b", @@ -5257,7 +4808,6 @@ "version": "2020-08-13T10:24:36.136000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5268,7 +4818,6 @@ "version": "2020-08-13T10:24:34.958000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29083825534, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_49f21b80-1466-4160-beec-8a93868c391d", "crc32c": "9253dbdb", @@ -5282,7 +4831,6 @@ "version": "2020-08-13T10:24:34.958000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5293,7 +4841,6 @@ "version": "2020-08-13T10:24:42.576000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5304,7 +4851,6 @@ "version": "2020-08-13T10:24:31.063000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5315,7 +4861,6 @@ "version": "2020-08-13T10:24:34.230000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8326409166, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_dd60a727-5108-474a-ace9-9ece332cfbe1", "crc32c": "6b83ece4", @@ -5329,7 +4874,6 @@ "version": "2020-08-13T10:24:41.338000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5340,7 +4884,6 @@ "version": "2020-08-13T10:24:35.694000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 351, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5351,7 +4894,6 @@ "version": "2020-08-13T10:24:34.340000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5362,7 +4904,6 @@ "version": "2020-08-13T10:24:35.136000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5373,7 +4914,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5384,7 +4924,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 470, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -5395,7 +4934,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5406,7 +4944,6 @@ "version": "2021-02-09T08:58:30.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 35795762149, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9d65c949-0eda-4ee7-a06f-90df40b68410", "crc32c": "bbd4b704", @@ -5418,7 +4955,6 @@ "version": "2020-08-13T10:24:33.471000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5429,7 +4965,6 @@ "version": "2020-08-13T10:24:33.485000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2631996916, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e79f0bde-37ec-425c-a804-8134646898e8", "crc32c": "d61e54e1", @@ -5443,7 +4978,6 @@ "version": "2020-08-13T10:24:42.103000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5454,7 +4988,6 @@ "version": "2020-08-13T10:24:32.079000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 619, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5465,7 +4998,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5476,7 +5008,6 @@ "version": "2020-08-13T10:24:32.709000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2687326692, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_053ddc57-64a6-4d71-9366-a398f6231137", "crc32c": "d5974d2d", @@ -5490,7 +5021,6 @@ "version": "2020-08-13T10:24:35.148000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5501,7 +5031,6 @@ "version": "2021-02-09T07:18:44.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 979209160, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_92321fe8-831c-419c-8129-198781ffa3c6", "crc32c": "b1d3e0d6", @@ -5513,7 +5042,6 @@ "version": "2020-08-13T10:24:31.749000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5524,7 +5052,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5535,7 +5062,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5546,7 +5072,6 @@ "version": "2021-02-09T09:09:17.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1746029403, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_27c10e50-d47c-4818-bd73-1d5babde7092", "crc32c": "6b83b07d", @@ -5558,7 +5083,6 @@ "version": "2021-02-09T09:14:03.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 40638797476, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_799ac6e1-1353-46ed-88cf-4c4ed89b483e", "crc32c": "8b5edab1", @@ -5570,7 +5094,6 @@ "version": "2020-08-13T10:24:34.125000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5581,7 +5104,6 @@ "version": "2021-02-09T08:39:32.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1739218903, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_c742690a-33f9-4600-91ce-a79b0d766778", "crc32c": "9801aa22", @@ -5593,7 +5115,6 @@ "version": "2020-08-13T10:24:35.136000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8754921371, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9b5a2347-a15b-40a9-9321-f7dcdc30c17a", "crc32c": "4cbe4aa1", @@ -5607,7 +5128,6 @@ "version": "2020-08-13T10:24:31.267000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5618,7 +5138,6 @@ "version": "2020-08-13T10:24:35.024000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8271806821, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0cfdf6c3-e7ba-48d7-af09-829958a14a07", "crc32c": "edcba28b", @@ -5632,7 +5151,6 @@ "version": "2021-02-09T09:01:07.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1833252406, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6cfe6b41-3c09-4129-a886-a94a2900cb4d", "crc32c": "63a21c33", @@ -5644,7 +5162,6 @@ "version": "2021-02-09T08:39:50.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1807104323, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8aba3d87-55c8-4921-9834-eef52ae91525", "crc32c": "7144c6ad", @@ -5656,7 +5173,6 @@ "version": "2021-02-09T08:23:48.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1461642406, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f6ecaca2-a86c-43fa-a9ae-154a3c22dc76", "crc32c": "1b9fb227", @@ -5668,7 +5184,6 @@ "version": "2020-08-13T10:24:33.567000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2528997831, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0b075972-2ccb-450d-81d0-229543ea824f", "crc32c": "428e58e4", @@ -5682,7 +5197,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5693,7 +5207,6 @@ "version": "2020-08-13T10:24:36.056000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5704,7 +5217,6 @@ "version": "2021-02-09T08:06:02.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 36589711286, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bd384fa1-b892-4a0a-8b73-fb2f3b7b1fd5", "crc32c": "7a4f7b66", @@ -5716,7 +5228,6 @@ "version": "2020-08-13T10:24:32.196000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 5367717662, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_68fa3fff-3e98-4d72-a60a-aec8bdb36396", "crc32c": "cae7e932", @@ -5730,7 +5241,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5741,7 +5251,6 @@ "version": "2020-08-13T10:24:32.721000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8302306991, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_f400b4b8-1c0c-4071-87dc-739e412cf717", "crc32c": "dcb57b6b", @@ -5755,7 +5264,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5766,7 +5274,6 @@ "version": "2020-08-13T10:24:33.579000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8043294313, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_10dcc5ba-960c-4646-9247-c6937b4344cf", "crc32c": "54158af7", @@ -5780,7 +5287,6 @@ "version": "2020-08-13T10:24:41.693000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5791,7 +5297,6 @@ "version": "2020-08-13T10:24:35.036000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5802,7 +5307,6 @@ "version": "2020-08-13T10:24:41.945000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5813,7 +5317,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5824,7 +5327,6 @@ "version": "2020-08-13T10:24:33.420000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 30281869308, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_bd4156db-bab0-4f0c-8134-d8c55b18af26", "crc32c": "1e38ec09", @@ -5838,7 +5340,6 @@ "version": "2020-08-13T10:24:30.629000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 925, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5849,7 +5350,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5860,7 +5360,6 @@ "version": "2020-08-13T10:24:32.399000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5871,7 +5370,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5882,7 +5380,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5893,7 +5390,6 @@ "version": "2020-08-13T10:24:32.637000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2660951387, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_5a7db901-5469-46df-98ee-c18c5f699b38", "crc32c": "da177890", @@ -5907,7 +5403,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5918,7 +5413,6 @@ "version": "2020-08-13T10:24:32.564000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2606621962, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_94f359a4-7b77-4eb1-b94a-703a35644886", "crc32c": "9034c3aa", @@ -5932,7 +5426,6 @@ "version": "2020-08-13T10:24:34.242000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29054731201, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_47bbd010-565c-401a-bba2-50b5938ba62a", "crc32c": "7dcdd27c", @@ -5946,7 +5439,6 @@ "version": "2020-08-13T10:24:33.384000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5957,7 +5449,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5968,7 +5459,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5979,7 +5469,6 @@ "version": "2020-08-13T10:24:31.722000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -5990,7 +5479,6 @@ "version": "2020-08-13T10:24:34.997000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 30747994816, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fd6f1c2d-4e3f-4c7a-9c6d-51edce6ca2a1", "crc32c": "f598963e", @@ -6004,7 +5492,6 @@ "version": "2020-08-13T10:24:34.242000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6015,7 +5502,6 @@ "version": "2020-08-13T10:24:34.389000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 31484564592, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6e602e50-2565-4f5a-bee6-72888fc6ef14", "crc32c": "9d30fc3a", @@ -6029,7 +5515,6 @@ "version": "2020-08-13T10:24:33.639000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2715677737, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_d9985d54-10aa-44d9-b67a-7a11b9c33ed4", "crc32c": "9a7d8e5a", @@ -6043,7 +5528,6 @@ "version": "2020-08-13T10:24:32.019000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 5421199497, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_da792aa3-34c0-4be2-bb8c-ea92ab43bc19", "crc32c": "b99ebffb", @@ -6057,7 +5541,6 @@ "version": "2020-08-13T10:24:35.333000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 27754150835, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b0801ff8-a5c5-4be3-92b9-f125bf3d15a7", "crc32c": "d78ade9f", @@ -6071,7 +5554,6 @@ "version": "2020-08-13T10:24:33.652000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8088047660, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_caf3e975-1520-4e33-a51e-341c55f39119", "crc32c": "5966dc11", @@ -6085,7 +5567,6 @@ "version": "2020-08-13T10:24:41.721000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6096,7 +5577,6 @@ "version": "2020-08-13T10:24:32.208000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 611, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6107,7 +5587,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6118,7 +5597,6 @@ "version": "2020-08-13T10:24:31.594000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6129,7 +5607,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6140,7 +5617,6 @@ "version": "2020-08-13T10:24:34.921000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6151,7 +5627,6 @@ "version": "2020-08-13T10:24:35.998000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6162,7 +5637,6 @@ "version": "2020-08-13T10:24:35.433000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6173,7 +5647,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6184,7 +5657,6 @@ "version": "2020-08-13T10:24:33.567000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6195,7 +5667,6 @@ "version": "2020-08-13T10:24:33.471000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29226036630, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_829acc9e-2f00-47be-85d5-8ba042c5455d", "crc32c": "da0ef6da", @@ -6209,7 +5680,6 @@ "version": "2020-08-13T10:24:31.081000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6220,7 +5690,6 @@ "version": "2021-02-09T07:11:23.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1565901227, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_7e411aad-6f02-48f2-99f6-7f814540fedd", "crc32c": "56d63318", @@ -6232,7 +5701,6 @@ "version": "2020-08-13T10:24:32.588000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 610, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6243,7 +5711,6 @@ "version": "2020-08-13T10:24:32.698000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6254,7 +5721,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6265,7 +5731,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6276,7 +5741,6 @@ "version": "2020-08-13T10:24:30.696000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 930, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6287,7 +5751,6 @@ "version": "2020-08-13T10:24:34.997000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6298,7 +5761,6 @@ "version": "2020-08-13T10:24:42.003000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 354, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6309,7 +5771,6 @@ "version": "2021-02-09T09:38:19.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 38824360973, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_e32cd23e-1bd2-4c5f-94bf-968f95d6f2c0", "crc32c": "7396296b", @@ -6321,7 +5782,6 @@ "version": "2021-02-09T08:21:16.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1740863440, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_b52f8455-679d-43f5-9de3-c1cbf6b56a70", "crc32c": "d45bc865", @@ -6333,7 +5793,6 @@ "version": "2020-08-13T10:24:33.109000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6344,7 +5803,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6355,7 +5813,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6366,7 +5823,6 @@ "version": "2020-08-13T10:24:42.543000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6377,7 +5833,6 @@ "version": "2020-08-13T10:24:34.377000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8585695915, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_ae699a07-7b00-4967-b977-d86479e58249", "crc32c": "797740d6", @@ -6391,7 +5846,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6402,7 +5856,6 @@ "version": "2020-08-13T10:24:32.834000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2436061386, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_54858ab1-fe9e-4891-97dd-bf5ada0b5bb6", "crc32c": "48b06974", @@ -6416,7 +5869,6 @@ "version": "2020-08-13T10:24:32.515000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6427,7 +5879,6 @@ "version": "2020-08-13T10:24:32.363000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 42959304661, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a03cb9df-dc59-4a0b-b44c-82d774fca5a3", "crc32c": "4970865e", @@ -6441,7 +5892,6 @@ "version": "2021-02-09T09:13:43.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 791018526, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_3c6b633d-c61d-41e7-bf2a-82aedf11e6a2", "crc32c": "d25858a3", @@ -6453,7 +5903,6 @@ "version": "2020-08-13T10:24:34.304000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 8491601056, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_feb6d95f-25c7-4a13-8d75-64f64a2e1bea", "crc32c": "d45cfee6", @@ -6467,7 +5916,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6478,7 +5926,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 417, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6489,7 +5936,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6500,7 +5946,6 @@ "version": "2020-08-13T10:24:35.477000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6511,7 +5956,6 @@ "version": "2020-08-13T10:24:33.537000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6522,7 +5966,6 @@ "version": "2020-08-13T10:24:41.993000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 357, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6533,7 +5976,6 @@ "version": "2020-08-13T10:24:32.893000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 26743294647, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cf3b69db-ca26-4a67-9cea-a818ade04fb0", "crc32c": "a4aab160", @@ -6547,7 +5989,6 @@ "version": "2020-08-13T10:24:32.698000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29640509073, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1ed655b5-b090-42b6-8514-9137809b6165", "crc32c": "58a1cf75", @@ -6561,7 +6002,6 @@ "version": "2021-02-09T08:37:16.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1614253861, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_cf2c2bf2-8b2f-48e3-9a1f-457e0c4c44b4", "crc32c": "f99f079e", @@ -6573,7 +6013,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6584,7 +6023,6 @@ "version": "2020-08-13T10:24:30.672000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 926, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6595,7 +6033,6 @@ "version": "2020-08-13T10:24:34.199000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6606,7 +6043,6 @@ "version": "2021-02-16T04:18:18.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 5389602923, - "is_stitched": false, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_2f503475-0506-4ccb-9abe-2bbf8036d894", "crc32c": "42dd4073", @@ -6618,7 +6054,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6629,7 +6064,6 @@ "version": "2020-08-13T10:24:41.106000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6640,7 +6074,6 @@ "version": "2020-08-13T10:24:34.352000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 31686031654, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a8b799b5-daf4-44ae-87f6-fdd330abd6f8", "crc32c": "e6ca167a", @@ -6654,7 +6087,6 @@ "version": "2020-08-13T10:24:35.942000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6665,7 +6097,6 @@ "version": "2020-08-13T10:24:32.351000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6676,7 +6107,6 @@ "version": "2021-02-09T09:09:26.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 36070251944, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_781198aa-507d-4115-b3cd-6880061ed4e0", "crc32c": "00dc9ae8", @@ -6688,7 +6118,6 @@ "version": "2020-08-13T10:24:32.882000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 7842094796, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_64f727fd-cd90-415b-a166-ca45e660f835", "crc32c": "ee9de212", @@ -6702,7 +6131,6 @@ "version": "2021-02-09T09:18:58.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 38107048335, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_77a5c76f-aae4-4ba1-a55c-2830dbebd3ed", "crc32c": "e26ad592", @@ -6714,7 +6142,6 @@ "version": "2020-08-13T10:24:32.870000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6725,7 +6152,6 @@ "version": "2021-02-09T10:33:14.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 68487846568, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_9599783a-f964-45b6-ab0c-a9b9149cb322", "crc32c": "b42f4582", @@ -6737,7 +6163,6 @@ "version": "2020-08-13T10:24:33.616000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6748,7 +6173,6 @@ "version": "2020-08-13T10:24:30.730000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 928, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6759,7 +6183,6 @@ "version": "2020-08-13T10:24:41.811000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 416, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6770,7 +6193,6 @@ "version": "2020-08-13T10:24:31.197000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 576, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6781,7 +6203,6 @@ "version": "2020-08-13T10:24:35.883000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 352, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6792,7 +6213,6 @@ "version": "2020-08-13T10:24:37.291000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6803,7 +6223,6 @@ "version": "2020-08-13T10:24:32.044000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 619, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6814,7 +6233,6 @@ "version": "2020-08-13T10:24:31.894000Z", "content-type": "application/json; dcp-type=\"metadata/protocol\"", "size": 1801, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6825,7 +6243,6 @@ "version": "2020-08-13T10:24:34.125000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 28410709840, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_6b8ce79a-94dd-41c2-b096-1142145f1b14", "crc32c": "d6a0d84f", @@ -6839,7 +6256,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6850,7 +6266,6 @@ "version": "2021-02-09T07:42:39.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 38410429468, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_fa0a6a5c-bc38-4237-9808-7ec817a3c341", "crc32c": "7602d429", @@ -6862,7 +6277,6 @@ "version": "2020-08-13T10:24:42.199000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6873,7 +6287,6 @@ "version": "2021-02-09T08:42:46.000000Z", "content-type": "application/octet-stream; dcp-type=data", "size": 38366833938, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a48216e7-c146-411c-97c7-e183ae1daeab", "crc32c": "4133c641", @@ -6885,7 +6298,6 @@ "version": "2020-08-13T10:24:30.774000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 950, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6896,7 +6308,6 @@ "version": "2020-08-13T10:24:33.031000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 26750159795, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_1fb40c9b-a3df-46e4-972a-9571f2e6208f", "crc32c": "86f0006a", @@ -6910,7 +6321,6 @@ "version": "2020-08-13T09:49:57.572000Z", "content-type": "application/json; dcp-type=\"metadata/project\"", "size": 8766, - "is_stitched": false, "indexed": true, "crc32c": "", "sha256": "" @@ -6921,7 +6331,6 @@ "version": "2020-08-13T10:24:41.761000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 416, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6932,7 +6341,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6943,7 +6351,6 @@ "version": "2020-08-13T10:24:36.162000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6954,7 +6361,6 @@ "version": "2020-08-13T10:24:42.954000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 359, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6965,7 +6371,6 @@ "version": "2020-08-13T10:24:40.436000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6976,7 +6381,6 @@ "version": "2020-08-13T10:24:33.652000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 613, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -6987,7 +6391,6 @@ "version": "2020-08-13T10:24:32.221000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 41150350005, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_072ef189-77d1-4fe3-8fec-7d31575d2a1a", "crc32c": "6ee1c6eb", @@ -7001,7 +6404,6 @@ "version": "2020-08-13T10:24:41.616000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 415, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7012,7 +6414,6 @@ "version": "2020-08-13T10:24:34.328000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7023,7 +6424,6 @@ "version": "2020-08-13T10:24:32.387000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 30631035509, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0249fe64-269e-4d89-bd0b-5cf2661cbf26", "crc32c": "c2a358b9", @@ -7037,7 +6437,6 @@ "version": "2020-08-13T10:24:35.073000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29264452519, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_8c824321-6022-4a04-b4fe-14c3b341d581", "crc32c": "67ed297a", @@ -7051,7 +6450,6 @@ "version": "2020-08-13T10:24:34.328000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 2771933689, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_dd63ed96-5924-4c85-87f1-e91532c0d28a", "crc32c": "1864f708", @@ -7065,7 +6463,6 @@ "version": "2021-02-09T08:11:03.000000Z", "content-type": "application/vnd.loom; dcp-type=data", "size": 1827060784, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_a9616d3d-c93b-46d7-bd28-83584b765f21", "crc32c": "4482e678", @@ -7077,7 +6474,6 @@ "version": "2020-08-13T10:24:33.552000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 615, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7088,7 +6484,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7099,7 +6494,6 @@ "version": "2020-08-13T10:24:31.055000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 770, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7110,7 +6504,6 @@ "version": "2020-08-13T10:24:34.290000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 616, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7121,7 +6514,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7132,7 +6524,6 @@ "version": "2020-08-13T10:24:33.664000Z", "content-type": "application/gzip; dcp-type=data; dcp-type=data", "size": 29452283026, - "is_stitched": true, "indexed": false, "drs_uri": "drs://mock_drs_domain.lan/v1_6f1987da-5cbf-492c-b930-fd24891099a8_0cc171de-21c6-4fd9-b396-8d4a5c697058", "crc32c": "7b8d8193", @@ -7146,7 +6537,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7157,7 +6547,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/process\"", "size": 14716, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7168,7 +6557,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7179,7 +6567,6 @@ "version": "2021-02-09T01:30:00.000000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 327, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7190,7 +6577,6 @@ "version": "2020-08-13T10:24:32.637000Z", "content-type": "application/json; dcp-type=\"metadata/file\"", "size": 614, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -7201,7 +6587,6 @@ "version": "2020-08-13T10:24:31.133000Z", "content-type": "application/json; dcp-type=\"metadata/biomaterial\"", "size": 574, - "is_stitched": true, "indexed": true, "crc32c": "", "sha256": "" @@ -33048,5 +32433,617 @@ ] } ] - } + }, + "stitched": [ + "003cb4a8-9871-488f-9042-820504991f17", + "00dbea45-4e4d-5220-985e-afd8dcfce0b5", + "012ba773-aefb-4d9f-8ec1-6714dc7f631b", + "01824e76-505c-4e99-9ffd-bc1b5f56f726", + "0233488f-2a92-4e5c-a7c5-3508b39762aa", + "02f33fc2-eb2f-4c78-a7f5-002a1747e71f", + "0370e38d-bb67-4b79-be99-3ff27e21adba", + "0526e3df-0747-40fb-b4be-99c8813deefd", + "05345715-8f9f-44fe-8f28-f75552b17d5d", + "0565f81d-86a0-4591-8a29-f7e3306556f2", + "0619dd26-7a22-4fc9-ac35-7a381a502e6f", + "07a18873-6df1-57a8-848c-980bfa29fbf5", + "07a81052-3964-5b08-8f2d-066c1e29de7d", + "07b48eae-1703-5821-b3e6-66bb1488e7b2", + "085e5f88-ab09-4d69-bc14-afa71e1ae17c", + "087aca40-9bc5-56b9-8cd5-a5a0488c18f2", + "08b799a0-59d8-4c69-87b3-fd239aef4197", + "09f063d9-7bc8-4567-bc27-fa1e7c87fa4d", + "0a79ce42-b2b7-5c37-8bb2-e61bc1b5e38f", + "0a80f21f-3212-596b-9367-f7211c554c7d", + "0aa3a582-3905-5cba-9dd1-d3cf58be18ce", + "0b9d7ae0-f6af-40e5-898d-7b2afc48c4b1", + "0c1455f0-64c2-48a5-bba1-15588755bad5", + "0c3e7565-d5bc-44ed-8b1c-a9446150f274", + "0c410012-5563-5e9d-9841-a0232b69d43f", + "0c75f376-4092-403f-8b91-dbb19b4fdf94", + "0ceed66e-513f-450f-89e9-3206f4485cdf", + "0d27ca8e-5325-4e47-9807-8afd92e9bf89", + "0db36828-3fae-5bd2-b052-ae63b88693d9", + "0dd65ce8-29ba-4341-9a93-eb2ca1f06c72", + "0ea260e6-08d5-4488-86bb-8bf3412540ee", + "0edf6004-84e5-5b8a-99e2-bb60390d9b17", + "0f15fb43-c791-4113-a721-a9e3767e8f6d", + "0fb3c4cd-6df4-48ac-b7c6-e96c144e0c42", + "10a02923-b945-43fe-97db-c984e06dc5a7", + "10a76c2f-2a9b-4430-88bc-c4f3828e4e3f", + "111c2683-e0ab-5704-b51f-7b93e6717415", + "1147a7c1-2f32-4f13-9457-929b9bce46f0", + "11712f1f-d3c5-54b4-9ab3-cd12b8eb15b7", + "120e7f3e-597a-4119-a9d6-1624704666b4", + "1248ead2-3dd4-43fe-9f7c-9609ed77d9c2", + "129bdef3-ae23-5273-920f-204cccd878fc", + "136b438c-b819-4da2-8cc1-d6cace9c716c", + "139bca8f-674f-5dc9-953f-9cfbf91f3179", + "15087f54-4375-44ad-9aef-405e976767c0", + "15af1b4f-6944-4af6-8a2a-4fea163edde2", + "15c898b4-124d-5c7b-b297-6b21226d0bda", + "15dbb4ef-0c35-48d9-86c2-f56fd6863810", + "1685c144-966c-53fe-8bd3-2a053b55966c", + "16c04a1a-6c78-4755-ada4-36025cd69ce9", + "16d53d3e-88ef-444a-aaec-e7947fc3e779", + "17510bd6-d94b-5f41-a726-967bf9955f31", + "17782e68-694a-42df-9411-9fd875b95cc7", + "181fc217-c6d8-5fa3-a76a-c0cc766d6dcc", + "1853e602-4743-4179-863b-fb686a6a7a9a", + "1872f705-7ccc-42af-80c5-7645ccd2848c", + "18de212b-b326-4daf-80d3-9e8ebc19ab03", + "198dff35-0fb9-4edc-bf0c-e973ac7eba59", + "19b7eb13-fef6-46a4-abb9-44a310e441b5", + "1a17a213-3a73-4af8-a105-6e5b3d056263", + "1a84035c-6716-40ce-844c-617eeaefb14d", + "1b5a4bc7-5a90-4782-a657-536a8b533156", + "1b8c4fa4-24d0-42b5-99e1-8c04eba5d8c3", + "1c4a667a-210a-445e-b773-d59840280580", + "1d5a282b-b4b5-41dc-ab46-862476a87c18", + "1d7226b0-ed2f-4ab4-8692-3af8d3bd6017", + "1d732738-9b3b-4393-920a-a3dd2ff6f7e1", + "1da5525c-2986-510e-9890-748b232ad65e", + "1db22fe1-6ca8-4ca3-b91b-678f08d8626f", + "1e0c544d-2963-4fde-b3cb-5bb9b938acaa", + "1edb7ccc-0cb3-41c4-a193-181542bce479", + "1f43235c-6299-527b-b470-2b6638bdaf8b", + "1f4840ce-45d5-4dbc-87a1-c2b06d0aa6c8", + "1fe49331-d165-4443-a82b-612309cb9567", + "1ff18c5a-846f-5000-b8c5-889b6328842a", + "204a3bb9-d52f-407e-a3ed-f051a40dd7c3", + "204dfd1c-ea7a-494b-a151-f1bcd586ddfb", + "2096cc65-c180-45f2-93b7-fcc5c21db3a1", + "20eaba77-49c4-4d9e-9e82-fb6351a9012a", + "21302b0f-80dc-48ce-a69c-b999c5418749", + "214d0bf4-23de-4aab-816e-52df14eb53f9", + "21581af6-c4c4-4268-9d63-cf5a3a7f5058", + "21ac5c57-bebb-47d4-ad9b-491cdfbacb88", + "2224ee0a-dc74-4bc6-bf71-5752bc090aed", + "223980cd-b247-415a-bb6d-41ed360837f2", + "22ccc95d-d789-4398-a790-83f86bb420d8", + "22d5f584-ff73-4a10-8377-387983b72a87", + "232174af-3ebf-4b3b-97fd-35547950c4c8", + "232c6da0-b86b-4995-8da1-a428211af836", + "23a28752-d0c7-4a3c-8548-acc8ddc26af4", + "2415ecb9-08af-4ecc-868b-69ba70a43c81", + "24c3ce12-e4f9-4299-a005-320d602716ce", + "25c4395e-dcc3-5fd4-bff6-7dd2be6dbc1f", + "26131c11-6186-4b1a-b37d-fb12515622bf", + "26684c18-6ba0-4e9b-98f2-0a4b6f7f4a86", + "266cf33e-5540-42cd-84de-757340908d42", + "27749341-b419-4dca-9175-a6a9025116a9", + "27e030cc-b89e-41fc-b0c8-c3258a4b2c6e", + "282fda83-f6d8-4d5b-b47a-14d13d5206fe", + "285e146c-92b8-490c-b5e5-c8c24daa8ad2", + "289ec28b-ce11-5be8-89ab-92fbceb874a0", + "28f5f863-26d9-4ca8-abb3-705d369250e7", + "295db19e-bdcc-5428-a68a-e0de856c4522", + "2b40b918-2632-4a06-9746-6f542d884b90", + "2b532bac-4ebb-47db-b5e2-37b8da2b5f6c", + "2b64aedb-2563-547f-ba70-aa9b8c1d5d3f", + "2b8cad63-d0bc-486b-923d-cc6f11eb6394", + "2c88ef68-7029-5f00-9387-a364d6292976", + "2d0d630a-58dd-42f7-bd7e-579ebec98d48", + "2d253fef-4538-511a-a960-bd999afeecf4", + "2e7e4b93-2d6c-4359-804c-f8ca1e21c31c", + "2ee42e3a-73ae-5632-9a22-11b6a0fdced8", + "2f77c2c6-e843-48cd-a160-65fb904eb112", + "2fc7b43d-2351-428d-94f9-10a25c165f1a", + "30286c6d-ca78-4108-aff5-6809618656dc", + "312ecb1d-d94c-437b-9f36-e2ccf949fd79", + "31658494-9514-5169-84bf-0eb0620557f0", + "31899978-a518-4d78-b85a-f62bca7ed723", + "32714f4f-1a04-4fc3-bdd9-2ae6473fe544", + "32a5b3e4-4f2f-4fb1-aeff-7fb01035eb8d", + "33055074-248b-57fe-99fd-b5deab653ac0", + "336b106c-f5f3-4d35-b583-05fc33ee910f", + "3381994d-5624-4f5f-a574-01ad099c448c", + "3450ac1e-8d8f-5bad-bd44-322d792acc8a", + "3516a5d0-2fa9-5fbb-b1cc-5a95ca12bf3d", + "35bc8baa-8916-5835-940c-ce684f30d4aa", + "3650db01-27bd-4371-a431-71d28620a40a", + "37925a3b-3bce-4876-bb29-745922b2c972", + "37e1cc3e-b56d-4cfe-b310-3ef20a6668a5", + "381edf9b-6bec-45ba-bf1e-07e344ae70f0", + "384733f9-328f-4b3f-b201-9489ae09f5de", + "38b67b47-7ef3-4e9e-88e1-3a8376769eb0", + "39046bdd-483c-44ad-9b50-dea608d34255", + "39121e35-d7a2-52ac-a826-529b0329033f", + "39c38ab6-dd8a-4098-87a8-8a861d55b7fb", + "39c59048-bac9-4b5b-935b-75b150931f41", + "3aa80a42-646a-5953-afe6-b177a78297df", + "3abd4ba6-320e-4f5e-91cb-3a75070506b3", + "3c6b5196-4dd9-4c23-a9d1-c1341d889ecf", + "3de145e6-2439-593d-9779-c618b174ece0", + "3e6ac46b-1d9d-4c91-b5df-e583208357fe", + "3f0bfbb4-c9be-56db-9eb5-b37a6dc306a2", + "3f20a83f-f01c-41f2-acaf-3c111dfa5465", + "3f5ad2eb-04e1-4cc0-9513-6f2be5feed42", + "41a13523-c45b-4546-8273-9321d9a2c250", + "41ae7f5d-67e9-4bc8-a844-262a9dea9b96", + "420d9c85-32cb-4f35-a939-918b1eda8d62", + "42b114bb-27ee-4415-b046-7ee5581adc27", + "43c13443-4e03-42b3-a32f-d048c8ea465e", + "44c70c3c-6fe7-4186-9aa5-b2cb1ea3b9d8", + "450befbb-21c9-5b53-a7b9-38b517cebe76", + "455c6c50-9424-4dac-b67c-1be48276d5b5", + "4598ad54-184e-4400-b40c-8b8050e31617", + "45b42e03-4fcb-4dd0-8a33-47680b8f5254", + "469016a2-3bea-4244-8bae-835c499c8ac0", + "470877fd-03da-40a6-9508-330b580cf728", + "4725c942-1647-435d-9690-51cf8b817b6a", + "47a6d2b8-91a5-51c3-9df3-ac30c79346d2", + "47f2b446-7a03-4286-8a35-41e52394622c", + "489c7fd9-1ac8-5b78-a91d-a44761f9d6e0", + "4964726c-4bf7-58a0-a401-6eecf9c7a3b3", + "49a158d2-9786-4f54-bac9-67244497c9c9", + "4a0269a6-6026-4d2f-9d1d-5bb60c0042df", + "4a28b164-2d5a-5232-946a-ac70276036b5", + "4a2cee73-ad0a-5ad9-bed4-62c32852f66d", + "4a302268-f155-5a27-b164-dff6f1fc78fa", + "4a5dedbf-84c4-5772-a103-fc1466aa0c86", + "4a9d5d83-3e12-5ece-9524-facb79cd9239", + "4adcb95e-8d5d-41dd-8299-8a7b686e8e4a", + "4ae55a6b-6e40-4300-b2a7-7e8c72c285de", + "4b06739c-d81c-45cd-825f-cc5145f15065", + "4b13d612-7d7e-5ee1-9c8b-20ba230dbb03", + "4ba330b1-83f6-4d6f-9eb4-4c2f9f8b12ae", + "4ba8f00e-0833-5862-bc6e-0cc2acb5d684", + "4bb648cb-6617-4a22-afb8-7c2ea96ea4e9", + "4bd54cd4-ca70-4566-a2bf-9fecb4dfbc34", + "4c1d363b-0560-49f2-addd-aaa879db3d30", + "4c32ae0b-8338-4906-90ef-06e1e4fd7577", + "4cbe8be7-074d-4104-a5bd-87150fb592a6", + "4dae1604-6e74-4306-ae82-2da7ca2efd77", + "4e7c6725-5d49-4ed6-9a5f-b7d0eaf75469", + "4eedf1da-27b4-4748-9207-c4ae4b86e966", + "4f8103b9-edbf-492a-b77f-13120e1d4938", + "4f91ed04-d045-4904-a78e-103294d4f5e9", + "4fd506bc-5824-4a7b-a44a-8d02532c5277", + "51ba44d1-35b6-4227-b52d-1d7012a2c5ab", + "51df62ea-0591-4b74-94d8-d143b8738643", + "527ee669-a4e3-5a41-bd35-54518b7b514b", + "529a01ff-db1b-4a8e-924b-8749387f5dcb", + "529e093e-c122-4939-8264-993ad651efd7", + "52ca4cde-727f-564e-95dd-7872573ebeba", + "536ba4f7-6694-4a31-8df1-0e6668ed10da", + "538399a0-da86-57f5-88c6-b150db89c3f3", + "539b91c6-886b-443d-8529-440996e839fd", + "540234b3-0c89-41d1-98aa-63b9968056bf", + "54306568-28bb-4786-aacd-247887f8420f", + "54bfca9c-a1f8-4632-a0cb-5f7b5edf48d6", + "550bbb11-4786-46b4-a9c1-46f105b14644", + "561a5c40-9014-5bce-b48b-a2df2687b562", + "565d6b74-caae-44f1-a1fc-a0b29a1f24f1", + "56f78439-cccd-41bb-8eaf-c05f96695879", + "57c18bb9-bb99-48dc-bf49-70e3e558deeb", + "58d03b27-9049-444e-a337-3491a5d715e1", + "5916d536-e063-46ce-b3bc-fa0120d2f263", + "59c440a3-b54c-4aa7-a9fb-b51a269c8d6f", + "59d7c07b-db98-54fc-9088-9c1aae445826", + "59e161bb-d88b-5153-bd6c-81d2e9c678de", + "5a0999a5-9945-4d18-8f0a-7ed5a6b1f27b", + "5a6387c1-c6b2-488d-b014-4fb3f3d11c8f", + "5af16cd9-8632-410d-b5d4-0441950a7851", + "5b4f46d9-346e-4eec-b55e-801d37ece165", + "5baa7164-60f5-4b28-8bad-e9a0563cac70", + "5c3d1e59-cae7-5f21-b925-9d27bf675a9e", + "5c745dc7-ece2-4df5-96b3-bca92b832c73", + "5d687d7c-8d96-4203-ad8e-d0668828ad37", + "5d81a93b-6a82-43dc-912c-95aa10a10839", + "5dbd0b94-a351-51c7-858c-045b053881fd", + "5ee0a825-8c35-4fe5-ab67-454c6bfd949b", + "5fbb11aa-074b-42ad-bb8c-13d80c3b2490", + "5fc661b9-440a-4b6f-b2f9-f847043debec", + "6008e2eb-ea1d-54b2-9611-fa896ae9aa21", + "601bacd5-c250-4dd3-a83d-c9f31a1b0dd8", + "608ff0ee-d075-59e3-b62a-ca5b523078db", + "611d7372-2d5d-4b93-9cb8-b6d689b0f905", + "6194245b-1ce5-495e-8e85-d859b3fcce66", + "619887a0-67fb-4e24-be95-409f9b3e8474", + "61a2e552-6617-589e-8985-e1b730d3095c", + "61a4052c-bbc0-4666-9747-ed6b4c706ac6", + "61d46fd3-fd85-5eb1-a251-7000d2394830", + "62a131e1-c415-460e-bc5b-75cca5d3323b", + "62f9d7c8-cb0b-4c30-b2d8-ab43fa4b3384", + "6348e566-f22f-4d96-9d35-c57b27592a9f", + "63bee9b4-8743-5a13-b144-80cf68313083", + "6453a4e5-5b30-58a1-bc08-d3a5167b3738", + "64713d72-8e8f-4350-a3ba-e1981c872100", + "65358965-9b3b-5187-bf6a-f918c6009f83", + "656a45cf-0782-4374-a8b5-72c5640b6bce", + "66ec4290-c809-4fe9-946d-add8e9b66b4a", + "677bcd4c-b135-5fb6-be37-7ece51f1ed7a", + "6844ac0e-f1aa-4592-bf2b-9962220c9b62", + "687ef9ee-e18c-446f-bbb6-97c31ba0ce9b", + "68b20827-e2b9-4d02-ac17-32ebf7aaf49c", + "68cac6a2-5453-4d08-9af2-a4e01f259dd3", + "69576784-ca06-4ccb-bab7-d6e8353a8036", + "69615be2-bace-489c-ab42-4b0842bbebd4", + "69cc1f24-8be9-58aa-af3e-99c13507216e", + "69ccee6f-c88d-4443-88a0-e46ed47bf2a1", + "69f04b25-c698-4a6e-aff3-7bccc1e969b7", + "6a019fd6-5db6-5717-8c4a-3a22a6fba738", + "6a26e03a-37ad-57ff-a8d4-6eccfe56ca12", + "6a512fd9-3942-4497-87fd-977d2a243b1c", + "6a73dfce-0163-5b3e-b1cd-0df84fb30871", + "6b34fa3f-1878-48ec-84c2-e2d8877903c4", + "6b94e023-9280-45df-ac3d-5a258e19bf29", + "6bad9f0e-c0f6-5200-b2e7-6d60296072db", + "6c52e66a-d034-476c-8f32-5d760b6a5029", + "6d83f11c-b3d1-58a8-abed-e9a78b7f64e5", + "6dccc154-99d6-4910-bb88-34288cafcd69", + "6f654061-017b-41a8-8c4b-9d6f2dcf422b", + "700af591-d469-4a3d-a908-cff116f28242", + "701795c2-dc0b-40f0-ad73-2572e414e278", + "70ad10de-b4ff-47a7-be15-d9158d0bdb5c", + "7157b964-2c40-579e-96ef-18a6dc94d29e", + "71aef8a5-add1-46ce-b5e9-c172a52414a2", + "71c8dfa2-0a8c-4ae0-8161-933454f56420", + "71e9623c-1cfa-4efe-9448-f4014da727dc", + "7229676a-4449-4a2f-ac97-284eb599841c", + "725cbe75-92a1-46dc-862a-1b9d012e0fc1", + "72a375f0-bf6b-4a62-a737-44800855ce46", + "72abfd0e-51d3-4b13-8495-bfaab2f1096b", + "7318a24c-7abf-445d-b4d2-2c5acc01e715", + "732d6ffa-1d89-4476-ad10-5ce9d83a78ad", + "739de51d-30f4-45f8-81ea-9f051a18b748", + "73bd1209-cfb5-420f-bd97-574ed9c7cd0e", + "73e8d35c-3f1b-5fdf-85ff-4215bfdd0818", + "7406f566-084c-4d50-a592-3bdd79848e33", + "749e78db-e5dd-51a9-8a5f-1b015b182e7a", + "74d1b609-5477-4ec3-840e-fa721ffa580f", + "75017000-be20-4f58-91ea-abaf63344959", + "756f8cce-2d70-4c53-a893-e26d556f0f06", + "75b6d713-08dc-4eff-9347-95c9519a34cd", + "76f76203-8b14-4a33-8a0d-d7687d887772", + "77d1797c-3775-53c1-bb54-10b8e39a1dde", + "7845673c-e51f-5a49-bdab-c3c3b80b51eb", + "78514d14-bf42-56a0-954a-9b0d1227bcae", + "785275c2-08e7-486f-bed5-850993b704d3", + "789c58d2-6a0d-514e-ac56-f884cd5e078d", + "793d9bf6-00cb-49e6-acc2-2cc724036645", + "796e5529-dd1a-4579-a469-a770eaa2216f", + "797f836d-6ad6-512b-a6c7-361375004d1b", + "79d1793f-4b07-4542-a76f-86ed4f1a12db", + "7a15aec3-1935-55fa-a225-c17a2a3cdc85", + "7a3a7a6e-8543-5cc7-982e-042350074a40", + "7ae24487-8546-422c-ad9b-bfa36bdd6ba4", + "7b2d444d-65f1-43e2-848d-22bcd2774c96", + "7b7015d5-5915-42d8-9427-7890d9e76282", + "7beb8479-c655-4b01-af4f-69f1668e1c6d", + "7c2c2ced-a0e3-4df7-ae1d-890218465626", + "7d0d9872-cdea-5f19-956e-eb47032a512a", + "7ee8e5aa-5faa-4491-bd66-150e202974dd", + "7efd8179-7a9a-4ef1-b199-46f94581cb1a", + "7f0f3ad8-9052-4003-ac7d-4e2e509b85f5", + "7fa6adde-000d-4360-9f45-2b5da4721f70", + "7ff7f0ac-a14a-4c42-800b-016141f020fd", + "80738c1d-105a-525e-8b84-ae666d549159", + "807e13ad-b807-44b5-92c8-9057b858968f", + "80971a51-d5f8-51a0-a5c3-bf57de4e8784", + "8101b4fa-d322-42ba-83d2-729a0b6b6903", + "8106eec7-2c2f-41b4-ad4d-997e683ed9fc", + "81204476-377f-4bf9-b5de-27f8b14d47c5", + "812b02ca-7aab-4166-8fe5-cb623f67ca93", + "81f56ff9-36eb-5897-b2e7-318c075ecbc8", + "82aef31f-b0b0-56de-adfc-c6085c65a1f3", + "82c03181-f541-4770-8bad-5fb68bf221b2", + "82c6f8e4-79f9-48b7-aab5-35853db742a4", + "82fc4ead-bf34-4834-91ed-cb6ec1717baa", + "835ec088-c1a5-4b0c-897c-22bc92950587", + "837fa4ab-745a-4a41-9fbf-0a4d1d1054d5", + "83ef8445-4462-5d84-b0ef-d812e9256089", + "845dd01f-cad1-54a4-8ff3-acd78d29a5b1", + "853ce2df-ac1e-5d3b-aa74-00ff4eab33c2", + "85716ed2-d37c-4e4a-bd8a-864154bad299", + "85a66538-6c12-4ab4-9679-b1f95001606d", + "85dc3748-6751-482b-b7cd-c1e08f7df5c0", + "85df5aac-75ac-416a-ba8b-b9b0f8b4e619", + "85e09b5b-24a8-4eea-9b0a-8ca17f9db79d", + "861c56b3-6733-5991-863b-31c51fd428c6", + "87fa5eb0-98d2-40ae-8bb1-445d0d2d0c11", + "8822d3e6-d454-500b-b8b6-54c869f2240b", + "8848e80d-192f-5c47-bb3e-ef0d519e1761", + "8881df7f-15da-48a9-8934-a2d65188543e", + "8a62b078-1656-4145-83ee-a54b74b1f566", + "8ad2188f-df5c-53d8-aaca-61b637db4d08", + "8cc41928-cd6a-42e8-91ed-4df865e847c2", + "8cdbf96a-27ae-590c-b967-8a850c760785", + "8d4c4056-6a9b-4c33-907c-66f4351fe7c1", + "8d7b1004-5265-40cd-8912-336d71e0f296", + "8de90a27-1f7c-5651-b3d6-8527c1ed92d6", + "8f3ed51f-9369-59ac-a2bc-70e1af25d169", + "8f63d864-87e5-40f3-8f68-936640010c7d", + "8f920042-b17f-4968-b57a-7f86508226d5", + "8fee28bf-4f9b-4d62-814b-ea97119048ee", + "9005739b-11b7-410d-88ad-e05a765dabd9", + "90072d5b-6333-43b5-a032-dbe72c3e38eb", + "903e21c8-aea0-41fa-9d49-2574fb9d94ba", + "90465f43-bfdf-56d4-a9e1-7a765d60a1fe", + "90ab9fe3-3847-4477-bff8-66db44610c92", + "90bd06b3-c8fd-4ed8-98b4-9bf21e9466f9", + "91a5af73-4a8a-4285-bcbb-42344e18745f", + "91caea03-3c9a-5ba8-9acc-3685e3a6062e", + "9210ccdd-107f-4ef3-9a2d-f9c573788f43", + "9237b659-a7c4-55df-8159-2a7d4a6ad458", + "93107fa2-26df-550c-b450-6269ccf0f5ae", + "939adbf3-850d-591a-a2a8-0bf95c9dedda", + "93a4f15c-e388-4c42-b47a-5f7286793186", + "9403a717-07d2-4510-9f19-77d41747c188", + "9417041b-2952-41d5-b0d8-b42694f4fd4a", + "94259313-d341-4b1f-b9cc-48a760d81c19", + "9447492f-3a6a-4f33-a128-605686ae6d65", + "9487afae-0606-40f8-9770-2bfbc9635829", + "949f9f56-27b9-59dc-9263-6792dfdc964b", + "951a8ffc-69c5-4f7c-8ee8-39b76171f630", + "95c3bed5-a62e-4d0b-aaec-dc931cb779ce", + "96540aa6-2fd5-4102-9b5c-ea0766c3989d", + "96cbabdb-30b4-4c71-9250-bb7efcd9ee1e", + "96d0d820-8df2-47b6-8091-3b0a234c5688", + "96d2674c-2f8f-4495-b95f-a6be448ba8fb", + "9774fb4a-ead0-55a7-b924-d8a5bd83bbcf", + "97ab1a9b-43d0-443d-b25c-228f79cb5666", + "98890737-779e-436b-a305-4c2512de56b9", + "98df7492-84a8-57f5-ad48-d8072c5f595a", + "98f74c7b-abd8-4adc-b68f-f68aa5d3e58c", + "997fecc1-cc72-4357-9a33-8aa2be30d96b", + "99985ea4-d29e-4357-9879-99440a002b49", + "9a4277c3-806b-4906-a777-613f01a51003", + "9b6d349f-774f-56e1-ab6b-938385c60a4f", + "9baa3062-0022-53e2-a3df-14df08c4c66c", + "9bb08d39-3957-4ff7-a20d-cc45a1cb38ab", + "9c25532b-bbac-408a-8b3b-4d7f565f11b9", + "9c6fffe5-0f64-4325-8e2f-8be4fa5417b9", + "9d578de9-08fb-47f8-9bc4-77e9577965e7", + "9d8ad642-95f5-4574-b9fd-a22f147f3809", + "9eb9a3ac-8d35-4ac8-af2a-9272ffa13b97", + "9f54e4ee-7b4c-57df-803a-d960b5da3887", + "9f686a8c-9b49-4b37-9c5e-a6017b4aaf0e", + "a0cf7b57-f8ac-4591-bfe5-a9a2b7416057", + "a0e661e2-dac9-4004-9605-8307c15f831d", + "a0ea22e2-cab6-506d-8211-bb479591a04c", + "a1dbe553-ade6-5ce4-b9f9-77c740891c97", + "a2653332-1aab-49d6-8da8-b5c5fe004e70", + "a3bef94d-a68f-43d4-8cb8-58977b20f849", + "a42125f1-93c2-40c3-9247-ad419a2527e7", + "a428e47e-0081-497b-9c8a-7c852f4eb103", + "a4d115b6-9e08-51fd-9f66-20805421a8db", + "a5a6d033-de94-515c-a742-68e6e1188c2c", + "a69fcb4d-a7ec-4101-9e5a-1959bc3265ae", + "a753faac-75d8-442d-a44d-b0320ba88fe0", + "a7708bfc-0d3d-4c87-bea3-34790a7aad2c", + "a7738486-8b11-4e05-a004-6c931569972f", + "a78f0746-6eed-5b0e-9772-aab4bceec02c", + "a81da3e0-7245-44e8-8034-b9ebab1fcf2f", + "a8674039-068d-4560-aa99-b9481239d4fb", + "a87c5838-140e-40f4-97b0-591aecbe1b3c", + "a9c40eb8-24b6-4436-a3d3-e8035e84f6ae", + "aa76f640-744e-4c50-92af-33c7f54fc7ee", + "aa7c5481-5b46-4267-bcfa-0940dad1bf1c", + "ab5743e9-3eef-48c8-83f4-8458071fb7f4", + "ab887fca-e9b8-529c-9fe2-93595435858d", + "ad3e2c96-e515-431a-a1fa-fc7b57cff8ea", + "ad5b6061-910a-44d0-b8e6-7294d8b9e6d7", + "ae073235-e422-4c3a-8bf4-9892d6e769b3", + "ae38fa93-e50c-4033-a1e9-ac404ede7380", + "ae71343b-df16-49a3-829d-a6e61afdc079", + "aeaa76b1-161d-4d9f-a520-d30e87d9c1d9", + "afe45faa-e5e1-4cf8-8d79-4092dca736bd", + "b13f3346-158d-5509-bc82-3aed1b2c23be", + "b1883730-3304-48c1-904b-eb90ab226168", + "b2b1e2e5-b9f9-4a5f-91c5-ea7cda58cffe", + "b2f7c6e9-087c-5f95-b2c2-6aa9cce695ff", + "b35f53c9-bb50-487e-9548-7961c3e63170", + "b486e644-c56d-4209-b7c7-e56c527306b2", + "b49fb5d4-6f31-4b7d-827e-bc09ed30a167", + "b4d16fe2-eeac-4a26-9cc3-17414b87f3b1", + "b4f3e64c-ff38-5dd3-8656-ee8c06b1c673", + "b544dfff-faa5-4579-b4be-fccb8cf972a4", + "b5e9df12-e333-4754-a01b-c83c4b8f644a", + "b61e4f40-1742-4bbb-a20d-78a934c5f8de", + "b7914794-f8a7-4fba-bb5b-10536eac7d8b", + "b7f87bc7-bb85-5bd8-beae-1d14cd6846ef", + "b8912f33-12a7-4bf8-9f25-e91fbc77517c", + "b913fbad-c5fa-473c-b4a9-ae94e3490593", + "b92aadd5-3603-4e12-a92d-22e1f9757361", + "b9877824-638a-5fde-8196-70317fa1cc19", + "b9b49dd4-471a-4364-bc72-acaa1bcb633d", + "ba005942-3abb-4988-90a4-57747fb05b8b", + "ba276a56-3bdf-42ff-93f4-2920c3a288f9", + "bb2d6938-f6ad-461b-8fa4-eca0e4c040b2", + "bb2edf45-1041-4e38-9ace-ec922a747f80", + "bb8154f5-e9c7-41d1-84dc-bf95c66a9946", + "bbb02342-bad3-5d6c-89fa-1cbaf2e7b5dd", + "bc454c4f-c3b4-565f-be09-44d7523a80de", + "bc583c0e-4336-43d4-a7da-dc7e1f72b50b", + "bc5ba4f6-a3f1-4156-830f-11228df251bc", + "bc6bf485-351c-47c7-9837-d564bd32699b", + "bcee0e35-49c4-4af1-b202-eaf4df226025", + "bcf87efd-2880-49ed-abec-7a176c51ede7", + "bd1a2c8e-dc02-4167-8c73-ffe00e96a42c", + "bd90d9bf-cf73-407b-8e3a-07ef2f9c2fd8", + "be3b1c9a-c417-4c4f-956f-e1162da429b6", + "be3cffb9-150a-4a1e-8f4b-a0afde4eea5a", + "be7a2637-26cf-48ba-bfc5-52fa945d2d88", + "bed46309-3752-4115-a307-8c20d93dce55", + "bf81010d-b56b-4f0e-9fbc-4a27b9901908", + "bfac08a4-0266-4d6b-b8a4-24b57f560017", + "c0c71843-6831-4e91-90cf-cb31d4a4b277", + "c0e0476d-b0c5-434b-9c33-92e52900341d", + "c1102423-264b-4668-9e09-39b105474d6f", + "c1770287-3376-5cc1-a2a2-9676e7f5716e", + "c1ab22ca-2289-4384-82be-a3f16bdf113d", + "c2088136-2f49-5833-b397-16e27d741b5f", + "c27ebc26-f0b4-4f42-8b10-061fb04f77bd", + "c2b3e37f-511e-4e8d-a1b1-ab510204bfcf", + "c301901f-95cd-4a3e-a4df-761fa21e92af", + "c30c31d2-ccfb-4651-8b78-a25a23ab4e95", + "c31aecba-db6a-5229-a729-66269d90ee8a", + "c375c822-c26f-4196-9d4d-586d063a9583", + "c50f0504-73bc-4bd6-8ed3-1dcf0b60549f", + "c5674446-c1fa-5509-a077-a296cf1df801", + "c57bdaec-21df-479e-857e-ddb6f5f78f95", + "c5ab8014-5630-5ce5-9aaf-247e12d4ef6d", + "c6ca5e48-0be8-4b66-ac11-6e25511afe2a", + "c6ce7598-aa0e-5689-b8c3-55109c076a94", + "c7101d0a-844d-580c-b7bf-7223131713e5", + "c79e49e1-62b2-41c4-a3eb-96bbe01a2ed4", + "c7c7643a-be8f-5f84-92ee-26da94393427", + "c88c5a0e-73be-495e-a082-a28db1b1eae2", + "c8d8c14f-4e5e-4911-a386-391fd1153969", + "c98d43fa-1032-4085-be11-1950c5a6856e", + "cbb508b9-a20b-52a1-bf55-026c692c9fcf", + "cbbeeabb-18e8-52bd-896e-af4ed76b1ca7", + "cbc3aef2-aa4d-5cb2-8e23-4e83195f29d4", + "cc38ed0e-ac2c-4d75-99a0-8e2ab7e4256e", + "cc430c2e-f377-5651-aa5d-3dfa30b421cd", + "cc78276c-f893-4aa3-996a-1c5dc2c351c6", + "cd2174ec-d1f0-5cca-a5bc-5070f6736991", + "cd90e8e4-0fc5-4f26-86c6-cef5034f01d3", + "cdba26d8-9b1d-471f-9a08-875a09cbb96b", + "ce37ba6d-9b5a-4573-840c-ee6cec97de9e", + "ce52572d-f7d1-585d-a54f-fc14297d19c0", + "cf419a69-a9d3-4973-88ce-06f4c22ae90c", + "cf6620a8-3a16-46fe-815b-039a8dde9e16", + "cf835034-c34b-4b5d-aac6-8de2e280e959", + "cfa1e5da-607e-49b6-aa0d-8f43702b971f", + "d09272b0-2827-4b7b-9a8c-a63fec7376ca", + "d0a991b4-440b-48ee-87bf-d5613ca9da8b", + "d0baedfe-0556-4c2b-a1a0-d1e28ef07bb5", + "d1b3c364-8f6c-57d2-847c-1b22257f7e87", + "d1bbc8a6-9320-4527-bca3-2dbb172bea38", + "d2b3f3a1-b030-5c80-89d4-42a76db79127", + "d2b4df36-221d-413d-8e9a-b233b72d3832", + "d2fbc3ac-231e-4d92-b35d-a0b94a741937", + "d3142cb9-7285-5185-a5a5-c63d5f3cade8", + "d335dc6e-1d93-471f-867d-9873d12a5b55", + "d3a27ec7-9a17-45d4-b853-4d1cd768856d", + "d3c05176-1d0b-4ce1-b005-0af8c35129cd", + "d3c42b32-d484-458c-ad66-e7e9e7889ee9", + "d41aa539-54ba-5f2e-bfd6-4c9905ee38a1", + "d4b2569d-4f63-41c0-9a11-97068ee3ae68", + "d50fce4b-6645-4c91-bac0-401728be36d8", + "d5744e7d-7ab9-4d86-8a3a-bfc9e96946fc", + "d5b67ef8-2382-42b0-999e-baf1984141f1", + "d64ce807-663f-4a74-89a5-55e313168f35", + "d6505f32-dbd6-4d59-8fd7-0a303f7c1263", + "d6dea6fc-64af-4374-b6d1-383d51aaa00a", + "d79ff5a5-7510-4fa7-9ea1-782c6dc09271", + "d7f083b3-1e02-4838-a7a2-a52bc7bcb1bb", + "d7f0b745-c135-4594-9a4b-a4c66c8a1520", + "d8146d19-442a-5dbe-a075-b3a1ef0ebf07", + "d94541a9-1505-4a33-8ff5-fcb2b19b0d92", + "d9b006ee-9626-517f-baed-e6c7bc8a8686", + "da490be5-56d8-4510-a3c9-c256666fbe4d", + "da70fbc5-f917-483a-990f-a5356da78b50", + "daa5945d-5d1f-4586-9c85-e3fa5af8bfb5", + "dab143f7-7a17-48ba-a7b9-60064444ada5", + "dabbfa84-9a92-448a-a09f-8a2eaf13b958", + "db5c9d93-73ce-400f-809a-cf8649a0a3bb", + "dba60b5a-af86-4fde-8cfc-49b008f5adad", + "dbde50d2-6912-59a2-82b0-3b4014dc988c", + "dbe02baf-4c99-4784-bf03-2ebeeef70288", + "dbe117fc-c5ee-4347-bb8a-1a3fb9c89895", + "dc9ec562-3a71-5e42-b486-4f846ff7fcc0", + "dcaba295-f646-562f-8752-6f6fa634bc4f", + "dd19fdc7-35a9-432f-9a97-670637433eda", + "de694c96-1135-4d40-a44c-88ca899d164c", + "ded9b30e-12df-4998-846a-7cef685e4bd6", + "df1913aa-439c-587d-8192-5e2e66bc5262", + "dfd63958-121b-54a8-9b8b-707f3e28d3da", + "dfe9cbbb-cf19-4e2d-bd3c-70e0d9235f67", + "e0b0252f-8351-5ce3-a804-632a1cd78d28", + "e1b9ecf6-6fd8-4bc1-a28d-e9c9850055af", + "e23d96b7-a271-403e-a29e-b2bdb1949070", + "e29a9b1c-1ea6-4774-876f-765c7ac65d02", + "e3735012-e613-5a77-b38e-68fb27f9fdd7", + "e48d6415-0b7b-4e06-9c7b-861f33c1f1c7", + "e512685e-d15e-4b12-9f7f-e871da115586", + "e512c10b-854a-4c57-8c56-c84c84875664", + "e54680ad-0ebf-50cd-bf66-8d7b888af34c", + "e5ca2d0e-2fd8-4a89-88af-ad54c5f36290", + "e607b72f-3024-4d7e-8292-19d2d53a3a95", + "e6604cbc-c882-5f03-b4d0-807eb969a293", + "e6a532d6-bba0-5304-809c-5fc5f8373529", + "e779b50e-a892-4a0c-af02-2dd400956018", + "e79faefc-5135-4e43-a64d-8db7472d3f2e", + "e7b60260-7ae4-4d5a-b1a4-51622467e4b3", + "e7bd55f0-f6b6-4bfc-9395-35297fffd7d4", + "e7c8ff09-e97d-4b2e-8892-49cabbacb4c2", + "e85fcce7-59a6-593d-a52a-d25b47fafbfe", + "e8cb5e82-22fa-5e54-984e-3d2e4b91a100", + "e8fbe9c1-ab25-4300-a40d-65d0e8f627e0", + "e97d853f-aaf2-4b69-8300-f9aac8111c39", + "e9de5082-46c8-4b26-83c0-7fd480dcb142", + "e9eb59a6-8324-47c7-8d54-4517587c6802", + "ea737bae-7b34-4fb1-96a0-c3375446206c", + "ea7b5ae7-acdc-4d67-8665-c8a0b52da561", + "ea99b549-cd95-445b-a796-a4ccd992491d", + "eb8efbdd-147c-5206-b23c-f561d07335f7", + "ebde6cd6-26b6-40d6-9fa4-efe43d99ee8f", + "ecfd0cb5-5755-5852-b84f-dcaad39a6ddc", + "ed8bc174-30cc-4fa4-9e48-0543b825b1e4", + "ee40ec89-7cd0-5a9f-9f21-a1a4d69f5a1d", + "ee9ad501-69c5-49df-89d2-32ea89591634", + "eed4d335-880b-4735-9d04-cdbf706e3d44", + "eed7135f-d544-4e23-b8c9-266999b4135f", + "ef50dd96-a305-4edd-84e7-aae93377c488", + "f027f9ff-0d24-49e2-b71d-18543a4631f2", + "f0e53f0b-f5b9-4b5e-a168-de936401dc24", + "f17d1da2-2965-4732-a94a-6cd2a58fc873", + "f1903d0b-1cb2-4208-bc20-a37ad8612452", + "f1a64a47-3ed4-4570-99d7-ea6194826b07", + "f1f25c56-1cd7-44e4-8e58-7adafd43529c", + "f264de1c-35b3-5f4e-8d6f-f3a11bd30e93", + "f26c4715-5488-4d7f-ae0e-1c965128fbb1", + "f2b68b09-0776-5913-a34a-0944942c2b87", + "f2ed99b4-a68d-4d54-8c65-9534ad5931b5", + "f2fa48aa-5197-40a8-9c2a-c75c5c5f7264", + "f333416d-7f9e-4e54-9fbb-2ee29d55aed9", + "f3b53d83-7ee7-42db-b2d5-05a792204872", + "f3e0b538-bf64-417d-8746-52d5ad9311be", + "f4183399-0e70-466e-8915-8e4481f9b7d1", + "f4a448a7-bc5a-4014-ab1f-0d1a8cd4e47c", + "f683fadf-dd8c-4cfe-ae8b-34e3af5b74a1", + "f706178d-1afd-4bbb-bb69-12645ec038a6", + "f70a20e6-ad33-424e-b385-bb9a19be000e", + "f895f666-e3ed-4a7e-a7f5-42586a6244ea", + "f8dcbc35-bb0b-4bd4-ae8d-9be72b39dc16", + "f9173d91-b535-40f1-9937-2d0f00f4432f", + "f97aef9d-20fe-4872-88d1-9b44f174a16c", + "fa5185cb-e48d-5ab8-90b8-5499c3a725b6", + "fa78c4ab-4057-45b1-8266-af045ae28535", + "fbbd6c03-df0d-44dd-b383-c1efb83abb2e", + "fbed02e6-1547-469c-b96f-45c61111af53", + "fd0752c7-210b-4acd-a7ef-df7ffcdfbd3d", + "fd0cff96-93f2-4eb4-88f2-991f60542f46", + "fd5a2b33-eebc-41e3-b880-a39736a47a7c", + "fda0ea89-2300-59ed-9125-784883c5e211", + "fe261b23-efd5-445b-8dd4-46e47231ccff", + "fe4686b9-acd3-5237-acf1-1bd9cc0c19c5", + "ff3b3d1c-2ba9-50a9-9ca7-0558012cbe7d", + "ffba13e2-0937-49b3-961a-2ce3055ad5c6", + "ffe830d9-c586-47d1-9bb4-33baed6dcdc7" + ] } \ No newline at end of file diff --git a/test/indexer/data/ffac201f-4b1c-4455-bd58-19c1a9e863b4.dss.hca.json b/test/indexer/data/ffac201f-4b1c-4455-bd58-19c1a9e863b4.dss.hca.json index 6c56e7d7c..8451d28e2 100644 --- a/test/indexer/data/ffac201f-4b1c-4455-bd58-19c1a9e863b4.dss.hca.json +++ b/test/indexer/data/ffac201f-4b1c-4455-bd58-19c1a9e863b4.dss.hca.json @@ -1003,5 +1003,6 @@ ] } ] - } + }, + "stitched": [] } \ No newline at end of file diff --git a/test/indexer/test_tdr.py b/test/indexer/test_tdr.py index d109a3623..cb1450eff 100644 --- a/test/indexer/test_tdr.py +++ b/test/indexer/test_tdr.py @@ -336,7 +336,7 @@ def test_subgraph_stitching(self): bundle = self._load_canned_bundle(SourcedBundleFQID(source=self.source, uuid=downstream_uuid, version='2020-08-10T21:24:26.174274Z')) - assert any(e['is_stitched'] for e in bundle.manifest) + assert len(bundle.stitched) > 0 with self.assertLogs(plugin_log, level=logging.DEBUG) as cm: self._test_fetch_bundle(bundle, load_tables=True) record = one(r for r in cm.records if 'Stitched 2 bundle(s): ' in r.message) diff --git a/test/integration_test.py b/test/integration_test.py index 6729ca4f8..3d4970621 100644 --- a/test/integration_test.py +++ b/test/integration_test.py @@ -1931,16 +1931,26 @@ def _test_catalog(self, catalog: config.Catalog): metadata_plugin_name = catalog.plugins['metadata'].name if metadata_plugin_name == 'hca': - self.assertEqual({'manifest', 'metadata', 'links'}, bundle_json.keys()) + self.assertEqual({'manifest', + 'metadata', + 'links', + 'stitched'}, bundle_json.keys()) manifest = bundle_json['manifest'] metadata = bundle_json['metadata'] links = bundle_json['links'] + stitched = bundle_json['stitched'] self.assertIsInstance(manifest, list) self.assertIsInstance(metadata, dict) self.assertIsInstance(links, dict) + self.assertIsInstance(stitched, list) manifest_files = sorted(e['name'] for e in manifest if e['indexed']) metadata_files = sorted(metadata.keys()) self.assertListEqual(manifest_files, metadata_files) + metadata_ids = { + entry['provenance']['document_id'] + for entry in metadata.values() + } + self.assertIsSubset(set(stitched), metadata_ids) elif metadata_plugin_name == 'anvil': self.assertEqual({'entities', 'links'}, bundle_json.keys()) entities, links = bundle_json['entities'], bundle_json['links']