diff --git a/pystac/asset.py b/pystac/asset.py index e42b8237b..509eac9da 100644 --- a/pystac/asset.py +++ b/pystac/asset.py @@ -267,7 +267,7 @@ def ext(self) -> AssetExt: Example:: - asset.ext.proj.epsg = 4326 + asset.ext.proj.code = "EPSG:4326" """ from pystac.extensions.ext import AssetExt diff --git a/pystac/extensions/eo.py b/pystac/extensions/eo.py index c9628a3c7..58c9b6be5 100644 --- a/pystac/extensions/eo.py +++ b/pystac/extensions/eo.py @@ -656,19 +656,30 @@ def migrate( ] del obj["properties"][f"eo:{field}"] - # eo:epsg became proj:epsg + # eo:epsg became proj:epsg in Projection Extension <2.0.0 and became + # proj:code in Projection Extension 2.0.0 eo_epsg = PREFIX + "epsg" proj_epsg = projection.PREFIX + "epsg" - if eo_epsg in obj["properties"] and proj_epsg not in obj["properties"]: - obj["properties"][proj_epsg] = obj["properties"].pop(eo_epsg) + proj_code = projection.PREFIX + "code" + if ( + eo_epsg in obj["properties"] + and proj_epsg not in obj["properties"] + and proj_code not in obj["properties"] + ): obj["stac_extensions"] = obj.get("stac_extensions", []) - if ( - projection.ProjectionExtension.get_schema_uri() - not in obj["stac_extensions"] + if set(obj["stac_extensions"]).intersection( + projection.ProjectionExtensionHooks.pre_2 ): - obj["stac_extensions"].append( - projection.ProjectionExtension.get_schema_uri() + obj["properties"][proj_epsg] = obj["properties"].pop(eo_epsg) + else: + obj["properties"][proj_code] = ( + f"EPSG:{obj['properties'].pop(eo_epsg)}" ) + if not projection.ProjectionExtensionHooks().has_extension(obj): + obj["stac_extensions"].append( + projection.ProjectionExtension.get_schema_uri() + ) + if not any(prop.startswith(PREFIX) for prop in obj["properties"]): obj["stac_extensions"].remove(EOExtension.get_schema_uri()) diff --git a/pystac/extensions/hooks.py b/pystac/extensions/hooks.py index f858bc84c..8db8ca4e4 100644 --- a/pystac/extensions/hooks.py +++ b/pystac/extensions/hooks.py @@ -6,6 +6,7 @@ from typing import TYPE_CHECKING, Any import pystac +from pystac.extensions.base import VERSION_REGEX from pystac.serialization.identify import STACJSONDescription, STACVersionID if TYPE_CHECKING: @@ -43,6 +44,13 @@ def _get_stac_object_types(self) -> set[str]: def get_object_links(self, obj: STACObject) -> list[str | pystac.RelType] | None: return None + def has_extension(self, obj: dict[str, Any]) -> bool: + schema_startswith = VERSION_REGEX.split(self.schema_uri)[0] + "/" + return any( + uri.startswith(schema_startswith) or uri in self.prev_extension_ids + for uri in obj.get("stac_extensions", []) + ) + def migrate( self, obj: dict[str, Any], version: STACVersionID, info: STACJSONDescription ) -> None: diff --git a/pystac/extensions/projection.py b/pystac/extensions/projection.py index 8d3cb1523..86f076382 100644 --- a/pystac/extensions/projection.py +++ b/pystac/extensions/projection.py @@ -21,17 +21,20 @@ SummariesExtension, ) from pystac.extensions.hooks import ExtensionHooks +from pystac.serialization.identify import STACJSONDescription, STACVersionID T = TypeVar("T", pystac.Item, pystac.Asset, pystac.ItemAssetDefinition) -SCHEMA_URI: str = "https://stac-extensions.github.io/projection/v1.1.0/schema.json" +SCHEMA_URI: str = "https://stac-extensions.github.io/projection/v2.0.0/schema.json" SCHEMA_URIS: list[str] = [ "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", SCHEMA_URI, ] PREFIX: str = "proj:" # Field names +CODE_PROP: str = PREFIX + "code" EPSG_PROP: str = PREFIX + "epsg" WKT2_PROP: str = PREFIX + "wkt2" PROJJSON_PROP: str = PREFIX + "projjson" @@ -65,7 +68,9 @@ class ProjectionExtension( def apply( self, - epsg: int | None, + *, + epsg: int | None = None, + code: str | None = None, wkt2: str | None = None, projjson: dict[str, Any] | None = None, geometry: dict[str, Any] | None = None, @@ -77,7 +82,10 @@ def apply( """Applies Projection extension properties to the extended Item. Args: - epsg : REQUIRED. EPSG code of the datasource. + epsg : Code of the datasource. Example: 4326. One of ``code`` and + ``epsg`` must be provided. + code : Code of the datasource. Example: "EPSG:4326". One of ``code`` and + ``epsg`` must be provided. wkt2 : WKT2 string representing the Coordinate Reference System (CRS) that the ``geometry`` and ``bbox`` fields represent projjson : PROJJSON dict representing the @@ -96,7 +104,15 @@ def apply( transform : The affine transformation coefficients for the default grid """ - self.epsg = epsg + if epsg is not None and code is not None: + raise KeyError( + "Only one of the options ``code`` and ``epsg`` should be specified." + ) + elif epsg: + self.epsg = epsg + else: + self.code = code + self.wkt2 = wkt2 self.projjson = projjson self.geometry = geometry @@ -117,11 +133,33 @@ def epsg(self) -> int | None: It should also be set to ``None`` if a CRS exists, but for which there is no valid EPSG code. """ - return self._get_property(EPSG_PROP, int) + if self.code is not None and self.code.startswith("EPSG:"): + return int(self.code.replace("EPSG:", "")) + return None @epsg.setter def epsg(self, v: int | None) -> None: - self._set_property(EPSG_PROP, v, pop_if_none=False) + if v is None: + self.code = None + else: + self.code = f"EPSG:{v}" + + @property + def code(self) -> str | None: + """Get or set the code of the datasource. + + Added in version 2.0.0 of this extension replacing "proj:epsg". + + Projection codes are identified by a string. The `proj `_ + library defines projections using "authority:code", e.g., "EPSG:4326" or + "IAU_2015:30100". Different projection authorities may define different + string formats. + """ + return self._get_property(CODE_PROP, str) + + @code.setter + def code(self, v: int | None) -> None: + self._set_property(CODE_PROP, v, pop_if_none=False) @property def wkt2(self) -> str | None: @@ -168,13 +206,13 @@ def crs_string(self) -> str | None: This string can be used to feed, e.g., ``rasterio.crs.CRS.from_string``. The string is determined by the following heuristic: - 1. If an EPSG code is set, return "EPSG:{code}", else + 1. If a code is set, return the code string, else 2. If wkt2 is set, return the WKT string, else, 3. If projjson is set, return the projjson as a string, else, 4. Return None """ - if self.epsg: - return f"EPSG:{self.epsg}" + if self.code: + return self.code elif self.wkt2: return self.wkt2 elif self.projjson: @@ -189,7 +227,7 @@ def geometry(self) -> dict[str, Any] | None: This dict should be formatted according the Polygon object format specified in `RFC 7946, sections 3.1.6 `_, except not necessarily in EPSG:4326 as required by RFC7946. Specified based on - the ``epsg``, ``projjson`` or ``wkt2`` fields (not necessarily EPSG:4326). + the ``code``, ``projjson`` or ``wkt2`` fields (not necessarily EPSG:4326). Ideally, this will be represented by a Polygon with five coordinates, as the item in the asset data CRS should be a square aligned to the original CRS grid. """ @@ -204,7 +242,7 @@ def bbox(self) -> list[float] | None: """Get or sets the bounding box of the assets represented by this item in the asset data CRS. - Specified as 4 or 6 coordinates based on the CRS defined in the ``epsg``, + Specified as 4 or 6 coordinates based on the CRS defined in the ``code``, ``projjson`` or ``wkt2`` properties. First two numbers are coordinates of the lower left corner, followed by coordinates of upper right corner, e.g., ``[west, south, east, north]``, ``[xmin, ymin, xmax, ymax]``, @@ -382,16 +420,32 @@ class SummariesProjectionExtension(SummariesExtension): defined in the :stac-ext:`Projection Extension `. """ + @property + def code(self) -> list[str] | None: + """Get or sets the summary of :attr:`ProjectionExtension.code` values + for this Collection. + """ + return self.summaries.get_list(CODE_PROP) + + @code.setter + def code(self, v: list[str] | None) -> None: + self._set_summary(CODE_PROP, v) + @property def epsg(self) -> list[int] | None: - """Get or sets the summary of :attr:`ProjectionExtension.epsg` values + """Get the summary of :attr:`ProjectionExtension.epsg` values for this Collection. """ - return self.summaries.get_list(EPSG_PROP) + if self.code is None: + return None + return [int(code.replace("EPSG:", "")) for code in self.code if "EPSG:" in code] @epsg.setter def epsg(self, v: list[int] | None) -> None: - self._set_summary(EPSG_PROP, v) + if v is None: + self.code = None + else: + self.code = [f"EPSG:{epsg}" for epsg in v] class ProjectionExtensionHooks(ExtensionHooks): @@ -401,7 +455,27 @@ class ProjectionExtensionHooks(ExtensionHooks): "projection", *[uri for uri in SCHEMA_URIS if uri != SCHEMA_URI], } + pre_2 = { + "proj", + "projection", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + } stac_object_types = {pystac.STACObjectType.ITEM} + def migrate( + self, obj: dict[str, Any], version: STACVersionID, info: STACJSONDescription + ) -> None: + if not self.has_extension(obj): + return + + # proj:epsg moved to proj:code + if "proj:epsg" in obj["properties"]: + epsg = obj["properties"]["proj:epsg"] + obj["properties"]["proj:code"] = f"EPSG:{epsg}" + del obj["properties"]["proj:epsg"] + + super().migrate(obj, version, info) + PROJECTION_EXTENSION_HOOKS: ExtensionHooks = ProjectionExtensionHooks() diff --git a/pystac/item.py b/pystac/item.py index c2af036df..e2a8d1cf9 100644 --- a/pystac/item.py +++ b/pystac/item.py @@ -524,7 +524,7 @@ def ext(self) -> ItemExt: Example:: - item.ext.proj.epsg = 4326 + item.ext.proj.code = "EPSG:4326" """ from pystac.extensions.ext import ItemExt diff --git a/pystac/static/fields-normalized.json b/pystac/static/fields-normalized.json index 9e7b2af36..9d5e1dff5 100644 --- a/pystac/static/fields-normalized.json +++ b/pystac/static/fields-normalized.json @@ -1 +1 @@ -{"metadata":{"id":{"label":"Identifier"},"keywords":{"label":"Keywords"},"datetime":{"label":"Time of Data","format":"Timestamp","summary":false},"title":{"label":"Title","summary":false},"description":{"label":"Description","format":"CommonMark","summary":false},"start_datetime":{"label":"Time of Data begins","format":"Timestamp","summary":false},"end_datetime":{"label":"Time of Data ends","format":"Timestamp","summary":false},"created":{"label":"Created","format":"Timestamp","summary":"r"},"updated":{"label":"Updated","format":"Timestamp","summary":"r"},"published":{"label":"Published","format":"Timestamp","summary":"r"},"expires":{"label":"Expires","format":"Timestamp","summary":"r"},"unpublished":{"label":"Unpublished","format":"Timestamp","summary":"r"},"license":{"label":"License","format":"License","summary":false},"providers":{"label":"Providers","format":"Providers","summary":false},"platform":{"label":"Platform"},"instruments":{"label":"Instruments","format":"CSV"},"constellation":{"label":"Constellation"},"mission":{"label":"Mission"},"gsd":{"label":"GSD","explain":"Ground Sample Distance","unit":"m"},"version":{"label":"Data Version","summary":false},"deprecated":{"label":"Deprecated","summary":false},"language":{"label":"Current Language","ext":"language","summary":"v","properties":{"name":{"label":"Name"},"alternate":{"label":"Alternate Name"},"code":{"label":"Code"},"dir":{"label":"Direction","explain":"Reading and writing direction","mapping":{"ltr":"left-to-right","rtl":"right-to-left"},"default":"ltr"}}},"languages":{"label":"Available Languages","ext":"language","summary":false,"items":{"name":{"label":"Name","sortable":true,"order":0},"alternate":{"label":"Alternate Name","sortable":true,"order":1},"code":{"label":"Code","sortable":true,"order":2},"dir":{"label":"Direction","explain":"Reading and writing direction","sortable":true,"order":3,"mapping":{"ltr":"left-to-right","rtl":"right-to-left"},"default":"ltr"}},"itemOrder":["name","alternate","code","dir"]},"crs":{"label":"CRS","format":"CRS","explain":"Coordinate Reference System"},"anon:size":{"label":"Uncertainty","unit":"°","explain":"The size of one side of the anonymized bounding box"},"anon:warning":{"label":"Warning","summary":false},"classification:classes":{"summary":false,"label":"Classes","items":{"color_hint":{"label":"Color","order":0,"format":"HexColor"},"value":{"label":"Value","order":1},"title":{"label":"Title","order":2},"name":{"label":"Identifier","order":3},"description":{"label":"Description","order":4,"format":"CommonMark"},"nodata":{"label":"No-data value","order":5,"default":false}},"itemOrder":["color_hint","value","title","name","description","nodata"]},"classification:bitfields":{"summary":false,"label":"Bit Mask","items":{"name":{"label":"Name","order":0},"offset":{"label":"Offset","explain":"Offset to the first bit","order":1},"length":{"label":"Number of bits","order":2},"description":{"label":"Description","order":3,"format":"CommonMark"},"classes":{"alias":"classification:classes","summary":false,"label":"Classes","items":{"color_hint":{"label":"Color","order":0,"format":"HexColor"},"value":{"label":"Value","order":1},"title":{"label":"Title","order":2},"name":{"label":"Identifier","order":3},"description":{"label":"Description","order":4,"format":"CommonMark"},"nodata":{"label":"No-data value","order":5,"default":false}},"itemOrder":["color_hint","value","title","name","description","nodata"]},"roles":{"label":"Purpose"}},"itemOrder":["classes","name","offset","length","description","roles"]},"cube:dimensions":{"label":"Dimensions","summary":false,"listWithKeys":true,"items":{"type":{"label":"Type","order":0},"axis":{"label":"Axis","order":1},"description":{"label":"Description","format":"CommonMark","order":2},"extent":{"label":"Extent","format":"Extent","order":3},"values":{"label":"Values","order":4},"step":{"label":"Step","order":5},"unit":{"alias":"file:unit","order":5,"label":"Unit of Values"},"reference_system":{"label":"Reference System","explain":"Coordinate / Temporal / Other Reference System","order":6}},"itemOrder":["type","axis","description","extent","values","step","unit","reference_system"]},"cube:variables":{"label":"Variables","summary":false,"listWithKeys":true,"items":{"dimensions":{"label":"Dimensions","order":0},"type":{"label":"Type","order":1,"mapping":{"data":"Measured values","auxiliary":"Coordinate data"}},"description":{"label":"Description","format":"CommonMark","order":2},"extent":{"label":"Extent","format":"Extent","order":3},"values":{"label":"Values","order":4},"step":{"label":"Step","order":5},"unit":{"alias":"file:unit","order":6,"label":"Unit of Values"}},"itemOrder":["dimensions","type","description","extent","values","step","unit"]},"eo:bands":{"label":"Spectral Bands","items":{"name":{"label":"Name","sortable":true,"id":true,"order":0},"common_name":{"label":"Common Name","sortable":true,"order":1},"description":{"label":"Description","format":"CommonMark","order":2},"center_wavelength":{"label":"Wavelength","explain":"The center wavelength of the band","unit":"μm","sortable":true,"order":5},"full_width_half_max":{"label":"FWHM","explain":"Full Width Half Max","unit":"μm","sortable":true,"order":6},"gsd":{"alias":"gsd","sortable":true,"order":3,"label":"GSD","explain":"Ground Sample Distance","unit":"m"},"cloud_cover":{"alias":"eo:cloud_cover","sortable":true,"order":4,"label":"Cloud Cover","unit":"%"},"solar_illumination":{"label":"Solar Illumination","sortable":true,"order":7,"unit":"W/m²/μm"},"classification:classes":{"alias":"classification:classes","summary":false,"label":"Classes","items":{"color_hint":{"label":"Color","order":0,"format":"HexColor"},"value":{"label":"Value","order":1},"title":{"label":"Title","order":2},"name":{"label":"Identifier","order":3},"description":{"label":"Description","order":4,"format":"CommonMark"},"nodata":{"label":"No-data value","order":5,"default":false}},"itemOrder":["color_hint","value","title","name","description","nodata"]},"classification:bitfields":{"alias":"classification:bitfields","summary":false,"label":"Bit Mask","items":{"name":{"label":"Name","order":0},"offset":{"label":"Offset","explain":"Offset to the first bit","order":1},"length":{"label":"Number of bits","order":2},"description":{"label":"Description","order":3,"format":"CommonMark"},"classes":{"alias":"classification:classes","summary":false,"label":"Classes","items":{"color_hint":{"label":"Color","order":0,"format":"HexColor"},"value":{"label":"Value","order":1},"title":{"label":"Title","order":2},"name":{"label":"Identifier","order":3},"description":{"label":"Description","order":4,"format":"CommonMark"},"nodata":{"label":"No-data value","order":5,"default":false}},"itemOrder":["color_hint","value","title","name","description","nodata"]},"roles":{"label":"Purpose"}},"itemOrder":["classes","name","offset","length","description","roles"]}},"itemOrder":["name","classification:bitfields","classification:classes","common_name","description","gsd","cloud_cover","center_wavelength","full_width_half_max","solar_illumination"]},"eo:cloud_cover":{"label":"Cloud Cover","unit":"%"},"eo:snow_cover":{"label":"Snow/Ice Cover","unit":"%"},"forecast:reference_datetime":{"label":"Reference Time","format":"Timestamp","summary":"r"},"forecast:horizon":{"label":"Forecast Horizon","explain":"The time between the reference time and the forecast time","format":"Duration","summary":"r"},"forecast:duration":{"label":"Forecast Length","format":"Duration","summary":"r"},"file:bits_per_sample":{"label":"Bits per Sample"},"file:byte_order":{"label":"Byte Order"},"file:checksum":{"label":"Checksum","format":"Checksum","summary":false},"file:data_type":{"label":"Data Type of Values","format":"FileDataType"},"file:header_size":{"label":"Header Size","format":"FileSize","summary":false},"file:nodata":{"label":"No-Data Values","format":"CSV","summary":false},"file:size":{"label":"Size","format":"FileSize","summary":false},"file:unit":{"label":"Unit of Values"},"file:values":{"label":"Map of Values","summary":false,"items":{"values":{"label":"Values","format":"CSV","order":1},"summary":{"label":"Summary","order":0}},"itemOrder":["summary","values"]},"file:local_path":{"label":"Local Path","summary":false},"goes:orbital_slot":{"label":"Orbital Slot"},"goes:system_environment":{"label":"System Environment","mapping":{"OR":"Operational system, real-time data","OT":"Operational system, test data","IR":"Test system, real-time data","IT":"Test system, test data","IP":"Test system, playback data","IS":"Test system, simulated data"}},"goes:image_type":{"label":"Area","mapping":{"FULL DISK":"The Americas (full disk)","CONUS":"North America (continental US)","MESOSCALE":"Central/South America (mesoscale)"}},"goes:mesoscale_image_number":{"label":"Area in Central/South America","mapping":{"1":"Region 1","2":"Region 2"}},"goes:mode":{"label":"Capture Mode","mapping":{"3":"3: 1x full disk, 3x continental US, 30x mesoscale region 1, 30x mesoscale region 2 (every 15 minutes)","4":"4: 1x full disk (every 5 minutes)","6":"6: 1x full disk, 2x continental US, 20x mesoscale region 1, 20x mesoscale region 2 (every 10 minutes)"}},"goes:group_time_threshold":{"label":"Time Threshold in a Group","explain":"Lightning group maximum time difference among lightning events in a group","unit":"s"},"goes:flash_time_threshold":{"label":"Time Threshold in a Flash","explain":"Lightning flash maximum time difference among lightning events in a flash","unit":"s"},"goes:lightning_wavelength":{"label":"Central Wavelength","unit":"nm"},"goes:yaw_flip_flag":{"label":"Yaw Flip Configuration","explain":"Flag indicating that the spacecraft is operating in yaw flip configuration.","mapping":{"0":"Upright","1":"Neither","2":"Inverted"}},"goes:event_count":{"label":"Lightning Events"},"goes:group_count":{"label":"Lightning Groups"},"goes:flash_count":{"label":"Lightning Flashes"},"goes:nominal_satellite_subpoint_lat":{"label":"Satellite Subpoint Latitude","unit":"°N"},"goes:nominal_satellite_subpoint_lon":{"label":"Satellite Subpoint Longitude","unit":"°E"},"goes:nominal_satellite_height":{"label":"Satellite Height","explain":"Nominal satellite height above GRS 80 ellipsoid","unit":"km"},"goes:percent_navigated_L1b_events":{"label":"Events navigated by Instrument","format":"Percent0to1","unit":"%"},"goes:percent_uncorrectable_L0_errors":{"label":"Data Lost","format":"Percent0to1","unit":"%"},"grid:code":{"label":"Grid","format":"GridCode"},"raster:bands":{"label":"Bands","items":{"nodata":{"alias":"file:nodata","label":"No-Data Values","format":"CSV","summary":false},"sampling":{"label":"Sampling","mapping":{"area":"Area","point":"Point (at pixel center)"}},"data_type":{"alias":"file:data_type","label":"Data Type of Values","format":"FileDataType"},"bits_per_sample":{"alias":"file:bits_per_sample","label":"Bits per Sample"},"spatial_resolution":{"label":"Resolution","explain":"Average spatial resolution","unit":"m"},"statistics":{"label":"Statistics","items":{"mean":{"label":"Average"},"maximum":{"label":"Max.","explain":"Maxmimum value"},"minimum":{"label":"Min.","explain":"Minimum value"},"stdev":{"label":"Std. Dev.","explain":"Standard Deviation"},"valid_percent":{"label":"Valid","explain":"Percentage of valid pixels","unit":"%"}},"itemOrder":["mean","maximum","minimum","stdev","valid_percent"]},"unit":{"alias":"file:unit","label":"Unit of Values"},"scale":{"label":"Scale"},"offset":{"label":"Offset"},"histogram":{"label":"Histogram","custom":true},"classification:classes":{"alias":"classification:classes","summary":false,"label":"Classes","items":{"color_hint":{"label":"Color","order":0,"format":"HexColor"},"value":{"label":"Value","order":1},"title":{"label":"Title","order":2},"name":{"label":"Identifier","order":3},"description":{"label":"Description","order":4,"format":"CommonMark"},"nodata":{"label":"No-data value","order":5,"default":false}},"itemOrder":["color_hint","value","title","name","description","nodata"]},"classification:bitfields":{"alias":"classification:bitfields","summary":false,"label":"Bit Mask","items":{"name":{"label":"Name","order":0},"offset":{"label":"Offset","explain":"Offset to the first bit","order":1},"length":{"label":"Number of bits","order":2},"description":{"label":"Description","order":3,"format":"CommonMark"},"classes":{"alias":"classification:classes","summary":false,"label":"Classes","items":{"color_hint":{"label":"Color","order":0,"format":"HexColor"},"value":{"label":"Value","order":1},"title":{"label":"Title","order":2},"name":{"label":"Identifier","order":3},"description":{"label":"Description","order":4,"format":"CommonMark"},"nodata":{"label":"No-data value","order":5,"default":false}},"itemOrder":["color_hint","value","title","name","description","nodata"]},"roles":{"label":"Purpose"}},"itemOrder":["classes","name","offset","length","description","roles"]}},"itemOrder":["classification:bitfields","bits_per_sample","classification:classes","data_type","histogram","nodata","offset","spatial_resolution","sampling","scale","statistics","unit"]},"label:properties":{"label":"Properties","null":"raster data"},"label:classes":{"label":"Classes","items":{"name":{"label":"Name","null":"raster-formatted","sortable":true,"id":true},"classes":{"label":"Classes"}},"itemOrder":["name","classes"]},"label:description":{"label":"Description","format":"CommonMark","summary":false},"label:type":{"label":"Type"},"label:tasks":{"label":"Tasks"},"label:methods":{"label":"Methods"},"label:overviews":{"label":"Overviews","summary":false,"items":{"property_key":{"label":"Property Key","id":true},"counts":{"label":"Counts","custom":true},"statistics":{"label":"Statistics","custom":true}},"itemOrder":["property_key","counts","statistics"]},"mgrs:latitude_band":{"label":"Latitude Band"},"mgrs:grid_square":{"label":"Grid Square"},"mgrs:utm_zone":{"label":"UTM Zone"},"noaa_mrms_qpe:pass":{"label":"Pass Number","mapping":{"1":"1 (less latency / less gauges)","2":"2 (more latency / more gauges)"}},"noaa_mrms_qpe:period":{"label":"Accumulation Period","unit":"h"},"noaa_mrms_qpe:region":{"label":"Region","mapping":{"CONUS":"Continental US","HAWAII":"Hawaii","GUAM":"Guam","ALASKA":"Alaska","CARIB":"Caribbean Islands"}},"openeo:status":{"label":"Processing Status"},"api_version":{"label":"API Version","ext":"openeo"},"backend_version":{"label":"Back-End Version","ext":"openeo"},"production":{"label":"Production-Ready","ext":"openeo"},"endpoints":{"label":"Supported Endpoints","ext":"openeo","summary":false,"items":{"path":{"label":"Path Template","order":0},"methods":{"label":"HTTP Methods","order":1,"format":"CSV"}},"itemOrder":["path","methods"]},"billing":{"label":"Billing","ext":"openeo","custom":true,"summary":false},"order:status":{"label":"Status","mapping":{"orderable":"Orderable (data can be ordered)","ordered":"Ordered (preparing to deliver data)","pending":"Pending (waiting for activation)","shipping":"Shipping (data is getting processed)","succeeded":"Delivered (data is available)","failed":"Failed (unable to deliver)","canceled":"Canceled (delivery stopped)"}},"order:id":{"label":"Identifier"},"order:date":{"label":"Submitted","format":"Timestamp","summary":"r"},"order:expiration_date":{"alias":"expires","label":"Expires","format":"Timestamp","summary":"r"},"pc:count":{"label":"Points","explain":"Number of Points"},"pc:type":{"label":"Type"},"pc:encoding":{"label":"Format"},"pc:schemas":{"label":"Schemas","summary":false,"items":{"name":{"label":"Name","sortable":true,"id":true},"size":{"label":"Size","unit":"bytes","sortable":true},"type":{"label":"Type","sortable":true}},"itemOrder":["name","size","type"]},"pc:density":{"label":"Density"},"pc:statistics":{"label":"Statistics","summary":"s","items":{"name":{"label":"Name","id":true},"position":{"label":"Position"},"average":{"label":"Average"},"count":{"label":"Count"},"maximum":{"label":"Max.","explain":"Maxmimum value"},"minimum":{"label":"Min.","explain":"Minimum value"},"stddev":{"label":"Std. Dev.","explain":"Standard Deviation"},"variance":{"label":"Variance"}},"itemOrder":["name","average","count","maximum","minimum","position","stddev","variance"]},"processing:expression":{"label":"Processing Instructions","summary":false},"processing:lineage":{"label":"Lineage","format":"CommonMark","summary":false},"processing:level":{"label":"Level"},"processing:facility":{"label":"Facility"},"processing:software":{"label":"Software","format":"Software","summary":false},"proj:epsg":{"label":"EPSG Code","format":"EPSG","summary":"v"},"proj:wkt2":{"label":"WKT2","explain":"Well-Known Text, version 2","format":"WKT2","summary":false},"proj:projjson":{"label":"PROJJSON","explain":"JSON encoding of WKT2","format":"PROJJSON","summary":false},"proj:geometry":{"label":"Footprint","custom":true,"summary":false},"proj:bbox":{"label":"Bounding Box","custom":true,"summary":false},"proj:centroid":{"label":"Centroid","custom":true,"summary":false},"proj:shape":{"label":"Image Dimensions","format":"Shape","summary":false},"proj:transform":{"label":"Transformation Matrix","format":"Transform","summary":false},"sar:instrument_mode":{"label":"Instrument Mode"},"sar:frequency_band":{"label":"Frequency Band"},"sar:center_frequency":{"label":"Center Frequency","unit":"GHz"},"sar:polarizations":{"label":"Polarizations","format":"CSV"},"sar:product_type":{"label":"Product Type"},"sar:resolution_range":{"label":"Range Resolution","unit":"m"},"sar:resolution_azimuth":{"label":"Azimuth Resolution","unit":"m"},"sar:pixel_spacing_range":{"label":"Range Pixel Spacing","unit":"m"},"sar:pixel_spacing_azimuth":{"label":"Aziumth Pixel Spacing","unit":"m"},"sar:looks_range":{"label":"Range Looks"},"sar:looks_azimuth":{"label":"Azimuth Looks"},"sar:looks_equivalent_number":{"label":"ENL","explain":"Equivalent Number of Looks"},"sar:observation_direction":{"label":"Observation Direction"},"sat:platform_international_designator":{"label":"Int. Designator","explain":"International designator for the platform, also known as COSPAR ID and NSSDCA ID."},"sat:orbit_state":{"label":"Orbit State"},"sat:absolute_orbit":{"label":"Abs. Orbit Number","explain":"Absolute Orbit Number"},"sat:relative_orbit":{"label":"Rel. Orbit Number","explain":"Relative Orbit Number"},"sat:anx_datetime":{"label":"ANX Time","explain":"Ascending Node Crossing time","summary":"r"},"sci:doi":{"label":"DOI","format":"DOI"},"sci:citation":{"label":"Citation"},"sci:publications":{"label":"Publications","summary":false,"items":{"citation":{"label":"Publication","sortable":true,"order":0},"doi":{"label":"DOI","format":"DOI","sortable":true,"order":1}},"itemOrder":["citation","doi"]},"ssys:targets":{"label":"Target Body"},"storage:platform":{"label":"Provider","mapping":{"ALIBABA":"Alibaba Cloud","AWS":"Amazon AWS","AZURE":"Microsoft Azure","GCP":"Google Cloud Platform","IBM":"IBM Cloud","ORACLE":"Oracle Cloud"}},"storage:region":{"label":"Region"},"storage:requester_pays":{"label":"Requester Pays"},"storage:tier":{"label":"Tier Type"},"table:columns":{"label":"Columns","items":{"name":{"label":"Name","sortable":true,"id":true,"order":0},"type":{"label":"Data Type","sortable":true,"order":1},"description":{"label":"Description","format":"CommonMark","order":2}},"itemOrder":["name","type","description"]},"table:primary_geometry":{"label":"Primary Geometry Column"},"table:row_count":{"label":"Rows"},"table:tables":{"label":"Tables","summary":false,"listWithKeys":true,"items":{"name":{"label":"Name","sortable":true,"id":true,"order":0},"description":{"label":"Description","format":"CommonMark","order":1}},"itemOrder":["name","description"]},"tiles:tile_matrix_sets":{"label":"Tile Matrix Sets","custom":true,"summary":false},"tiles:tile_matrix_set_links":{"label":"Tile Matrix Set Links","custom":true,"summary":false},"view:off_nadir":{"label":"Off-Nadir Angle","unit":"°"},"view:incidence_angle":{"label":"Incidence Angle","unit":"°"},"view:azimuth":{"label":"Viewing Azimuth","unit":"°"},"view:sun_azimuth":{"label":"Sun Azimuth","unit":"°"},"view:sun_elevation":{"label":"Sun Elevation","unit":"°"},"pl:black_fill":{"label":"Unfilled Image Parts","unit":"%"},"pl:clear_percent":{"label":"Clear Sky","unit":"%"},"pl:grid_cell":{"label":"Grid Cell"},"pl:ground_control":{"label":"Positional Accuracy"},"pl:ground_control_ratio":{"label":"Successful Rectification Ratio"},"pl:item_type":{"label":"Type"},"pl:pixel_resolution":{"label":"Spatial Resolution","unit":"m"},"pl:publishing_stage":{"label":"Publishing Stage","mapping":{"preview":"Preview","standard":"Standard","finalized":"Finalized"}},"pl:quality_category":{"label":"Quality Category","mapping":{"standard":"Standard","test":"Test"}},"pl:strip_id":{"label":"Image Strip ID"},"gee:type":{"label":"Type","mapping":{"image":"Single image","image_collection":"Image collection","table":"Table"}},"gee:cadence":{"label":"Cadence"},"gee:schema":{"label":"Variables","items":{"name":{"label":"Name"},"description":{"label":"Description"},"type":{"label":"Data Type"}},"summary":false,"itemOrder":["type","description","name"]},"gee:revisit_interval":{"label":"Revisit Interval"},"gee:terms_of_use":{"label":"Terms of Use","format":"CommonMark","summary":false},"gee:visualizations":{"label":"Visualizations","custom":true,"summary":false},"landsat:scene_id":{"label":"Scene ID"},"landsat:collection_category":{"label":"Collection Category"},"landsat:collection_number":{"label":"Collection Number"},"landsat:wrs_type":{"label":"WRS Type","explain":"Worldwide Reference System Type"},"landsat:wrs_path":{"label":"WRS Path","explain":"Worldwide Reference System Path"},"landsat:wrs_row":{"label":"WRS Row","explain":"Worldwide Reference System Row"},"landsat:cloud_cover_land":{"label":"Land Cloud Cover","unit":"%"},"msft:container":{"label":"Container"},"msft:storage_account":{"label":"Storage Account"},"msft:short_description":{"label":"Summary","summary":false},"sentinel:utm_zone":{"label":"UTM Zone"},"sentinel:latitude_band":{"label":"Latitude Band"},"sentinel:grid_square":{"label":"Grid Square"},"sentinel:sequence":{"label":"Sequence"},"sentinel:product_id":{"label":"Product ID","summary":"s"},"sentinel:data_coverage":{"label":"Data Coverage","unit":"%"},"sentinel:valid_cloud_cover":{"label":"Valid Cloud Cover"},"cbers:data_type":{"label":"Processing Level","explain":"Geolocation precision level","mapping":{"L2":"Geolocation using only satellite telemetry","L3":"Control points used to geolocate image, no terrain correction","L4":"Control points used to geolocate image, orthorectified"},"summary":"v"},"cbers:path":{"label":"Reference Grid Path"},"cbers:row":{"label":"Reference Grid Row"},"card4l:specification":{"label":"Specification","mapping":{"SR":"Surface Reflectance (Optical)","ST":"Surface Temperature (Optical)","NRB":"Normalized Radar Backscatter (SAR)","POL":"Polarimetric Radar (SAR)"}},"card4l:specification_version":{"label":"Specification Version"},"card4l:orbit_mean_altitude":{"label":"Platform Altitude","unit":"m"},"card4l:incidence_angle_near_range":{"label":"Incidence Angle (near)","unit":"°"},"card4l:incidence_angle_far_range":{"label":"Incidence Angle (far)","unit":"°"},"card4l:noise_equivalent_intensity":{"label":"Noise Equivalent Intensity","unit":"dB"},"card4l:mean_faraday_rotation_angle":{"label":"Mean Faraday Rotation","unit":"°"},"card4l:speckle_filtering":{"label":"Speckle Filtering","custom":true,"summary":false,"null":"not applied"},"card4l:relative_rtc_accuracy":{"label":"Rel. RTC Accuracy","explain":"Relative accuracy of the Radiometric Terrain Correction","unit":"dB"},"card4l:absolute_rtc_accuracy":{"label":"Abs. RTC Accuracy","explain":"Absolute accuracy of the Radiometric Terrain Correction","unit":"dB"},"card4l:northern_geometric_accuracy":{"label":"Northern Geometric Accuracy","unit":"m"},"card4l:eastern_geometric_accuracy":{"label":"Eastern Geometric Accuracy","unit":"m"},"card4l:ellipsoidal_height":{"label":"Ellipsoidal Height","unit":"m"},"geoadmin:variant":{"label":"Product Variant","mapping":{"krel":"RGB color with relief","komb":"RGB color without relief","kgrel":"Grayscale with relief","kgrs":"Grayscale without relief"}}}} +{"metadata":{"id":{"label":"Identifier"},"keywords":{"label":"Keywords"},"datetime":{"label":"Time of Data","format":"Timestamp","summary":false},"title":{"label":"Title","summary":false},"description":{"label":"Description","format":"CommonMark","summary":false},"roles":{"label":"Purpose"},"start_datetime":{"label":"Time of Data begins","format":"Timestamp","summary":false},"end_datetime":{"label":"Time of Data ends","format":"Timestamp","summary":false},"created":{"label":"Created","format":"Timestamp","summary":"r"},"updated":{"label":"Updated","format":"Timestamp","summary":"r"},"published":{"label":"Published","format":"Timestamp","summary":"r"},"expires":{"label":"Expires","format":"Timestamp","summary":"r"},"unpublished":{"label":"Unpublished","format":"Timestamp","summary":"r"},"license":{"label":"License","format":"License","summary":false},"providers":{"label":"Providers","format":"Providers","summary":false},"platform":{"label":"Platform"},"instruments":{"label":"Instruments","format":"CSV"},"constellation":{"label":"Constellation"},"mission":{"label":"Mission"},"gsd":{"label":"GSD","explain":"Ground Sample Distance","unit":"m"},"bands":{"label":"Bands","items":{"name":{"label":"Name","sortable":true,"id":true,"order":0},"description":{"alias":"description","order":2,"label":"Description","format":"CommonMark","summary":false},"gsd":{"alias":"gsd","sortable":true,"label":"GSD","explain":"Ground Sample Distance","unit":"m"},"nodata":{"alias":"nodata","label":"No-Data Values","format":"CSV","summary":false},"data_type":{"alias":"data_type","sortable":true,"label":"Data Type of Values","format":"FileDataType"},"statistics":{"alias":"statistics","label":"Statistics","listWithKeys":true,"items":{"mean":{"label":"Average"},"maximum":{"label":"Max.","explain":"Maxmimum value"},"minimum":{"label":"Min.","explain":"Minimum value"},"stdev":{"label":"Std. Dev.","explain":"Standard Deviation"},"count":{"label":"Count","explain":"Total number of values"},"valid_percent":{"label":"Valid","explain":"Percentage of valid values","unit":"%"}},"itemOrder":["mean","count","maximum","minimum","stdev","valid_percent"]},"eo:common_name":{"alias":"eo:common_name","sortable":true,"order":1,"label":"Common Name"},"eo:center_wavelength":{"alias":"eo:center_wavelength","sortable":true,"label":"Wavelength","explain":"The center wavelength of the band","unit":"μm"},"eo:full_width_half_max":{"alias":"eo:full_width_half_max","sortable":true,"label":"FWHM","explain":"Full Width Half Max","unit":"μm"},"eo:solar_illumination":{"alias":"eo:solar_illumination","sortable":true,"label":"Solar Illumination","unit":"W/m²/μm"},"raster:sampling":{"alias":"raster:sampling","sortable":true,"label":"Sampling","mapping":{"area":"Area","point":"Point (at pixel center)"}},"unit":{"alias":"unit","sortable":true,"label":"Unit of Values"},"raster:bits_per_sample":{"alias":"raster:bits_per_sample","sortable":true,"label":"Bits per Sample"},"raster:spatial_resolution":{"alias":"raster:spatial_resolution","sortable":true,"label":"Resolution","explain":"Average spatial resolution","unit":"m"},"raster:scale":{"alias":"raster:scale","sortable":true,"label":"Scale"},"raster:offset":{"alias":"raster:offset","sortable":true,"label":"Offset"},"raster:histogram":{"alias":"raster:histogram","label":"Histogram","custom":true},"classification:classes":{"alias":"classification:classes","summary":false,"label":"Classes","items":{"color_hint":{"label":"Color","order":0,"format":"HexColor"},"value":{"label":"Value","sortable":true,"order":1},"title":{"label":"Title","sortable":true,"order":2},"name":{"label":"Identifier","sortable":true,"order":3},"description":{"label":"Description","order":4,"format":"CommonMark"},"percentage":{"label":"Percentage of samples","sortable":true,"order":5,"unit":"%"},"count":{"label":"Number of samples","sortable":true,"order":6},"nodata":{"label":"No-data value","order":7,"default":false}},"itemOrder":["color_hint","value","title","name","description","percentage","count","nodata"]},"classification:bitfields":{"alias":"classification:bitfields","summary":false,"label":"Bit Mask","items":{"name":{"label":"Name","sortable":true,"order":0},"offset":{"label":"Offset","explain":"Offset to the first bit","order":1},"length":{"label":"Number of bits","order":2},"description":{"label":"Description","order":3,"format":"CommonMark"},"classes":{"alias":"classification:classes","summary":false,"label":"Classes","items":{"color_hint":{"label":"Color","order":0,"format":"HexColor"},"value":{"label":"Value","sortable":true,"order":1},"title":{"label":"Title","sortable":true,"order":2},"name":{"label":"Identifier","sortable":true,"order":3},"description":{"label":"Description","order":4,"format":"CommonMark"},"percentage":{"label":"Percentage of samples","sortable":true,"order":5,"unit":"%"},"count":{"label":"Number of samples","sortable":true,"order":6},"nodata":{"label":"No-data value","order":7,"default":false}},"itemOrder":["color_hint","value","title","name","description","percentage","count","nodata"]},"roles":{"label":"Purpose"}},"itemOrder":["classes","name","offset","length","description","roles"]}},"itemOrder":["name","classification:bitfields","raster:bits_per_sample","classification:classes","eo:common_name","data_type","description","eo:full_width_half_max","gsd","raster:histogram","nodata","raster:offset","raster:spatial_resolution","raster:sampling","raster:scale","eo:solar_illumination","statistics","unit","eo:center_wavelength"]},"nodata":{"label":"No-Data Values","format":"CSV","summary":false},"data_type":{"label":"Data Type of Values","format":"FileDataType"},"unit":{"label":"Unit of Values"},"statistics":{"label":"Statistics","listWithKeys":true,"items":{"mean":{"label":"Average"},"maximum":{"label":"Max.","explain":"Maxmimum value"},"minimum":{"label":"Min.","explain":"Minimum value"},"stdev":{"label":"Std. Dev.","explain":"Standard Deviation"},"count":{"label":"Count","explain":"Total number of values"},"valid_percent":{"label":"Valid","explain":"Percentage of valid values","unit":"%"}},"itemOrder":["mean","count","maximum","minimum","stdev","valid_percent"]},"version":{"label":"Data Version","summary":false},"deprecated":{"label":"Deprecated","summary":false},"experimental":{"label":"Experimental","summary":false},"language":{"label":"Current Language","ext":"language","summary":"v","properties":{"name":{"label":"Name"},"alternate":{"label":"Alternate Name"},"code":{"label":"Code"},"dir":{"label":"Direction","explain":"Reading and writing direction","mapping":{"ltr":"left-to-right","rtl":"right-to-left"},"default":"ltr"}}},"languages":{"label":"Available Languages","ext":"language","summary":false,"items":{"name":{"label":"Name","sortable":true,"order":0},"alternate":{"label":"Alternate Name","sortable":true,"order":1},"code":{"label":"Code","sortable":true,"order":2},"dir":{"label":"Direction","explain":"Reading and writing direction","sortable":true,"order":3,"mapping":{"ltr":"left-to-right","rtl":"right-to-left"},"default":"ltr"}},"itemOrder":["name","alternate","code","dir"]},"contacts":{"label":"Contacts","ext":"contacts","summary":"v","items":{"name":{"label":"Name"},"identifier":{"label":"Identifier"},"position":{"label":"Position"},"organization":{"label":"Organization"},"logo":{"label":"Logo","format":"Image"},"phones":{"label":"Phone","items":{"value":{"label":"Number","format":"Phone","order":0},"roles":{"label":"Used For","order":1,"mapping":{"work":"Work","home":"Personal","fax":"Fax"}}},"itemOrder":["value","roles"]},"emails":{"label":"Email","items":{"value":{"label":"Address","format":"Email","order":0},"roles":{"label":"Used For","order":1,"mapping":{"work":"Work","home":"Personal"}}},"itemOrder":["value","roles"]},"addresses":{"label":"Postal Addresses","format":"Address","items":{"deliveryPoint":{"label":"Street / House","order":0},"city":{"label":"City","order":1},"administrativeArea":{"label":"State / Province","order":2},"postalCode":{"label":"Postal Code","order":3},"country":{"label":"Country","order":4}},"itemOrder":["deliveryPoint","city","administrativeArea","postalCode","country"]},"links":{"label":"Additional Resources","format":"Link"},"contactInstructions":{"label":"Further Instructions"},"roles":{"label":"Types","format":"CSV"}},"itemOrder":["links","emails","contactInstructions","identifier","logo","name","organization","phones","position","addresses","roles"]},"themes":{"label":"Themes","ext":"themes","summary":false,"items":{"scheme":{"label":"Vocabulary","order":0,"format":"Url"},"concepts":{"label":"Terms","order":1,"format":"Concepts","items":{"id":{"label":"Identifier","order":0},"title":{"label":"Title","order":1},"description":{"label":"Description","order":2},"url":{"label":"URL","order":3,"format":"Url"}},"itemOrder":["id","title","description","url"]}},"itemOrder":["scheme","concepts"]},"crs":{"label":"CRS","format":"CRS","explain":"Coordinate Reference System"},"anon:size":{"label":"Uncertainty","unit":"°","explain":"The size of one side of the anonymized bounding box"},"anon:warning":{"label":"Warning","summary":false},"classification:classes":{"summary":false,"label":"Classes","items":{"color_hint":{"label":"Color","order":0,"format":"HexColor"},"value":{"label":"Value","sortable":true,"order":1},"title":{"label":"Title","sortable":true,"order":2},"name":{"label":"Identifier","sortable":true,"order":3},"description":{"label":"Description","order":4,"format":"CommonMark"},"percentage":{"label":"Percentage of samples","sortable":true,"order":5,"unit":"%"},"count":{"label":"Number of samples","sortable":true,"order":6},"nodata":{"label":"No-data value","order":7,"default":false}},"itemOrder":["color_hint","value","title","name","description","percentage","count","nodata"]},"classification:bitfields":{"summary":false,"label":"Bit Mask","items":{"name":{"label":"Name","sortable":true,"order":0},"offset":{"label":"Offset","explain":"Offset to the first bit","order":1},"length":{"label":"Number of bits","order":2},"description":{"label":"Description","order":3,"format":"CommonMark"},"classes":{"alias":"classification:classes","summary":false,"label":"Classes","items":{"color_hint":{"label":"Color","order":0,"format":"HexColor"},"value":{"label":"Value","sortable":true,"order":1},"title":{"label":"Title","sortable":true,"order":2},"name":{"label":"Identifier","sortable":true,"order":3},"description":{"label":"Description","order":4,"format":"CommonMark"},"percentage":{"label":"Percentage of samples","sortable":true,"order":5,"unit":"%"},"count":{"label":"Number of samples","sortable":true,"order":6},"nodata":{"label":"No-data value","order":7,"default":false}},"itemOrder":["color_hint","value","title","name","description","percentage","count","nodata"]},"roles":{"label":"Purpose"}},"itemOrder":["classes","name","offset","length","description","roles"]},"cube:dimensions":{"label":"Dimensions","summary":false,"listWithKeys":true,"items":{"type":{"label":"Type","order":0},"axis":{"label":"Axis","order":1},"description":{"label":"Description","format":"CommonMark","order":2},"extent":{"label":"Extent","format":"Extent","order":3},"bbox":{"alias":"proj:bbox","order":3,"label":"Bounding Box","custom":true,"summary":false},"values":{"label":"Values","order":4},"step":{"label":"Step","order":5},"unit":{"alias":"unit","order":5,"label":"Unit of Values"},"geometry_types":{"label":"Geometry Types","order":5},"reference_system":{"label":"Reference System","explain":"Coordinate / Temporal / Other Reference System","order":6}},"itemOrder":["type","axis","description","extent","bbox","values","step","unit","geometry_types","reference_system"]},"cube:variables":{"label":"Variables","summary":false,"listWithKeys":true,"items":{"dimensions":{"label":"Dimensions","order":0},"type":{"label":"Type","order":1,"mapping":{"data":"Measured values","auxiliary":"Coordinate data"}},"description":{"label":"Description","format":"CommonMark","order":2},"extent":{"label":"Extent","format":"Extent","order":3},"values":{"label":"Values","order":4},"step":{"label":"Step","order":5},"unit":{"alias":"unit","order":6,"label":"Unit of Values"}},"itemOrder":["dimensions","type","description","extent","values","step","unit"]},"eo:bands":{"label":"Spectral Bands","items":{"name":{"label":"Name","sortable":true,"id":true,"order":0},"common_name":{"alias":"eo:common_name","sortable":true,"order":1,"label":"Common Name"},"center_wavelength":{"alias":"eo:center_wavelength","sortable":true,"order":2,"label":"Wavelength","explain":"The center wavelength of the band","unit":"μm"},"full_width_half_max":{"alias":"eo:full_width_half_max","sortable":true,"order":3,"label":"FWHM","explain":"Full Width Half Max","unit":"μm"},"solar_illumination":{"alias":"eo:solar_illumination","sortable":true,"order":7,"label":"Solar Illumination","unit":"W/m²/μm"},"description":{"alias":"description","label":"Description","format":"CommonMark","summary":false},"gsd":{"alias":"gsd","sortable":true,"label":"GSD","explain":"Ground Sample Distance","unit":"m"},"cloud_cover":{"alias":"eo:cloud_cover","sortable":true,"label":"Cloud Cover","unit":"%"}},"itemOrder":["name","cloud_cover","common_name","description","gsd","center_wavelength","full_width_half_max","solar_illumination"]},"eo:cloud_cover":{"label":"Cloud Cover","unit":"%"},"eo:snow_cover":{"label":"Snow/Ice Cover","unit":"%"},"eo:common_name":{"label":"Common Name"},"eo:center_wavelength":{"label":"Wavelength","explain":"The center wavelength of the band","unit":"μm"},"eo:full_width_half_max":{"label":"FWHM","explain":"Full Width Half Max","unit":"μm"},"eo:solar_illumination":{"label":"Solar Illumination","unit":"W/m²/μm"},"forecast:reference_datetime":{"label":"Reference Time","format":"Timestamp","summary":"r"},"forecast:horizon":{"label":"Forecast Horizon","explain":"The time between the reference time and the forecast time","format":"Duration"},"forecast:duration":{"label":"Forecast Length","format":"Duration"},"file:bits_per_sample":{"alias":"raster:bits_per_sample","label":"Bits per Sample"},"file:byte_order":{"label":"Byte Order"},"file:checksum":{"label":"Checksum","format":"Checksum","summary":false},"file:data_type":{"alias":"data_type","label":"Data Type of Values","format":"FileDataType"},"file:header_size":{"label":"Header Size","format":"FileSize","summary":false},"file:nodata":{"alias":"nodata","label":"No-Data Values","format":"CSV","summary":false},"file:size":{"label":"Size","format":"FileSize","summary":false},"file:unit":{"alias":"unit","label":"Unit of Values"},"file:values":{"label":"Map of Values","summary":false,"items":{"values":{"label":"Values","format":"CSV","order":1},"summary":{"label":"Summary","order":0}},"itemOrder":["summary","values"]},"file:local_path":{"label":"Local Path","summary":false},"nodata:values":{"alias":"nodata","label":"No-Data Values","format":"CSV","summary":false},"goes:orbital_slot":{"label":"Orbital Slot"},"goes:system_environment":{"label":"System Environment","mapping":{"OR":"Operational system, real-time data","OT":"Operational system, test data","IR":"Test system, real-time data","IT":"Test system, test data","IP":"Test system, playback data","IS":"Test system, simulated data"}},"goes:image_type":{"label":"Area","mapping":{"FULL DISK":"The Americas (full disk)","CONUS":"North America (continental US)","MESOSCALE":"Central/South America (mesoscale)"}},"goes:mesoscale_image_number":{"label":"Area in Central/South America","mapping":{"1":"Region 1","2":"Region 2"}},"goes:mode":{"label":"Capture Mode","mapping":{"3":"3: 1x full disk, 3x continental US, 30x mesoscale region 1, 30x mesoscale region 2 (every 15 minutes)","4":"4: 1x full disk (every 5 minutes)","6":"6: 1x full disk, 2x continental US, 20x mesoscale region 1, 20x mesoscale region 2 (every 10 minutes)"}},"goes:group_time_threshold":{"label":"Time Threshold in a Group","explain":"Lightning group maximum time difference among lightning events in a group","unit":"s"},"goes:flash_time_threshold":{"label":"Time Threshold in a Flash","explain":"Lightning flash maximum time difference among lightning events in a flash","unit":"s"},"goes:lightning_wavelength":{"label":"Central Wavelength","unit":"nm"},"goes:yaw_flip_flag":{"label":"Yaw Flip Configuration","explain":"Flag indicating that the spacecraft is operating in yaw flip configuration.","mapping":{"0":"Upright","1":"Neither","2":"Inverted"}},"goes:event_count":{"label":"Lightning Events"},"goes:group_count":{"label":"Lightning Groups"},"goes:flash_count":{"label":"Lightning Flashes"},"goes:nominal_satellite_subpoint_lat":{"label":"Satellite Subpoint Latitude","unit":"°N"},"goes:nominal_satellite_subpoint_lon":{"label":"Satellite Subpoint Longitude","unit":"°E"},"goes:nominal_satellite_height":{"label":"Satellite Height","explain":"Nominal satellite height above GRS 80 ellipsoid","unit":"km"},"goes:percent_navigated_L1b_events":{"label":"Events navigated by Instrument","format":"Percent0to1","unit":"%"},"goes:percent_uncorrectable_L0_errors":{"label":"Data Lost","format":"Percent0to1","unit":"%"},"grid:code":{"label":"Grid","format":"GridCode"},"raster:bands":{"label":"Layers","items":{"nodata":{"alias":"nodata","label":"No-Data Values","format":"CSV","summary":false},"sampling":{"alias":"raster:sampling","sortable":true,"label":"Sampling","mapping":{"area":"Area","point":"Point (at pixel center)"}},"data_type":{"alias":"data_type","sortable":true,"label":"Data Type of Values","format":"FileDataType"},"bits_per_sample":{"alias":"raster:bits_per_sample","sortable":true,"label":"Bits per Sample"},"spatial_resolution":{"alias":"raster:spatial_resolution","sortable":true,"label":"Resolution","explain":"Average spatial resolution","unit":"m"},"statistics":{"alias":"statistics","label":"Statistics","listWithKeys":true,"items":{"mean":{"label":"Average"},"maximum":{"label":"Max.","explain":"Maxmimum value"},"minimum":{"label":"Min.","explain":"Minimum value"},"stdev":{"label":"Std. Dev.","explain":"Standard Deviation"},"count":{"label":"Count","explain":"Total number of values"},"valid_percent":{"label":"Valid","explain":"Percentage of valid values","unit":"%"}},"itemOrder":["mean","count","maximum","minimum","stdev","valid_percent"]},"unit":{"alias":"unit","sortable":true,"label":"Unit of Values"},"scale":{"alias":"raster:scale","sortable":true,"label":"Scale"},"offset":{"alias":"raster:offset","sortable":true,"label":"Offset"},"histogram":{"alias":"raster:histogram","label":"Histogram","custom":true}},"itemOrder":["bits_per_sample","data_type","histogram","nodata","offset","spatial_resolution","sampling","scale","statistics","unit"]},"raster:sampling":{"label":"Sampling","mapping":{"area":"Area","point":"Point (at pixel center)"}},"raster:bits_per_sample":{"label":"Bits per Sample"},"raster:spatial_resolution":{"label":"Resolution","explain":"Average spatial resolution","unit":"m"},"raster:scale":{"label":"Scale"},"raster:offset":{"label":"Offset"},"raster:histogram":{"label":"Histogram","custom":true},"label:properties":{"label":"Properties","null":"raster data"},"label:classes":{"label":"Classes","items":{"name":{"label":"Name","null":"raster-formatted","sortable":true,"id":true},"classes":{"label":"Classes"}},"itemOrder":["name","classes"]},"label:description":{"label":"Description","format":"CommonMark","summary":false},"label:type":{"label":"Type"},"label:tasks":{"label":"Tasks"},"label:methods":{"label":"Methods"},"label:overviews":{"label":"Overviews","summary":false,"items":{"property_key":{"label":"Property Key","id":true},"counts":{"label":"Counts","custom":true},"statistics":{"label":"Statistics","custom":true}},"itemOrder":["property_key","counts","statistics"]},"mgrs:latitude_band":{"label":"Latitude Band"},"mgrs:grid_square":{"label":"Grid Square"},"mgrs:utm_zone":{"label":"UTM Zone"},"noaa_mrms_qpe:pass":{"label":"Pass Number","mapping":{"1":"1 (less latency / less gauges)","2":"2 (more latency / more gauges)"}},"noaa_mrms_qpe:period":{"label":"Accumulation Period","unit":"h"},"noaa_mrms_qpe:region":{"label":"Region","mapping":{"CONUS":"Continental US","HAWAII":"Hawaii","GUAM":"Guam","ALASKA":"Alaska","CARIB":"Caribbean Islands"}},"openeo:status":{"label":"Processing Status"},"api_version":{"label":"API Version","ext":"openeo"},"backend_version":{"label":"Back-End Version","ext":"openeo"},"production":{"label":"Production-Ready","ext":"openeo"},"endpoints":{"label":"Supported Endpoints","ext":"openeo","summary":false,"items":{"path":{"label":"Path Template","order":0},"methods":{"label":"HTTP Methods","order":1,"format":"CSV"}},"itemOrder":["path","methods"]},"billing":{"label":"Billing","ext":"openeo","custom":true,"summary":false},"order:status":{"label":"Status","mapping":{"orderable":"Orderable (data can be ordered)","ordered":"Ordered (preparing to deliver data)","pending":"Pending (waiting for activation)","shipping":"Shipping (data is getting processed)","succeeded":"Delivered (data is available)","failed":"Failed (unable to deliver)","canceled":"Canceled (delivery stopped)"}},"order:id":{"label":"Identifier"},"order:date":{"label":"Submitted","format":"Timestamp","summary":"r"},"order:expiration_date":{"alias":"expires","label":"Expires","format":"Timestamp","summary":"r"},"pc:count":{"label":"Points","explain":"Number of Points"},"pc:type":{"label":"Type"},"pc:encoding":{"label":"Format"},"pc:schemas":{"label":"Schemas","summary":false,"items":{"name":{"label":"Name","sortable":true,"id":true},"size":{"label":"Size","unit":"bytes","sortable":true},"type":{"label":"Type","sortable":true}},"itemOrder":["name","size","type"]},"pc:density":{"label":"Density"},"pc:statistics":{"label":"Statistics","summary":"s","items":{"name":{"label":"Name","id":true},"position":{"label":"Position"},"average":{"label":"Average"},"count":{"label":"Count"},"maximum":{"label":"Max.","explain":"Maxmimum value"},"minimum":{"label":"Min.","explain":"Minimum value"},"stddev":{"label":"Std. Dev.","explain":"Standard Deviation"},"variance":{"label":"Variance"}},"itemOrder":["name","average","count","maximum","minimum","position","stddev","variance"]},"processing:expression":{"label":"Processing Instructions","summary":false},"processing:lineage":{"label":"Lineage","format":"CommonMark","summary":false},"processing:level":{"label":"Level"},"processing:facility":{"label":"Facility"},"processing:software":{"label":"Software","format":"Software","summary":false},"processing:version":{"label":"Processor Version"},"processing:datetime":{"label":"Processing Time","format":"Timestamp","summary":"r"},"product:type":{"label":"Product Type"},"product:timeliness":{"label":"Timeliness","format":"Duration"},"product:timeliness_category":{"label":"Timeliness Category"},"product:acquisition_type":{"label":"Acquisition Type","mapping":{"nominal":"Nominal","calibration":"Calibration","other":"Other"}},"proj:epsg":{"label":"EPSG Code","format":"EPSG","summary":"v"},"proj:code":{"label":"Code","format":"CrsCode","summary":"v"},"proj:wkt2":{"label":"WKT2","explain":"Well-Known Text, version 2","format":"WKT2","summary":false},"proj:projjson":{"label":"PROJJSON","explain":"JSON encoding of WKT2","format":"PROJJSON","summary":false},"proj:geometry":{"label":"Footprint","custom":true,"summary":false},"proj:bbox":{"label":"Bounding Box","custom":true,"summary":false},"proj:centroid":{"label":"Centroid","custom":true,"summary":false},"proj:shape":{"label":"Image Dimensions","format":"Shape","summary":false},"proj:transform":{"label":"Transformation Matrix","format":"Transform","summary":false},"sar:instrument_mode":{"label":"Instrument Mode"},"sar:frequency_band":{"label":"Frequency Band"},"sar:center_frequency":{"label":"Center Frequency","unit":"GHz"},"sar:polarizations":{"label":"Polarizations","format":"CSV"},"sar:product_type":{"label":"Product Type"},"sar:resolution_range":{"label":"Range Resolution","unit":"m"},"sar:resolution_azimuth":{"label":"Azimuth Resolution","unit":"m"},"sar:pixel_spacing_range":{"label":"Range Pixel Spacing","unit":"m"},"sar:pixel_spacing_azimuth":{"label":"Azimuth Pixel Spacing","unit":"m"},"sar:looks_range":{"label":"Range Looks"},"sar:looks_azimuth":{"label":"Azimuth Looks"},"sar:looks_equivalent_number":{"label":"ENL","explain":"Equivalent Number of Looks"},"sar:observation_direction":{"label":"Observation Direction"},"sat:platform_international_designator":{"label":"Int. Designator","explain":"International designator for the platform, also known as COSPAR ID and NSSDCA ID."},"sat:orbit_state":{"label":"Orbit State"},"sat:absolute_orbit":{"label":"Abs. Orbit Number","explain":"Absolute Orbit Number"},"sat:relative_orbit":{"label":"Rel. Orbit Number","explain":"Relative Orbit Number"},"sat:anx_datetime":{"label":"ANX Time","format":"Timestamp","explain":"Ascending Node Crossing time","summary":"r"},"sci:doi":{"label":"DOI","format":"DOI"},"sci:citation":{"label":"Citation"},"sci:publications":{"label":"Publications","summary":false,"items":{"citation":{"label":"Publication","sortable":true,"order":0},"doi":{"label":"DOI","format":"DOI","sortable":true,"order":1}},"itemOrder":["citation","doi"]},"ssys:targets":{"label":"Target Body"},"storage:platform":{"label":"Provider","mapping":{"ALIBABA":"Alibaba Cloud","AWS":"Amazon AWS","AZURE":"Microsoft Azure","GCP":"Google Cloud Platform","IBM":"IBM Cloud","ORACLE":"Oracle Cloud"}},"storage:region":{"label":"Region"},"storage:requester_pays":{"label":"Requester Pays"},"storage:tier":{"label":"Tier Type"},"table:columns":{"label":"Columns","items":{"name":{"label":"Name","sortable":true,"id":true,"order":0},"type":{"label":"Data Type","sortable":true,"order":1},"description":{"label":"Description","format":"CommonMark","order":2}},"itemOrder":["name","type","description"]},"table:primary_geometry":{"label":"Primary Geometry Column"},"table:row_count":{"label":"Rows"},"table:tables":{"label":"Tables","summary":false,"listWithKeys":true,"items":{"name":{"label":"Name","sortable":true,"id":true,"order":0},"description":{"label":"Description","format":"CommonMark","order":1}},"itemOrder":["name","description"]},"tiles:tile_matrix_sets":{"label":"Tile Matrix Sets","custom":true,"summary":false},"tiles:tile_matrix_set_links":{"label":"Tile Matrix Set Links","custom":true,"summary":false},"view:off_nadir":{"label":"Off-Nadir Angle","unit":"°"},"view:incidence_angle":{"label":"Incidence Angle","unit":"°"},"view:azimuth":{"label":"Viewing Azimuth","unit":"°"},"view:sun_azimuth":{"label":"Sun Azimuth","unit":"°"},"view:sun_elevation":{"label":"Sun Elevation","unit":"°"},"pl:black_fill":{"label":"Unfilled Image Parts","unit":"%"},"pl:clear_percent":{"label":"Clear Sky","unit":"%"},"pl:grid_cell":{"label":"Grid Cell"},"pl:ground_control":{"label":"Positional Accuracy"},"pl:ground_control_ratio":{"label":"Successful Rectification Ratio"},"pl:item_type":{"label":"Type"},"pl:pixel_resolution":{"label":"Spatial Resolution","unit":"m"},"pl:publishing_stage":{"label":"Publishing Stage","mapping":{"preview":"Preview","standard":"Standard","finalized":"Finalized"}},"pl:quality_category":{"label":"Quality Category","mapping":{"standard":"Standard","test":"Test"}},"pl:strip_id":{"label":"Image Strip ID"},"gee:type":{"label":"Type","mapping":{"image":"Single image","image_collection":"Image collection","table":"Table"}},"gee:cadence":{"label":"Cadence"},"gee:schema":{"label":"Variables","items":{"name":{"label":"Name"},"description":{"label":"Description"},"type":{"label":"Data Type"}},"summary":false,"itemOrder":["type","description","name"]},"gee:revisit_interval":{"label":"Revisit Interval"},"gee:terms_of_use":{"label":"Terms of Use","format":"CommonMark","summary":false},"gee:visualizations":{"label":"Visualizations","custom":true,"summary":false},"landsat:scene_id":{"label":"Scene ID"},"landsat:collection_category":{"label":"Collection Category"},"landsat:collection_number":{"label":"Collection Number"},"landsat:wrs_type":{"label":"WRS Type","explain":"Worldwide Reference System Type"},"landsat:wrs_path":{"label":"WRS Path","explain":"Worldwide Reference System Path"},"landsat:wrs_row":{"label":"WRS Row","explain":"Worldwide Reference System Row"},"landsat:cloud_cover_land":{"label":"Land Cloud Cover","unit":"%"},"msft:container":{"label":"Container"},"msft:storage_account":{"label":"Storage Account"},"msft:short_description":{"label":"Summary","summary":false},"sentinel:utm_zone":{"label":"UTM Zone"},"sentinel:latitude_band":{"label":"Latitude Band"},"sentinel:grid_square":{"label":"Grid Square"},"sentinel:sequence":{"label":"Sequence"},"sentinel:product_id":{"label":"Product ID","summary":"s"},"sentinel:data_coverage":{"label":"Data Coverage","unit":"%"},"sentinel:valid_cloud_cover":{"label":"Valid Cloud Cover"},"cbers:data_type":{"label":"Processing Level","explain":"Geolocation precision level","mapping":{"L2":"Geolocation using only satellite telemetry","L3":"Control points used to geolocate image, no terrain correction","L4":"Control points used to geolocate image, orthorectified"},"summary":"v"},"cbers:path":{"label":"Reference Grid Path"},"cbers:row":{"label":"Reference Grid Row"},"card4l:specification":{"label":"Specification","mapping":{"SR":"Surface Reflectance (Optical)","ST":"Surface Temperature (Optical)","NRB":"Normalized Radar Backscatter (SAR)","POL":"Polarimetric Radar (SAR)"}},"card4l:specification_version":{"label":"Specification Version"},"card4l:orbit_mean_altitude":{"label":"Platform Altitude","unit":"m"},"card4l:incidence_angle_near_range":{"label":"Incidence Angle (near)","unit":"°"},"card4l:incidence_angle_far_range":{"label":"Incidence Angle (far)","unit":"°"},"card4l:noise_equivalent_intensity":{"label":"Noise Equivalent Intensity","unit":"dB"},"card4l:mean_faraday_rotation_angle":{"label":"Mean Faraday Rotation","unit":"°"},"card4l:speckle_filtering":{"label":"Speckle Filtering","custom":true,"summary":false,"null":"not applied"},"card4l:relative_rtc_accuracy":{"label":"Rel. RTC Accuracy","explain":"Relative accuracy of the Radiometric Terrain Correction","unit":"dB"},"card4l:absolute_rtc_accuracy":{"label":"Abs. RTC Accuracy","explain":"Absolute accuracy of the Radiometric Terrain Correction","unit":"dB"},"card4l:northern_geometric_accuracy":{"label":"Northern Geometric Accuracy","unit":"m"},"card4l:eastern_geometric_accuracy":{"label":"Eastern Geometric Accuracy","unit":"m"},"card4l:ellipsoidal_height":{"label":"Ellipsoidal Height","unit":"m"},"geoadmin:variant":{"label":"Product Variant","mapping":{"krel":"RGB color with relief","komb":"RGB color without relief","kgrel":"Grayscale with relief","kgrs":"Grayscale without relief"}},"href:servers":{"label":"Servers","ext":"web-map-links"},"pmtiles:layers":{"label":"Layers","ext":"web-map-links"},"wms:layers":{"label":"Layers","ext":"web-map-links"},"wms:styles":{"label":"Styles","ext":"web-map-links"},"wms:dimensions":{"label":"Dimensions","ext":"web-map-links"},"wms:transparent":{"label":"Transparency","ext":"web-map-links"},"wmts:layer":{"label":"Layers","ext":"web-map-links"},"wmts:dimensions":{"label":"Dimensions","ext":"web-map-links"}}} diff --git a/scripts/pull-static b/scripts/pull-static index 3b120727d..57b4f3207 100755 --- a/scripts/pull-static +++ b/scripts/pull-static @@ -2,7 +2,7 @@ set -e -VERSION="1.0.0-rc.1" +VERSION="1.5.0" #v1.5.0-beta.2 should work or no?? SRC="https://cdn.jsdelivr.net/npm/@radiantearth/stac-fields@$VERSION/fields-normalized.json" HERE=$(dirname "$0") DEST=$(dirname "$HERE")/pystac/static/fields-normalized.json diff --git a/tests/cassettes/test_catalog/TestCatalog.test_read_remote.yaml b/tests/cassettes/test_catalog/TestCatalog.test_read_remote.yaml index b3264fe08..b68472f73 100644 --- a/tests/cassettes/test_catalog/TestCatalog.test_read_remote.yaml +++ b/tests/cassettes/test_catalog/TestCatalog.test_read_remote.yaml @@ -37,11 +37,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:13:40 GMT + - Mon, 13 Jan 2025 19:20:27 GMT ETag: - '"e74ebcbc46d43c5b693ecb995381fbeba03583627e6d65b21ed7678a10d94729"' Expires: - - Thu, 28 Mar 2024 20:18:40 GMT + - Mon, 13 Jan 2025 19:25:27 GMT Source-Age: - '0' Strict-Transport-Security: @@ -57,15 +57,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 669a249888c8b796b67568a40351b67107abf4ac + - 06444a67338184cdd641505c05c81c3f9e163197 X-Frame-Options: - deny X-GitHub-Request-Id: - - 9958:4F71:159F47:18F49A:6605CF74 + - 8E65:303A88:1E1FE3:211328:6785677A X-Served-By: - - cache-ewr18140-EWR + - cache-bos4680-BOS X-Timer: - - S1711656821.852660,VS0,VE77 + - S1736796027.972910,VS0,VE178 X-XSS-Protection: - 1; mode=block status: @@ -127,11 +127,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:13:41 GMT + - Mon, 13 Jan 2025 19:20:27 GMT ETag: - '"ddd340bc27c120dd2e43868bcde0510a326a6223dac1b0c47c05100e20d1397e"' Expires: - - Thu, 28 Mar 2024 20:18:41 GMT + - Mon, 13 Jan 2025 19:25:27 GMT Source-Age: - '0' Strict-Transport-Security: @@ -147,15 +147,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b9cc71b224111055804742276796c4750255805a + - 717e77cef12e519c4e215c0c8014685b5868f464 X-Frame-Options: - deny X-GitHub-Request-Id: - - E1EC:3F2992:12CFCD:1627BF:6605CF74 + - 9D92:124F4B:1EA7DE:218904:6785677A X-Served-By: - - cache-ewr18135-EWR + - cache-bos4665-BOS X-Timer: - - S1711656821.007849,VS0,VE58 + - S1736796027.242884,VS0,VE111 X-XSS-Protection: - 1; mode=block status: @@ -227,11 +227,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:13:41 GMT + - Mon, 13 Jan 2025 19:20:27 GMT ETag: - '"80ec96bc0acf2e604a03f109bd730426aa82e442d44946231cbe82a531b944f7"' Expires: - - Thu, 28 Mar 2024 20:18:41 GMT + - Mon, 13 Jan 2025 19:25:27 GMT Source-Age: - '0' Strict-Transport-Security: @@ -247,15 +247,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 261b92dfe318f47c62ee43ea628da3c6d0014da4 + - c707358cf15f66572137cb3cacd78dd638e1800d X-Frame-Options: - deny X-GitHub-Request-Id: - - E1E4:23E677:151ADB:187383:6605CF6C + - CE9A:37926D:20A57B:239D70:67856775 X-Served-By: - - cache-ewr18125-EWR + - cache-bos4654-BOS X-Timer: - - S1711656821.148572,VS0,VE62 + - S1736796027.419217,VS0,VE97 X-XSS-Protection: - 1; mode=block status: @@ -327,11 +327,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:13:41 GMT + - Mon, 13 Jan 2025 19:20:27 GMT ETag: - '"726870312c74ead0b10c3125045c301e8600929684c49447d64c2db72dc779fc"' Expires: - - Thu, 28 Mar 2024 20:18:41 GMT + - Mon, 13 Jan 2025 19:25:27 GMT Source-Age: - '0' Strict-Transport-Security: @@ -347,15 +347,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a6b39be01d641e54e7646a6328310dc2a3987d93 + - e55f09f534c7371797506f73a5c3bf3ca8c8992b X-Frame-Options: - deny X-GitHub-Request-Id: - - 2538:339E19:153FF2:189850:6605CF74 + - C570:1AE224:1A8A52:1D6561:6785677A X-Served-By: - - cache-ewr18151-EWR + - cache-bos4663-BOS X-Timer: - - S1711656821.284045,VS0,VE73 + - S1736796028.588254,VS0,VE213 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat0].yaml b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat0].yaml index c31029117..798fa4312 100644 --- a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat0].yaml +++ b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat0].yaml @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:42 GMT + - Mon, 13 Jan 2025 19:20:28 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - c36df6f63c2c4e34ad90482fe0eb9531314de2f1 + - 61229ea3ff2639e149b9e210b3db25d368aa4008 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18126-EWR + - cache-bos4680-BOS X-Timer: - - S1711656822.012536,VS0,VE38 + - S1736796028.490521,VS0,VE55 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat1].yaml b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat1].yaml index 3c629f0f1..8709c7531 100644 --- a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat1].yaml +++ b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat1].yaml @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:42 GMT + - Mon, 13 Jan 2025 19:20:28 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 7285010b6b6c3f53d1fed1a7adcf65509ce81162 + - 83577d09c7a0e43b4494d1148ceed2600ab9eb97 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18138-EWR + - cache-bos4637-BOS X-Timer: - - S1711656822.204441,VS0,VE1 + - S1736796029.704238,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat3].yaml b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat3].yaml index 1cdc63acd..cbc0c197c 100644 --- a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat3].yaml +++ b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat3].yaml @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:42 GMT + - Mon, 13 Jan 2025 19:20:28 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0c5c242d593695df6af8b5605a70a58bfe8cf565 + - a56bdf2a5ae4b97f2fd92d29accc45e51b6701fd X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18176-EWR + - cache-bos4660-BOS X-Timer: - - S1711656822.328540,VS0,VE1 + - S1736796029.816297,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat4].yaml b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat4].yaml index b66f5fb87..f0b6d8ef1 100644 --- a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat4].yaml +++ b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat4].yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '21' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:42 GMT + - Mon, 13 Jan 2025 19:20:29 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -109,19 +109,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '2' X-Fastly-Request-ID: - - 7f8d9a32fdfb90ff68db64d83eb031dc120f472d + - 3c085574123ee164eb213f56722977e2b779ae68 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18132-EWR + - cache-bos4633-BOS X-Timer: - - S1711656823.904653,VS0,VE22 + - S1736796030.592718,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '21' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:43 GMT + - Mon, 13 Jan 2025 19:20:29 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -229,19 +229,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '1' X-Fastly-Request-ID: - - 1104db8d1d577d932a7d1c80e0e7a6593fab9359 + - 3ae5239057b02d30e306258212a19dd7d605cb48 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18140-EWR + - cache-bos4632-BOS X-Timer: - - S1711656823.005394,VS0,VE22 + - S1736796030.658941,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -315,7 +315,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '21' Cache-Control: - max-age=600 Connection: @@ -325,7 +325,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:43 GMT + - Mon, 13 Jan 2025 19:20:29 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -343,15 +343,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8785b224a10c7fd4d794d737443a9460a25400d0 + - 2dcc6e2a2ecdbd03d87f5f0aa0bf35d885793138 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18159-EWR + - cache-bos4651-BOS X-Timer: - - S1711656823.096604,VS0,VE15 + - S1736796030.723914,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat5].yaml b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat5].yaml index aee91ccdd..9c524d622 100644 --- a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat5].yaml +++ b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat5].yaml @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:43 GMT + - Mon, 13 Jan 2025 19:20:29 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6c60c1ea0fef8d71ee719cd3bb861359fb2f6295 + - 1f74c0256fd153c7448167afb6e77914dc33491e X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18144-EWR + - cache-bos4667-BOS X-Timer: - - S1711656823.213145,VS0,VE2 + - S1736796030.830372,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat6].yaml b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat6].yaml index a8e238b58..1beb281ab 100644 --- a/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat6].yaml +++ b/tests/cassettes/test_catalog/TestCatalog.test_validate_all[cat6].yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '22' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:43 GMT + - Mon, 13 Jan 2025 19:20:30 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b0c19b4713c637891169d1ae0133dcea4d01bde7 + - 4b228e415d08220e726e6af24801d32a6566f808 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18137-EWR + - cache-bos4663-BOS X-Timer: - - S1711656824.819677,VS0,VE2 + - S1736796031.558894,VS0,VE3 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -195,7 +195,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '22' Cache-Control: - max-age=600 Connection: @@ -205,7 +205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:43 GMT + - Mon, 13 Jan 2025 19:20:30 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +223,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 96101a8fc3e175d554ad1b45d981594a7497a3e9 + - 01b46e42311d9718986cb7c6b688ca0fbf5035e6 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18145-EWR + - cache-bos4628-BOS X-Timer: - - S1711656824.904724,VS0,VE2 + - S1736796031.638384,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -249,11 +249,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -278,15 +278,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -315,21 +315,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '22' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:43 GMT + - Mon, 13 Jan 2025 19:20:30 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -343,15 +343,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 856ebf23c84f891c5af54aa31826dfed8cbd3e3b + - aa538a1fdd97dae1770745f56648bfc11a3f0feb X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18134-EWR + - cache-bos4621-BOS X-Timer: - - S1711656824.995547,VS0,VE2 + - S1736796031.728203,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_catalog/test_validate_all_with_max_n.yaml b/tests/cassettes/test_catalog/test_validate_all_with_max_n.yaml index d6476cb6b..4281a6fbe 100644 --- a/tests/cassettes/test_catalog/test_validate_all_with_max_n.yaml +++ b/tests/cassettes/test_catalog/test_validate_all_with_max_n.yaml @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:44 GMT + - Mon, 13 Jan 2025 19:20:31 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f5d7907230165d1a19a0eb0fd76c8aa057b5bc48 + - 0492584c827eb0ae12e873484dca501698ca6bee X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18129-EWR + - cache-bos4643-BOS X-Timer: - - S1711656824.251501,VS0,VE1 + - S1736796031.016893,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_catalog/test_validate_all_with_recusive_off.yaml b/tests/cassettes/test_catalog/test_validate_all_with_recusive_off.yaml index 34846b859..57bf7e26f 100644 --- a/tests/cassettes/test_catalog/test_validate_all_with_recusive_off.yaml +++ b/tests/cassettes/test_catalog/test_validate_all_with_recusive_off.yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '3' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:44 GMT + - Mon, 13 Jan 2025 19:20:31 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3f552ac4c999073af69b06b3f1fcea7e3a1d05e1 + - 371ada847643e782537e11f15561e35353752ca6 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18142-EWR + - cache-bos4629-BOS X-Timer: - - S1711656824.440619,VS0,VE2 + - S1736796031.260402,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_item/ItemTest.test_null_geometry.yaml b/tests/cassettes/test_item/ItemTest.test_null_geometry.yaml index 6330854b9..ae585e85b 100644 --- a/tests/cassettes/test_item/ItemTest.test_null_geometry.yaml +++ b/tests/cassettes/test_item/ItemTest.test_null_geometry.yaml @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:44 GMT + - Mon, 13 Jan 2025 19:20:31 GMT ETag: - - '"65bd0237-147c"' + - '"66e1651c-147c"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 8e64e9bef7941c27cedbbd541f7027f138ad097a + - 52b696cd6e84242ef8da347475ba0f179c137e7b X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-ewr18155-EWR + - cache-bos4623-BOS X-Timer: - - S1711656825.872359,VS0,VE24 + - S1736796032.929188,VS0,VE30 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:44 GMT + - Mon, 13 Jan 2025 19:20:32 GMT ETag: - - '"65bd0237-21c"' + - '"66e1651c-21c"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 62e850f41683aa2226219f4d73c70efcd3098cc5 + - 88d8b8650dc1c841c5d9a379b09cd4ede8c9c4f6 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-ewr18150-EWR + - cache-bos4664-BOS X-Timer: - - S1711656825.972004,VS0,VE16 + - S1736796032.072262,VS0,VE36 expires: - - Thu, 28 Mar 2024 20:23:44 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -265,11 +263,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:45 GMT + - Mon, 13 Jan 2025 19:20:32 GMT ETag: - - '"65bd0237-a82"' + - '"66e1651c-a82"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - e8390224fccdb8a3ddfeeb994100f4c42f9b663d + - 5edf4c64404d005af36fef25a1b52f6e9d7cc61a X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-ewr18153-EWR + - cache-bos4660-BOS X-Timer: - - S1711656825.068365,VS0,VE26 + - S1736796032.192899,VS0,VE30 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -336,11 +334,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:45 GMT + - Mon, 13 Jan 2025 19:20:32 GMT ETag: - - '"65bd0237-2a2"' + - '"66e1651c-2a2"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - faf44d23ff219fc54bc8fdf45f4386133e2e4ac5 + - 5d977ed71f18b335fdfd1dfb80f423ff917b4750 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-ewr18144-EWR + - cache-bos4686-BOS X-Timer: - - S1711656825.171940,VS0,VE14 + - S1736796033.660747,VS0,VE21 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -402,11 +400,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:45 GMT + - Mon, 13 Jan 2025 19:20:32 GMT ETag: - - '"65bd0237-135"' + - '"66e1651c-135"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -418,15 +416,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 68f27476ea3644279b56cd81f9602946ded88a4a + - 17c10ac59b2c60b6b158cd52c8997a45a3fe1df3 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-ewr18140-EWR + - cache-bos4668-BOS X-Timer: - - S1711656825.268153,VS0,VE19 + - S1736796033.778281,VS0,VE22 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -476,11 +474,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:45 GMT + - Mon, 13 Jan 2025 19:20:32 GMT ETag: - - '"65bd0237-40e"' + - '"66e1651c-40e"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -492,15 +490,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 1470ec6cbd15c55de1bc3e7abed26bafccdeea03 + - d3dfc429fdad96e3469b5fa510aa10e029a18df6 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-ewr18131-EWR + - cache-bos4638-BOS X-Timer: - - S1711656825.368128,VS0,VE16 + - S1736796033.882336,VS0,VE18 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Mon, 13 Jan 2025 19:30:32 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: diff --git a/tests/cassettes/test_item/test_non_hierarchical_relative_link.yaml b/tests/cassettes/test_item/test_non_hierarchical_relative_link.yaml index 9e1535f52..390bfc925 100644 --- a/tests/cassettes/test_item/test_non_hierarchical_relative_link.yaml +++ b/tests/cassettes/test_item/test_non_hierarchical_relative_link.yaml @@ -94,11 +94,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:13:45 GMT + - Mon, 13 Jan 2025 19:20:33 GMT ETag: - '"7b5b9590049813a43b1a9c064eb61dd6b9c25e8e649fff820d3ac83580b7e559"' Expires: - - Thu, 28 Mar 2024 20:18:45 GMT + - Mon, 13 Jan 2025 19:25:33 GMT Source-Age: - '0' Strict-Transport-Security: @@ -114,15 +114,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4f88b982263270aad8a9e83c11a0cddccc70190f + - be20bee62135fc9e4e8ffdd409d5453c94a46cc6 X-Frame-Options: - deny X-GitHub-Request-Id: - - D9E0:95F9:12ED56:163AC9:6605CF79 + - 6414:281A48:2547652:2957E1E:67856780 X-Served-By: - - cache-ewr18181-EWR + - cache-bos4647-BOS X-Timer: - - S1711656826.528385,VS0,VE106 + - S1736796033.022685,VS0,VE104 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/cassettes/test_stac_io/test_retry_stac_io.yaml b/tests/cassettes/test_stac_io/test_retry_stac_io.yaml index e0d0dbf82..95229fec1 100644 --- a/tests/cassettes/test_stac_io/test_retry_stac_io.yaml +++ b/tests/cassettes/test_stac_io/test_retry_stac_io.yaml @@ -8,10 +8,10 @@ interactions: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing - Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.1/collections","https://api.stacspec.org/v1.0.0-rc.1/core","https://api.stacspec.org/v1.0.0-rc.1/item-search","https://api.stacspec.org/v1.0.0-rc.1/item-search#fields","https://api.stacspec.org/v1.0.0-rc.1/item-search#filter","https://api.stacspec.org/v1.0.0-rc.1/item-search#query","https://api.stacspec.org/v1.0.0-rc.1/item-search#sort","https://api.stacspec.org/v1.0.0-rc.1/ogcapi-features"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/WFS3 + Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/collections"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC - search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"child","type":"application/json","title":"Daymet + search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS @@ -32,7 +32,7 @@ interactions: IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m - Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"USGS + Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP @@ -134,28 +134,34 @@ interactions: 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI - service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}]}' + service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' + Access-Control-Allow-Headers: + - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization + Access-Control-Allow-Methods: + - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' + Access-Control-Max-Age: + - '1728000' Connection: - keep-alive Content-Length: - - '24148' + - '24477' Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:13:46 GMT + - Mon, 13 Jan 2025 19:20:33 GMT Strict-Transport-Security: - - max-age=15724800; includeSubDomains + - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - - 20240328T201346Z-adct56whnd35her1qc3a7f2qvc0000000fn000000000dykq + - 20250113T192033Z-r19cb4c695b2mxhzhC1BOSrz7s0000000e9g000000002dbe status: code: 200 message: OK diff --git a/tests/cassettes/test_stac_io/test_retry_stac_io_404.yaml b/tests/cassettes/test_stac_io/test_retry_stac_io_404.yaml index ae5da4c8e..df93df7be 100644 --- a/tests/cassettes/test_stac_io/test_retry_stac_io_404.yaml +++ b/tests/cassettes/test_stac_io/test_retry_stac_io_404.yaml @@ -11,8 +11,14 @@ interactions: headers: Access-Control-Allow-Credentials: - 'true' + Access-Control-Allow-Headers: + - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization + Access-Control-Allow-Methods: + - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' + Access-Control-Max-Age: + - '1728000' Connection: - keep-alive Content-Length: @@ -20,13 +26,13 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:13:47 GMT + - Mon, 13 Jan 2025 19:20:34 GMT Strict-Transport-Security: - - max-age=15724800; includeSubDomains + - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - - 20240328T201346Z-su2k0rg47t6n3375v97h7c9nun0000000a3g00000000334e + - 20250113T192033Z-r19cb4c695b2mxhzhC1BOSrz7s0000000e7g000000003n70 status: code: 404 message: Not Found diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog0].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog0].yaml index 9eddc273b..39ce21f2d 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog0].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog0].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '7' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:48 GMT + - Mon, 13 Jan 2025 19:20:35 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 06e47c6e1129d359fb9b0a16d5adf1ac327beb16 + - cec31276772f12e575fb643ac5be05e4df61b94c X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18122-EWR + - cache-bos4655-BOS X-Timer: - - S1711656828.323968,VS0,VE2 + - S1736796036.630869,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog1].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog1].yaml index d6953e747..d548c589b 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog1].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog1].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '7' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:48 GMT + - Mon, 13 Jan 2025 19:20:35 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -136,17 +136,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 5f100e921cd0615f85ac525e586d223e5befcbfb + - 48c2dcf9548e1b07ed6e0ea4d7ba82a6ec010405 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18144-EWR + - cache-bos4654-BOS X-Timer: - - S1711656829.523944,VS0,VE1 + - S1736796036.914695,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog3].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog3].yaml index 26eb1ffca..b3b1fdf79 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog3].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog3].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '8' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:48 GMT + - Mon, 13 Jan 2025 19:20:36 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -136,17 +136,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '7' + - '2' X-Fastly-Request-ID: - - ca0884911c7a0002c3c7cdca3c1c9cb811e1c444 + - 7d0a854d28b77f0cf9051b9c7b763c75fd4642c9 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18182-EWR + - cache-bos4629-BOS X-Timer: - - S1711656829.724792,VS0,VE1 + - S1736796036.138874,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog4].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog4].yaml index 4d67c6205..696d6c724 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog4].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog4].yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '29' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:49 GMT + - Mon, 13 Jan 2025 19:20:37 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e255e43d0c7637c940a9ca5652d21129ca8f6937 + - 987810fd3b25f51d2028f92c2665260e07e134ad X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18181-EWR + - cache-bos4669-BOS X-Timer: - - S1711656830.776365,VS0,VE1 + - S1736796038.622768,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '29' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:49 GMT + - Mon, 13 Jan 2025 19:20:37 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -233,15 +233,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c18884d13c1c56b853e8d07ea550617694e570f6 + - 27e269093e34595d0b2b877f8b451210e0fec4f7 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18153-EWR + - cache-bos4638-BOS X-Timer: - - S1711656830.864874,VS0,VE2 + - S1736796038.694839,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -315,7 +315,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '29' Cache-Control: - max-age=600 Connection: @@ -325,7 +325,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:49 GMT + - Mon, 13 Jan 2025 19:20:37 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -343,15 +343,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 14758f47065662b5b54e9d353c1355e9c4df3985 + - 6545df13e625835c8535f9bc4b3eddb48e58b321 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18129-EWR + - cache-bos4684-BOS X-Timer: - - S1711656830.939731,VS0,VE1 + - S1736796038.756195,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog5].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog5].yaml index 1cdfd991c..998b34b2f 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog5].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog5].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '9' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:50 GMT + - Mon, 13 Jan 2025 19:20:37 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 45e4dc253a209aa1bf5b23667512048a1155e14e + - db4620b19a0fedd0fa76beb0176986ccd7e257f0 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18171-EWR + - cache-bos4625-BOS X-Timer: - - S1711656830.096913,VS0,VE2 + - S1736796038.922863,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog6].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog6].yaml index b7cbb87f4..ff29e7191 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog6].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[ABSOLUTE_PUBLISHED-catalog6].yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '31' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:51 GMT + - Mon, 13 Jan 2025 19:20:39 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a0d2ab748b6cbe28c98ee97a582d174c98c44173 + - 33a10b140338e395c9b45ed4fc2bb65cb0b2df26 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18177-EWR + - cache-bos4671-BOS X-Timer: - - S1711656831.184297,VS0,VE2 + - S1736796039.303695,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -195,7 +195,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '31' Cache-Control: - max-age=600 Connection: @@ -205,7 +205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:51 GMT + - Mon, 13 Jan 2025 19:20:39 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +223,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8579c6ee8c656a16d223fe867591bb308342afe7 + - cb8d96bca6ff1b37c39cb05323582346285cc4e3 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18121-EWR + - cache-bos4646-BOS X-Timer: - - S1711656831.300181,VS0,VE2 + - S1736796039.374307,VS0,VE2 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -249,11 +249,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -278,15 +278,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -315,21 +315,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '31' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:51 GMT + - Mon, 13 Jan 2025 19:20:39 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -343,15 +343,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0474992a49f09ed275fec57c1ccbf2a9dcb7a950 + - 972e02b8bd2eb144dfe898753ed7734b0b8525a2 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18174-EWR + - cache-bos4650-BOS X-Timer: - - S1711656831.392675,VS0,VE2 + - S1736796039.472531,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog0].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog0].yaml index 5188e1165..2281ca0fa 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog0].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog0].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '11' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:51 GMT + - Mon, 13 Jan 2025 19:20:39 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -136,17 +136,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '9' + - '1' X-Fastly-Request-ID: - - b6c816a07c1646e040bfab3a71e51db5baa83d7c + - fc7b6942056e6c836e3f6df4534f46b4705122e5 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18182-EWR + - cache-bos4673-BOS X-Timer: - - S1711656832.568364,VS0,VE1 + - S1736796040.678298,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog1].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog1].yaml index a27c92f75..5daf829ce 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog1].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog1].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '11' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:51 GMT + - Mon, 13 Jan 2025 19:20:39 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -136,17 +136,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - e47eb396e92df7921e39767a99f0a36dac0c55dc + - dc2c9420ec7d4ac13bd3c75af15da1dc3b18b419 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18127-EWR + - cache-bos4655-BOS X-Timer: - - S1711656832.764460,VS0,VE2 + - S1736796040.908728,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog3].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog3].yaml index a59383ee4..a38c26017 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog3].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog3].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '12' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:51 GMT + - Mon, 13 Jan 2025 19:20:40 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5a6bac25b745392505fdc16d43dae944a08cfd66 + - 83625d4e80c9055d657bf1eb0ac9251859a1a323 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18137-EWR + - cache-bos4635-BOS X-Timer: - - S1711656832.964240,VS0,VE2 + - S1736796040.154421,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog4].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog4].yaml index 26f0812eb..027275834 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog4].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog4].yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '33' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:52 GMT + - Mon, 13 Jan 2025 19:20:41 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a6edd3f681d15a7ed1bd80040c027620e334960c + - 930cfc9fa851a5c7dc1ba986c5e4fa94f9ceb502 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18178-EWR + - cache-bos4624-BOS X-Timer: - - S1711656833.979931,VS0,VE2 + - S1736796042.502671,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '33' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:53 GMT + - Mon, 13 Jan 2025 19:20:41 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -233,15 +233,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fe6ca14c5f9edd0173dc9b129df385f459ac45fa + - cf047d838018f5c2811ed6463a0317e2c3ac0b0b X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18170-EWR + - cache-bos4649-BOS X-Timer: - - S1711656833.063869,VS0,VE1 + - S1736796042.577920,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -315,7 +315,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '33' Cache-Control: - max-age=600 Connection: @@ -325,7 +325,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:53 GMT + - Mon, 13 Jan 2025 19:20:41 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -343,15 +343,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 33a5a31f7a1803bda4a96b5fb122c2b50595dc61 + - c475db33aef649fec6504f9ae253a742e0396975 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18127-EWR + - cache-bos4680-BOS X-Timer: - - S1711656833.143645,VS0,VE2 + - S1736796042.656219,VS0,VE2 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog5].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog5].yaml index 327f8194a..32d8140ae 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog5].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog5].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '11' + - '14' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:53 GMT + - Mon, 13 Jan 2025 19:20:42 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c44607de4b4a069f7a542ee8ea4d3e34a4fc66a8 + - 5e17386cc5ea3a9411413579e42b2405e3343e06 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18133-EWR + - cache-bos4622-BOS X-Timer: - - S1711656833.291627,VS0,VE1 + - S1736796042.048552,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog6].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog6].yaml index 87ced9884..287232f74 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog6].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[RELATIVE_PUBLISHED-catalog6].yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '11' + - '35' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:54 GMT + - Mon, 13 Jan 2025 19:20:43 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1864d80de143929356020f9f5e85ce5705f10c60 + - 2b2028ff14c323903b193547663ca68fe2e51da5 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18176-EWR + - cache-bos4647-BOS X-Timer: - - S1711656834.389762,VS0,VE2 + - S1736796043.424625,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -195,7 +195,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '11' + - '35' Cache-Control: - max-age=600 Connection: @@ -205,7 +205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:54 GMT + - Mon, 13 Jan 2025 19:20:43 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +223,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ece617ada8db3fd74b78dec235e7c5cc150a4641 + - 56620ba07b6804ff94ebbf8af6291dad40c713a2 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18133-EWR + - cache-bos4678-BOS X-Timer: - - S1711656834.472493,VS0,VE2 + - S1736796043.498868,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -249,11 +249,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -278,15 +278,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -315,21 +315,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '35' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:54 GMT + - Mon, 13 Jan 2025 19:20:43 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -343,15 +343,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8342c503fd0538d34f92bd6d05671ffe5cf80b84 + - d4657cc729a40cc7ea1ca04fb117ab50151438c7 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18167-EWR + - cache-bos4624-BOS X-Timer: - - S1711656835.564382,VS0,VE1 + - S1736796044.589241,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog0].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog0].yaml index 4070d2dd5..860b75126 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog0].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog0].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '15' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:54 GMT + - Mon, 13 Jan 2025 19:20:43 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -136,17 +136,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 986d1320f43b109ce80b7592f30be709cab91f8d + - fa2df54a5716107fc76c14cfe78be566f68a8380 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18137-EWR + - cache-bos4680-BOS X-Timer: - - S1711656835.744436,VS0,VE1 + - S1736796044.792603,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog1].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog1].yaml index bf1ab5121..325a63f0d 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog1].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog1].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '15' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:54 GMT + - Mon, 13 Jan 2025 19:20:44 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - db196716521ae1fae4059862673273ab6814e9fb + - 963cb21523eff576f7712b21422a73b1a1ef6f22 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18163-EWR + - cache-bos4632-BOS X-Timer: - - S1711656835.943405,VS0,VE1 + - S1736796044.016944,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog3].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog3].yaml index 12824829b..ebd74a2ea 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog3].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog3].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '16' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:55 GMT + - Mon, 13 Jan 2025 19:20:44 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a995c41f77aa5f6185127c6cba137068c931644b + - 5fc0bd244df910c337c40fa89ba9c9a2c0f84929 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18143-EWR + - cache-bos4624-BOS X-Timer: - - S1711656835.143798,VS0,VE2 + - S1736796044.223147,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog4].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog4].yaml index 0a205ada0..5c933dfb4 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog4].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog4].yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '37' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:56 GMT + - Mon, 13 Jan 2025 19:20:45 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 46a76b3c84eee399c8e18161e08760073c845639 + - e0bc0309f951a8ba435160351b79c28bf5c742ec X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18165-EWR + - cache-bos4626-BOS X-Timer: - - S1711656836.364494,VS0,VE2 + - S1736796046.584124,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '37' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:56 GMT + - Mon, 13 Jan 2025 19:20:45 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -231,17 +231,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 1832f08c18bf9b618325d8dc43798996c88abfa4 + - dfbbcb987237fe11acbd751c6be8d1eb7c3628c3 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18145-EWR + - cache-bos4674-BOS X-Timer: - - S1711656836.452528,VS0,VE1 + - S1736796046.654826,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -315,7 +315,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '37' Cache-Control: - max-age=600 Connection: @@ -325,7 +325,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:56 GMT + - Mon, 13 Jan 2025 19:20:45 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -343,15 +343,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - abe084d57f6e6bd4cc2b97c4773dc6efb96fc865 + - d2620f1887aeddd7081ba700d7d86757f86acddd X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18155-EWR + - cache-bos4634-BOS X-Timer: - - S1711656837.528293,VS0,VE1 + - S1736796046.729356,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog5].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog5].yaml index 1a6b59889..5fc6fc0d0 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog5].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog5].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '17' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:56 GMT + - Mon, 13 Jan 2025 19:20:45 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f0ef61fabc4ab56faa8db32389f62c31a0ad0566 + - fc57fcde5cb71f6571111ce5a4308ae90ecaece3 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18131-EWR + - cache-bos4684-BOS X-Timer: - - S1711656837.704379,VS0,VE2 + - S1736796046.886101,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog6].yaml b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog6].yaml index beea20ced..67cbea06c 100644 --- a/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog6].yaml +++ b/tests/cassettes/test_writing/TestSTACWriting.test_testcases[SELF_CONTAINED-catalog6].yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '39' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:57 GMT + - Mon, 13 Jan 2025 19:20:47 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2733531766baafdba37d0a35fe88df8441e7c9d5 + - 3ab7188a9f4e800b45c1acb1b20d544565cffdd4 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18126-EWR + - cache-bos4683-BOS X-Timer: - - S1711656838.787728,VS0,VE1 + - S1736796047.256447,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -195,7 +195,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '39' Cache-Control: - max-age=600 Connection: @@ -205,7 +205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:57 GMT + - Mon, 13 Jan 2025 19:20:47 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +223,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - 937bb11d9dea1a236ff33c3fbbf00f9c01715e2c + - dfefb5516195a784ee1a625e25ae1aa2915cd54b X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18145-EWR + - cache-bos4650-BOS X-Timer: - - S1711656838.872158,VS0,VE1 + - S1736796047.322357,VS0,VE0 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -249,11 +249,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -278,15 +278,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -315,21 +315,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '39' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:57 GMT + - Mon, 13 Jan 2025 19:20:47 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -343,15 +343,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5b2b595b0b8fea73b829dffb7525064db62a9a52 + - a2f705095f8d611ea3b4360f05f2c52d13840824 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18139-EWR + - cache-bos4637-BOS X-Timer: - - S1711656838.963758,VS0,VE1 + - S1736796047.412712,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/data-files/catalogs/planet-example-v1.0.0-beta.2/hurricane-harvey/hurricane-harvey-0831/20170831_172754_101c/20170831_172754_101c.json b/tests/data-files/catalogs/planet-example-v1.0.0-beta.2/hurricane-harvey/hurricane-harvey-0831/20170831_172754_101c/20170831_172754_101c.json index a4c58ab49..ca5f0037f 100644 --- a/tests/data-files/catalogs/planet-example-v1.0.0-beta.2/hurricane-harvey/hurricane-harvey-0831/20170831_172754_101c/20170831_172754_101c.json +++ b/tests/data-files/catalogs/planet-example-v1.0.0-beta.2/hurricane-harvey/hurricane-harvey-0831/20170831_172754_101c/20170831_172754_101c.json @@ -16,7 +16,7 @@ "view:sun_azimuth": 145.4, "view:sun_elevation": 65.1, "view:off_nadir": 0.2, - "proj:epsg": 32615, + "proj:code": "EPSG:32615", "pl:anomalous_pixels": 0.01, "pl:columns": 8307, "pl:ground_control": true, @@ -143,7 +143,7 @@ "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json", "https://stac-extensions.github.io/view/v1.0.0/schema.json", - "https://stac-extensions.github.io/projection/v1.0.0/schema.json" + "https://stac-extensions.github.io/projection/v2.0.0/schema.json" ], "collection": "planet-disaster-data" } \ No newline at end of file diff --git a/tests/data-files/catalogs/planet-example-v1.0.0-beta.2/hurricane-harvey/hurricane-harvey-0831/Houston-East-20170831-103f-100d-0f4f-RGB/Houston-East-20170831-103f-100d-0f4f-RGB.json b/tests/data-files/catalogs/planet-example-v1.0.0-beta.2/hurricane-harvey/hurricane-harvey-0831/Houston-East-20170831-103f-100d-0f4f-RGB/Houston-East-20170831-103f-100d-0f4f-RGB.json index 8579544c7..6daa72c67 100644 --- a/tests/data-files/catalogs/planet-example-v1.0.0-beta.2/hurricane-harvey/hurricane-harvey-0831/Houston-East-20170831-103f-100d-0f4f-RGB/Houston-East-20170831-103f-100d-0f4f-RGB.json +++ b/tests/data-files/catalogs/planet-example-v1.0.0-beta.2/hurricane-harvey/hurricane-harvey-0831/Houston-East-20170831-103f-100d-0f4f-RGB/Houston-East-20170831-103f-100d-0f4f-RGB.json @@ -13,7 +13,7 @@ "view:sun_azimuth": 145.5, "view:sun_elevation": 64.9, "view:off_nadir": 0.2, - "proj:epsg": 32615, + "proj:code": "EPSG:32615", "pl:ground_control": true }, "geometry": { @@ -86,7 +86,7 @@ "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json", "https://stac-extensions.github.io/view/v1.0.0/schema.json", - "https://stac-extensions.github.io/projection/v1.0.0/schema.json" + "https://stac-extensions.github.io/projection/v2.0.0/schema.json" ], "collection": "planet-disaster-data" } \ No newline at end of file diff --git a/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/069/CBERS_4_MUX_20190510_027_069_L2/CBERS_4_MUX_20190510_027_069_L2.json b/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/069/CBERS_4_MUX_20190510_027_069_L2/CBERS_4_MUX_20190510_027_069_L2.json index 267b41344..6729a57d7 100644 --- a/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/069/CBERS_4_MUX_20190510_027_069_L2/CBERS_4_MUX_20190510_027_069_L2.json +++ b/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/069/CBERS_4_MUX_20190510_027_069_L2/CBERS_4_MUX_20190510_027_069_L2.json @@ -30,7 +30,7 @@ "cbers:data_type": "L2", "cbers:path": 27, "cbers:row": 69, - "proj:epsg": 32687, + "proj:code": "EPSG:32687", "view:off_nadir": 0.00239349, "view:sun_azimuth": 110.943, "view:sun_elevation": 66.3097 @@ -139,7 +139,7 @@ ], "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json", - "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v2.0.0/schema.json", "https://stac-extensions.github.io/view/v1.0.0/schema.json" ], "collection": "CBERS4MUX" diff --git a/tests/data-files/projection/collection-with-summaries.json b/tests/data-files/projection/collection-with-summaries.json index 5510c2a01..4c9764fad 100644 --- a/tests/data-files/projection/collection-with-summaries.json +++ b/tests/data-files/projection/collection-with-summaries.json @@ -21,11 +21,11 @@ } ], "stac_extensions": [ - "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + "https://stac-extensions.github.io/projection/v2.0.0/schema.json" ], "summaries": { - "proj:epsg": [ - 32614 + "proj:code": [ + "EPSG:32614" ] }, "extent": { diff --git a/tests/data-files/projection/example-landsat8.json b/tests/data-files/projection/example-landsat8.json index b15bd7013..e40b27053 100644 --- a/tests/data-files/projection/example-landsat8.json +++ b/tests/data-files/projection/example-landsat8.json @@ -4,7 +4,7 @@ "id": "LC81530252014153LGN00", "properties": { "datetime": "2018-10-01T01:08:32.033000Z", - "proj:epsg": 32614, + "proj:code": "EPSG:32614", "proj:wkt2": "PROJCS[\"WGS 84 / UTM zone 14N\",GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],AUTHORITY[\"EPSG\",\"32614\"],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH]]", "proj:projjson": { "$schema": "https://proj.org/schemas/v0.2/projjson.schema.json", @@ -240,7 +240,7 @@ "full_width_half_max": 0.18 } ], - "proj:epsg": 9999, + "proj:code": "EPSG:9999", "proj:wkt2": "PROJCS[\"WGS 84 / UTM zone 14N\",GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],AUTHORITY[\"EPSG\",\"32614\"],AXIS[\"Easting\",EAST],AXIS[\"Northing\",TEST_TEXT]]", "proj:projjson": { "$schema": "https://proj.org/schemas/v0.2/projjson.schema.json", @@ -427,7 +427,7 @@ ], "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json", - "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + "https://stac-extensions.github.io/projection/v2.0.0/schema.json" ], "collection": "landsat-8-l1" } \ No newline at end of file diff --git a/tests/data-files/projection/example-with-version-1.1.json b/tests/data-files/projection/example-with-version-1.1.json new file mode 100644 index 000000000..f03c671a7 --- /dev/null +++ b/tests/data-files/projection/example-with-version-1.1.json @@ -0,0 +1,433 @@ +{ + "type": "Feature", + "stac_version": "1.0.0", + "id": "LC81530252014153LGN00", + "properties": { + "datetime": "2018-10-01T01:08:32.033000Z", + "proj:epsg": 32614, + "proj:wkt2": "PROJCS[\"WGS 84 / UTM zone 14N\",GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],AUTHORITY[\"EPSG\",\"32614\"],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH]]", + "proj:projjson": { + "$schema": "https://proj.org/schemas/v0.2/projjson.schema.json", + "type": "ProjectedCRS", + "name": "WGS 84 / UTM zone 14N", + "base_crs": { + "name": "WGS 84", + "datum": { + "type": "GeodeticReferenceFrame", + "name": "World Geodetic System 1984", + "ellipsoid": { + "name": "WGS 84", + "semi_major_axis": 6378137, + "inverse_flattening": 298.257223563 + } + }, + "coordinate_system": { + "subtype": "ellipsoidal", + "axis": [ + { + "name": "Geodetic latitude", + "abbreviation": "Lat", + "direction": "north", + "unit": "degree" + }, + { + "name": "Geodetic longitude", + "abbreviation": "Lon", + "direction": "east", + "unit": "degree" + } + ] + }, + "id": { + "authority": "EPSG", + "code": 4326 + } + }, + "conversion": { + "name": "UTM zone 14N", + "method": { + "name": "Transverse Mercator", + "id": { + "authority": "EPSG", + "code": 9807 + } + }, + "parameters": [ + { + "name": "Latitude of natural origin", + "value": 0, + "unit": "degree", + "id": { + "authority": "EPSG", + "code": 8801 + } + }, + { + "name": "Longitude of natural origin", + "value": -99, + "unit": "degree", + "id": { + "authority": "EPSG", + "code": 8802 + } + }, + { + "name": "Scale factor at natural origin", + "value": 0.9996, + "unit": "unity", + "id": { + "authority": "EPSG", + "code": 8805 + } + }, + { + "name": "False easting", + "value": 500000, + "unit": "metre", + "id": { + "authority": "EPSG", + "code": 8806 + } + }, + { + "name": "False northing", + "value": 0, + "unit": "metre", + "id": { + "authority": "EPSG", + "code": 8807 + } + } + ] + }, + "coordinate_system": { + "subtype": "Cartesian", + "axis": [ + { + "name": "Easting", + "abbreviation": "E", + "direction": "east", + "unit": "metre" + }, + { + "name": "Northing", + "abbreviation": "N", + "direction": "north", + "unit": "metre" + } + ] + }, + "area": "World - N hemisphere - 102\u00b0W to 96\u00b0W - by country", + "bbox": { + "south_latitude": 0, + "west_longitude": -102, + "north_latitude": 84, + "east_longitude": -96 + }, + "id": { + "authority": "EPSG", + "code": 32614 + } + }, + "proj:geometry": { + "coordinates": [ + [ + [ + 169200.0, + 3712800.0 + ], + [ + 403200.0, + 3712800.0 + ], + [ + 403200.0, + 3951000.0 + ], + [ + 169200.0, + 3951000.0 + ], + [ + 169200.0, + 3712800.0 + ] + ] + ], + "type": "Polygon" + }, + "proj:bbox": [ + 169200.0, + 3712800.0, + 403200.0, + 3951000.0 + ], + "proj:centroid": { + "lat": 34.595302781575604, + "lon": -101.34448382627504 + }, + "proj:shape": [ + 8391, + 8311 + ], + "proj:transform": [ + 30.0, + 0.0, + 224985.0, + 0.0, + -30.0, + 6790215.0, + 0.0, + 0.0, + 1.0 + ] + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 152.52758, + 60.63437 + ], + [ + 149.1755, + 61.19016 + ], + [ + 148.13933, + 59.51584 + ], + [ + 151.33786, + 58.97792 + ], + [ + 152.52758, + 60.63437 + ] + ] + ] + }, + "links": [ + { + "rel": "collection", + "href": "https://example.com/landsat/collection.json" + } + ], + "assets": { + "B1": { + "href": "https://landsat-pds.s3.amazonaws.com/c1/L8/107/018/LC08_L1TP_107018_20181001_20181001_01_RT/LC08_L1TP_107018_20181001_20181001_01_RT_B1.TIF", + "type": "image/tiff; application=geotiff", + "title": "Band 1 (coastal)", + "eo:bands": [ + { + "name": "B1", + "common_name": "coastal", + "center_wavelength": 0.44, + "full_width_half_max": 0.02 + } + ] + }, + "B8": { + "href": "https://landsat-pds.s3.amazonaws.com/c1/L8/107/018/LC08_L1TP_107018_20181001_20181001_01_RT/LC08_L1TP_107018_20181001_20181001_01_RT_B8.TIF", + "type": "image/tiff; application=geotiff", + "title": "Band 8 (panchromatic)", + "eo:bands": [ + { + "name": "B8", + "center_wavelength": 0.59, + "full_width_half_max": 0.18 + } + ], + "proj:epsg": 9999, + "proj:wkt2": "PROJCS[\"WGS 84 / UTM zone 14N\",GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],AUTHORITY[\"EPSG\",\"32614\"],AXIS[\"Easting\",EAST],AXIS[\"Northing\",TEST_TEXT]]", + "proj:projjson": { + "$schema": "https://proj.org/schemas/v0.2/projjson.schema.json", + "type": "ProjectedCRS", + "name": "WGS 84 / UTM zone 14N", + "base_crs": { + "name": "WGS 84", + "datum": { + "type": "GeodeticReferenceFrame", + "name": "World Geodetic System 1984", + "ellipsoid": { + "name": "WGS 84", + "semi_major_axis": 6378137, + "inverse_flattening": 298.257223563 + } + }, + "coordinate_system": { + "subtype": "ellipsoidal", + "axis": [ + { + "name": "Geodetic latitude", + "abbreviation": "Lat", + "direction": "north", + "unit": "degree" + }, + { + "name": "Geodetic longitude", + "abbreviation": "Lon", + "direction": "east", + "unit": "degree" + } + ] + }, + "id": { + "authority": "EPSG", + "code": 4326 + } + }, + "conversion": { + "name": "UTM zone 14N", + "method": { + "name": "Transverse Mercator", + "id": { + "authority": "EPSG", + "code": 9807 + } + }, + "parameters": [ + { + "name": "Latitude of natural origin", + "value": 0, + "unit": "degree", + "id": { + "authority": "EPSG", + "code": 8801 + } + }, + { + "name": "Longitude of natural origin", + "value": -99, + "unit": "degree", + "id": { + "authority": "EPSG", + "code": 8802 + } + }, + { + "name": "Scale factor at natural origin", + "value": 0.9996, + "unit": "unity", + "id": { + "authority": "EPSG", + "code": 8805 + } + }, + { + "name": "False easting", + "value": 500000, + "unit": "metre", + "id": { + "authority": "EPSG", + "code": 8806 + } + }, + { + "name": "False northing", + "value": 0, + "unit": "metre", + "id": { + "authority": "EPSG", + "code": 8807 + } + } + ] + }, + "coordinate_system": { + "subtype": "Cartesian", + "axis": [ + { + "name": "Easting", + "abbreviation": "E", + "direction": "east", + "unit": "metre" + }, + { + "name": "Northing", + "abbreviation": "N", + "direction": "north", + "unit": "metre" + } + ] + }, + "area": "World - N hemisphere - 102\u00b0W to 96\u00b0W - by country", + "bbox": { + "south_latitude": 0, + "west_longitude": -102, + "north_latitude": 84, + "east_longitude": -96 + }, + "id": { + "authority": "EPSG", + "code": 9999 + } + }, + "proj:geometry": { + "coordinates": [ + [ + [ + 0.0, + 0.0 + ], + [ + 1.0, + 0.0 + ], + [ + 1.0, + 1.0 + ], + [ + 1.0, + 0.0 + ], + [ + 0.0, + 0.0 + ] + ] + ], + "type": "Polygon" + }, + "proj:bbox": [ + 1.0, + 2.0, + 3.0, + 4.0 + ], + "proj:centroid": { + "lat": 0.5, + "lon": 0.3 + }, + "proj:shape": [ + 16781, + 16621 + ], + "proj:transform": [ + 15.0, + 0.0, + 224992.5, + 0.0, + -15.0, + 6790207.5, + 0.0, + 0.0, + 1.0 + ] + } + }, + "bbox": [ + 148.13933, + 59.51584, + 152.52758, + 60.63437 + ], + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ], + "collection": "landsat-8-l1" + } \ No newline at end of file diff --git a/tests/data-files/projection/optional-epsg.json b/tests/data-files/projection/optional-epsg.json index 37c5dd0f6..1f2bd8226 100644 --- a/tests/data-files/projection/optional-epsg.json +++ b/tests/data-files/projection/optional-epsg.json @@ -132,7 +132,7 @@ "description": "Pixel opacity (0: fully transparent; 255: fully opaque)" } ], - "proj:epsg": 32618, + "proj:code": "EPSG:32618", "proj:bbox": [ 363546.0, 2755638.0, @@ -170,7 +170,7 @@ "https://stac-extensions.github.io/eo/v1.1.0/schema.json", "https://stac-extensions.github.io/view/v1.0.0/schema.json", "https://stac-extensions.github.io/raster/v1.1.0/schema.json", - "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + "https://stac-extensions.github.io/projection/v2.0.0/schema.json" ], "collection": "psscene-vis-clip: PSScene" } \ No newline at end of file diff --git a/tests/data-files/summaries/fields_no_bands.json b/tests/data-files/summaries/fields_no_bands.json index 96ec883ae..27bd9550d 100644 --- a/tests/data-files/summaries/fields_no_bands.json +++ b/tests/data-files/summaries/fields_no_bands.json @@ -361,9 +361,8 @@ "summary": false }, - "proj:epsg": { - "label": "EPSG Code", - "format": "EPSG", + "proj:code": { + "label": "Proj Code", "summary": "v" }, "proj:wkt2": { diff --git a/tests/extensions/cassettes/test_classification/test_apply_bitfields.yaml b/tests/extensions/cassettes/test_classification/test_apply_bitfields.yaml index 66fdc000f..2c2345f2e 100644 --- a/tests/extensions/cassettes/test_classification/test_apply_bitfields.yaml +++ b/tests/extensions/cassettes/test_classification/test_apply_bitfields.yaml @@ -7,7 +7,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/classification/v2.0.0/schema.json response: @@ -116,7 +116,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 01 Jul 2024 22:19:05 GMT + - Mon, 13 Jan 2025 19:20:08 GMT ETag: - '"66487a48-199a"' Last-Modified: @@ -130,19 +130,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 1ece189559fae48ccd92693626d4a5fd01e01597 + - a83990d0b0cca560e95255b04a4f746091dfad7a X-GitHub-Request-Id: - - 10BE:2C4D72:327703C:3BB1110:6683282D + - 5E64:22F2A5:46EEBBC:4FC710D:67856766 X-Served-By: - - cache-den8244-DEN + - cache-bos4668-BOS X-Timer: - - S1719872346.927209,VS0,VE64 + - S1736796008.972267,VS0,VE29 expires: - - Mon, 01 Jul 2024 22:15:34 GMT + - Mon, 13 Jan 2025 19:30:07 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_classification/test_apply_classes.yaml b/tests/extensions/cassettes/test_classification/test_apply_classes.yaml index a4ef66e60..904a94740 100644 --- a/tests/extensions/cassettes/test_classification/test_apply_classes.yaml +++ b/tests/extensions/cassettes/test_classification/test_apply_classes.yaml @@ -7,7 +7,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/classification/v2.0.0/schema.json response: @@ -116,7 +116,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 17 Dec 2024 23:25:05 GMT + - Mon, 13 Jan 2025 19:20:08 GMT ETag: - '"66487a48-199a"' Last-Modified: @@ -130,19 +130,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '1' X-Fastly-Request-ID: - - eaacd335ebd5f2b35eecf0fbe0ad4f9d82ef2870 + - 9fb73775ac16de229f27bb256b636e1609d0d7b5 X-GitHub-Request-Id: - - CB53:15BE6F:C16B48:D70A6A:67620851 + - 5E64:22F2A5:46EEBBC:4FC710D:67856766 X-Served-By: - - cache-den-kden1300056-DEN + - cache-bos4675-BOS X-Timer: - - S1734477906.551532,VS0,VE74 + - S1736796008.082496,VS0,VE3 expires: - - Tue, 17 Dec 2024 23:35:05 GMT + - Mon, 13 Jan 2025 19:30:07 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_classification/test_validate_classification.yaml b/tests/extensions/cassettes/test_classification/test_validate_classification.yaml index 652b93a90..2c1421bf2 100644 --- a/tests/extensions/cassettes/test_classification/test_validate_classification.yaml +++ b/tests/extensions/cassettes/test_classification/test_validate_classification.yaml @@ -7,7 +7,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/raster/v1.1.0/schema.json response: @@ -114,11 +114,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 01 Jul 2024 22:19:06 GMT + - Mon, 13 Jan 2025 19:20:08 GMT ETag: - - '"60e44dd0-18ae"' + - '"66df5c80-18ae"' Last-Modified: - - Tue, 06 Jul 2021 12:34:24 GMT + - Mon, 09 Sep 2024 20:37:20 GMT Server: - GitHub.com Strict-Transport-Security: @@ -128,19 +128,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 2ea418a39c3b4e7568fcbebdf6cfee253588a8b7 + - 7e453f5401ff125aeb4aa8350b017ced43d272fa X-GitHub-Request-Id: - - C9F9:192CCB:34F0451:3E2A920:6683282D + - 18D3:3C98C4:45D3413:4EABD7C:67856768 X-Served-By: - - cache-den8244-DEN + - cache-bos4671-BOS X-Timer: - - S1719872346.070418,VS0,VE71 + - S1736796008.169038,VS0,VE22 expires: - - Mon, 01 Jul 2024 22:15:34 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -156,7 +156,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -244,11 +244,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 01 Jul 2024 22:19:06 GMT + - Mon, 13 Jan 2025 19:20:08 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -258,19 +258,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 0b0c2ec0235f8b6229ddcd82d66a0b878b89f6e3 + - 478dcb9fbe4a85b88bca75000329e166af2bca6f X-GitHub-Request-Id: - - 2E63:167D:2B00C0B:32E0C8E:6683282D + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-den8256-DEN + - cache-bos4654-BOS X-Timer: - - S1719872346.180489,VS0,VE60 + - S1736796008.262862,VS0,VE46 expires: - - Mon, 01 Jul 2024 22:15:34 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -286,7 +286,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -354,7 +354,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 01 Jul 2024 22:19:06 GMT + - Mon, 13 Jan 2025 19:20:08 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -368,19 +368,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 24d137e785eef4c1d9637b342c6cc052e9e3d0bd + - d9d4db9c854509d96b1dfde022334cd6be239e20 X-GitHub-Request-Id: - - E770:16E8:CA8738:EBC6BE:6683282D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-den8234-DEN + - cache-bos4629-BOS X-Timer: - - S1719872346.267408,VS0,VE62 + - S1736796008.380380,VS0,VE35 expires: - - Mon, 01 Jul 2024 22:15:34 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -396,13 +396,13 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -427,15 +427,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -470,15 +470,15 @@ interactions: Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 01 Jul 2024 22:19:06 GMT + - Mon, 13 Jan 2025 19:20:08 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -488,19 +488,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - '0' X-Fastly-Request-ID: - - c4a296b1ff8172dbd8751495d13fb19515966897 + - 2831fcd74e3fbb769cb2101bfdea5153db9eeb61 X-GitHub-Request-Id: - - 101E:2C4D72:32770B6:3BB119A:6683282E + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-den8253-DEN + - cache-bos4677-BOS X-Timer: - - S1719872346.366036,VS0,VE65 + - S1736796009.503292,VS0,VE48 expires: - - Mon, 01 Jul 2024 22:15:34 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -516,7 +516,7 @@ interactions: Host: - landsat.usgs.gov User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://landsat.usgs.gov/stac/landsat-extension/v1.1.1/schema.json response: @@ -582,7 +582,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 01 Jul 2024 22:19:06 GMT + - Mon, 13 Jan 2025 19:20:08 GMT ETag: - '"f5d-5c78e5c04950e"' Last-Modified: @@ -590,8 +590,8 @@ interactions: Server: - Apache Set-Cookie: - - fwb=429bb9b17ca48ed3eeddde075a2b8366;max-age=300;Path=/;Secure;HttpOnly - - cookiesession1=678A3E63ECA46BDACA4A1E617FA72C2A;Expires=Tue, 01 Jul 2025 22:19:06 + - fwb=429bb9b17ca48ed3eeddde0768678567;max-age=300;Path=/;Secure;HttpOnly + - cookiesession1=678A3E6375B34C8AF116837E2CB5BAB7;Expires=Tue, 13 Jan 2026 19:20:08 GMT;Path=/;HttpOnly Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload @@ -610,7 +610,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/scientific/v1.0.0/schema.json response: @@ -706,7 +706,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 01 Jul 2024 22:19:06 GMT + - Mon, 13 Jan 2025 19:20:08 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -720,19 +720,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 209548a91e4dfb2e8066fd34c48367545137ab86 + - 5183c86d0349aa5b4c55248ea1d4292c0ddd0e22 X-GitHub-Request-Id: - - 2F82:161906:348FC3F:3DC9F1E:6683282D + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-den8221-DEN + - cache-bos4657-BOS X-Timer: - - S1719872347.618275,VS0,VE57 + - S1736796009.902876,VS0,VE50 expires: - - Mon, 01 Jul 2024 22:15:35 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -748,7 +748,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/classification/v2.0.0/schema.json response: @@ -857,7 +857,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 01 Jul 2024 22:19:06 GMT + - Mon, 13 Jan 2025 19:20:09 GMT ETag: - '"66487a48-199a"' Last-Modified: @@ -875,15 +875,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 67b8727546644f385c7db6b26afaf5f8badae4a5 + - 79f43c94531cdb44b7e22bb53ec77a70f6e5362d X-GitHub-Request-Id: - - 10BE:2C4D72:327703C:3BB1110:6683282D + - 5E64:22F2A5:46EEBBC:4FC710D:67856766 X-Served-By: - - cache-den8224-DEN + - cache-bos4621-BOS X-Timer: - - S1719872347.701193,VS0,VE1 + - S1736796009.018469,VS0,VE2 expires: - - Mon, 01 Jul 2024 22:15:34 GMT + - Mon, 13 Jan 2025 19:30:07 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_datacube/test_set_dimensions.yaml b/tests/extensions/cassettes/test_datacube/test_set_dimensions.yaml index ab20aee70..0f03b85ef 100644 --- a/tests/extensions/cassettes/test_datacube/test_set_dimensions.yaml +++ b/tests/extensions/cassettes/test_datacube/test_set_dimensions.yaml @@ -215,7 +215,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:00 GMT + - Mon, 13 Jan 2025 19:20:10 GMT ETag: - '"64527b1d-36ad"' Last-Modified: @@ -231,17 +231,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 18db279033fff00bcda5617addca0ed015f9ac9a + - 4e508eafa06e0fe0884b256635ffee0fbffa9dc2 X-GitHub-Request-Id: - - 215A:25AAED:EB045F:12C2635:6605CF87 + - 9B0B:164558:3D73F0E:464B1C9:67856766 X-Served-By: - - cache-ewr18130-EWR + - cache-bos4625-BOS X-Timer: - - S1711656841.695652,VS0,VE2 + - S1736796011.520732,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:09 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_datacube/test_set_variables.yaml b/tests/extensions/cassettes/test_datacube/test_set_variables.yaml index 510ff66af..5158fdfe0 100644 --- a/tests/extensions/cassettes/test_datacube/test_set_variables.yaml +++ b/tests/extensions/cassettes/test_datacube/test_set_variables.yaml @@ -215,7 +215,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:00 GMT + - Mon, 13 Jan 2025 19:20:10 GMT ETag: - '"64527b1d-36ad"' Last-Modified: @@ -233,15 +233,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a0a361dd26d1268e67e1bfcbd9006473b6a40b46 + - f154244f5fa5d02e7cb20de82fc3243b55f82d79 X-GitHub-Request-Id: - - 215A:25AAED:EB045F:12C2635:6605CF87 + - 9B0B:164558:3D73F0E:464B1C9:67856766 X-Served-By: - - cache-ewr18127-EWR + - cache-bos4682-BOS X-Timer: - - S1711656840.371863,VS0,VE2 + - S1736796010.130955,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:09 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -271,7 +271,7 @@ interactions: CF-Cache-Status: - HIT CF-Ray: - - 86ba48b4d8127274-EWR + - 9017bdf80fe3d687-IAD Cache-Control: - max-age=1200 Connection: @@ -283,11 +283,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:00 GMT + - Mon, 13 Jan 2025 19:20:10 GMT Location: - https://proj.org/en/latest/schemas/v0.4/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=jfvpTIWi78.0nyGm.2MCHOLigPyQTFA1yWeMqzD3VAg-1736796010271-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -301,11 +304,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-0591da9d5c680b106 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -334,14 +339,16 @@ interactions: body: string: "{\n \"$id\": \"https://proj.org/schemas/v0.4/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.4)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_CURRENT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": + \"Schema for PROJJSON (v0.4)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2021, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_CURRENT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": {\n\n + \ \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" @@ -782,7 +789,7 @@ interactions: CF-Cache-Status: - HIT CF-Ray: - - 86ba48b59a388c47-EWR + - 9017bdf8eae1d64f-IAD Cache-Control: - max-age=1200 Connection: @@ -790,13 +797,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:00 GMT + - Mon, 13 Jan 2025 19:20:10 GMT ETag: - - W/"165f7cf0ab48a343b939bc9bd70e6d5f" + - W/"c5bc7ca065287598bed5404a0ec79ce0" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=.NqPA2XdeUQVe1S5jcGACIN8C1Mm08A6uj0xPBdTi_k-1736796010403-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -810,17 +820,21 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - n+yd8qONwz/p1a0Znu1L37TQBDdyzbIvjWrHI9fY5AXzVuiszfQduX5AHfudSykxzv2f68nxtYo= + - ldrLq+wrvaBh3HC0mDplIU2ZuPOsIn/mkePLPplSk2rt6PrOBrjvjMbbWpjWd6yrdq90wEYhud0= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - DQ8BFZ8R5JJTMHRZ + - X9WWEPAT0P3GCD9T x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01da7ec142ee71da9 + - web-ext-theme-i-00f0fbc3c4a545e45 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - /proxito/html/osgeo-proj/latest/schemas/v0.4/projjson.schema.json x-rtd-project: diff --git a/tests/extensions/cassettes/test_datacube/test_validate.yaml b/tests/extensions/cassettes/test_datacube/test_validate.yaml index 2c6a306f8..10ddbb4f7 100644 --- a/tests/extensions/cassettes/test_datacube/test_validate.yaml +++ b/tests/extensions/cassettes/test_datacube/test_validate.yaml @@ -215,7 +215,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:59 GMT + - Mon, 13 Jan 2025 19:20:09 GMT ETag: - '"64527b1d-36ad"' Last-Modified: @@ -233,15 +233,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - a947c3b61317c69565cb9de2fe1481db4178b34f + - 84ba899b2a1b2c9625fc62b84723e9e061618ea3 X-GitHub-Request-Id: - - 215A:25AAED:EB045F:12C2635:6605CF87 + - 9B0B:164558:3D73F0E:464B1C9:67856766 X-Served-By: - - cache-ewr18139-EWR + - cache-bos4628-BOS X-Timer: - - S1711656839.441850,VS0,VE20 + - S1736796009.132493,VS0,VE38 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:09 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -267,9 +267,9 @@ interactions: Access-Control-Allow-Origin: - '*' CF-Cache-Status: - - MISS + - EXPIRED CF-Ray: - - 86ba48b0e9f1433e-EWR + - 9017bdf4793507fd-IAD Cache-Control: - max-age=1200 Connection: @@ -281,11 +281,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:13:59 GMT + - Mon, 13 Jan 2025 19:20:09 GMT Location: - https://proj.org/en/latest/schemas/v0.4/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=6LAZgbjUWBQcCPGaDgg6XGr.Jp7mfCj64fMM.qdsITw-1736796009841-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -299,11 +302,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-0591da9d5c680b106 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -332,14 +337,16 @@ interactions: body: string: "{\n \"$id\": \"https://proj.org/schemas/v0.4/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.4)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_CURRENT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": + \"Schema for PROJJSON (v0.4)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2021, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_CURRENT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": {\n\n + \ \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" @@ -776,9 +783,9 @@ interactions: Access-Control-Allow-Origin: - '*' CF-Cache-Status: - - MISS + - HIT CF-Ray: - - 86ba48b24b51728a-EWR + - 9017bdf64f18d65b-IAD Cache-Control: - max-age=1200 Connection: @@ -786,13 +793,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:00 GMT + - Mon, 13 Jan 2025 19:20:10 GMT ETag: - - W/"165f7cf0ab48a343b939bc9bd70e6d5f" + - W/"c5bc7ca065287598bed5404a0ec79ce0" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=gAlhVhKUBHZX_qp5c1bgehFkyWRYtdCCtsUrwdCLYTs-1736796010026-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -806,17 +816,21 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - n+yd8qONwz/p1a0Znu1L37TQBDdyzbIvjWrHI9fY5AXzVuiszfQduX5AHfudSykxzv2f68nxtYo= + - ldrLq+wrvaBh3HC0mDplIU2ZuPOsIn/mkePLPplSk2rt6PrOBrjvjMbbWpjWd6yrdq90wEYhud0= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - DQ8BFZ8R5JJTMHRZ + - X9WWEPAT0P3GCD9T x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01da7ec142ee71da9 + - web-ext-theme-i-00f0fbc3c4a545e45 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - /proxito/html/osgeo-proj/latest/schemas/v0.4/projjson.schema.json x-rtd-project: diff --git a/tests/extensions/cassettes/test_eo/EOTest.test_asset_bands.yaml b/tests/extensions/cassettes/test_eo/EOTest.test_asset_bands.yaml index 86f0ea021..43db134d9 100644 --- a/tests/extensions/cassettes/test_eo/EOTest.test_asset_bands.yaml +++ b/tests/extensions/cassettes/test_eo/EOTest.test_asset_bands.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '2' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:00 GMT + - Mon, 13 Jan 2025 19:20:10 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 63de9ee5ed7be83185aae95c98326b203ac6b666 + - d404ff478e5493fda573209c58bebf90e88b5942 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18120-EWR + - cache-bos4675-BOS X-Timer: - - S1711656841.811790,VS0,VE1 + - S1736796011.650219,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -195,7 +195,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '2' Cache-Control: - max-age=600 Connection: @@ -205,7 +205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:00 GMT + - Mon, 13 Jan 2025 19:20:10 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +223,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e112fb518431520f8debc31570dd6b1b752cd943 + - c292685e83621b451bb4d20a28307a3e8f065d60 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18172-EWR + - cache-bos4629-BOS X-Timer: - - S1711656841.879786,VS0,VE2 + - S1736796011.714881,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_eo/EOTest.test_bands.yaml b/tests/extensions/cassettes/test_eo/EOTest.test_bands.yaml index c6120e8df..c75b598ae 100644 --- a/tests/extensions/cassettes/test_eo/EOTest.test_bands.yaml +++ b/tests/extensions/cassettes/test_eo/EOTest.test_bands.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '2' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:00 GMT + - Mon, 13 Jan 2025 19:20:10 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 422116fcd22537a87c35f0a0c4c87c04f3c8b584 + - 38033e0ae6ba1f468fde8e96367e72367af8c83f X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18160-EWR + - cache-bos4680-BOS X-Timer: - - S1711656841.981657,VS0,VE2 + - S1736796011.806522,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -195,7 +195,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '2' Cache-Control: - max-age=600 Connection: @@ -205,7 +205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:01 GMT + - Mon, 13 Jan 2025 19:20:10 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +223,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 44a9175f4489009fe471cc0982708fef8e026568 + - 1d14259c4203880d3f689b58bd1fbdb1ac14ba51 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18178-EWR + - cache-bos4639-BOS X-Timer: - - S1711656841.071893,VS0,VE2 + - S1736796011.880465,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_eo/EOTest.test_cloud_cover.yaml b/tests/extensions/cassettes/test_eo/EOTest.test_cloud_cover.yaml index 85f5a78fd..23b930673 100644 --- a/tests/extensions/cassettes/test_eo/EOTest.test_cloud_cover.yaml +++ b/tests/extensions/cassettes/test_eo/EOTest.test_cloud_cover.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '2' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:01 GMT + - Mon, 13 Jan 2025 19:20:10 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -111,17 +111,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 013ffd1c6827a20a67723de93d632b3bae47111c + - fb344f24b95397ef4076e9b0ba760075a0689dcb X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18175-EWR + - cache-bos4675-BOS X-Timer: - - S1711656841.171703,VS0,VE1 + - S1736796011.962499,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -195,7 +195,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '3' Cache-Control: - max-age=600 Connection: @@ -205,7 +205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:01 GMT + - Mon, 13 Jan 2025 19:20:11 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +223,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9b2ef6c26c532141ee01a4104dc5bb0cbf19c0b0 + - 0b5eeab7cd3d5c6569bf4de699ab72bb6af3abbc X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18161-EWR + - cache-bos4650-BOS X-Timer: - - S1711656841.251850,VS0,VE2 + - S1736796011.030957,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_eo/EOTest.test_validate_eo.yaml b/tests/extensions/cassettes/test_eo/EOTest.test_validate_eo.yaml index d4751ba46..e1e81a36b 100644 --- a/tests/extensions/cassettes/test_eo/EOTest.test_validate_eo.yaml +++ b/tests/extensions/cassettes/test_eo/EOTest.test_validate_eo.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '3' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:01 GMT + - Mon, 13 Jan 2025 19:20:11 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5d128c184713df453a537fa82aa3252d811b3993 + - fe1103767ebd259eb2180e63a32cee81edff3b28 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18182-EWR + - cache-bos4621-BOS X-Timer: - - S1711656841.355781,VS0,VE2 + - S1736796011.119617,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -195,7 +195,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '3' Cache-Control: - max-age=600 Connection: @@ -205,7 +205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:01 GMT + - Mon, 13 Jan 2025 19:20:11 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +223,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1d8e24a6ff8cae34cba55c609e78a16e97ee9e01 + - f67f5153b25946721c44334829a410c35cef9d10 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18154-EWR + - cache-bos4653-BOS X-Timer: - - S1711656841.431786,VS0,VE2 + - S1736796011.190231,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_eo/test_set_field[cloud_cover-7.8].yaml b/tests/extensions/cassettes/test_eo/test_set_field[cloud_cover-7.8].yaml index 739b1ae88..36d6bbbfe 100644 --- a/tests/extensions/cassettes/test_eo/test_set_field[cloud_cover-7.8].yaml +++ b/tests/extensions/cassettes/test_eo/test_set_field[cloud_cover-7.8].yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '3' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:01 GMT + - Mon, 13 Jan 2025 19:20:11 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -111,17 +111,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - b595d675736bf8f358180d4b40ae697d7c97cf9c + - abc8de8dc66980b1817099342d9fa0c11c0af33b X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18175-EWR + - cache-bos4677-BOS X-Timer: - - S1711656842.532251,VS0,VE1 + - S1736796011.288636,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -195,7 +195,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '3' Cache-Control: - max-age=600 Connection: @@ -205,7 +205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:01 GMT + - Mon, 13 Jan 2025 19:20:11 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +223,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 05fd8f525953c0116995464cf84a92534d595cc9 + - 2016fcd22e50ec30e2181d6479947862f2bcc192 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18122-EWR + - cache-bos4667-BOS X-Timer: - - S1711656842.611775,VS0,VE2 + - S1736796011.358796,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_eo/test_set_field[snow_cover-99].yaml b/tests/extensions/cassettes/test_eo/test_set_field[snow_cover-99].yaml index 76c0b1182..a5c7d7bf3 100644 --- a/tests/extensions/cassettes/test_eo/test_set_field[snow_cover-99].yaml +++ b/tests/extensions/cassettes/test_eo/test_set_field[snow_cover-99].yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '3' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:01 GMT + - Mon, 13 Jan 2025 19:20:11 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - df386bf779a85e8f804459aca5dcbd1b29dc5703 + - 304a913932c269759febe5f0332ee897a6c346dd X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18159-EWR + - cache-bos4627-BOS X-Timer: - - S1711656842.703886,VS0,VE1 + - S1736796011.434473,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -195,7 +195,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '3' Cache-Control: - max-age=600 Connection: @@ -205,7 +205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:01 GMT + - Mon, 13 Jan 2025 19:20:11 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +223,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - dec866bfc3b47086d3635efa54ddf4ec60b7e3a4 + - 9430021349835e515d14691cd308345a618c4325 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18136-EWR + - cache-bos4652-BOS X-Timer: - - S1711656842.784209,VS0,VE2 + - S1736796012.510400,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_migrate_from_v1_0_0.yaml b/tests/extensions/cassettes/test_file/test_migrate_from_v1_0_0.yaml index 35ef2aff4..496789fb4 100644 --- a/tests/extensions/cassettes/test_file/test_migrate_from_v1_0_0.yaml +++ b/tests/extensions/cassettes/test_file/test_migrate_from_v1_0_0.yaml @@ -65,11 +65,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:14:04 GMT + - Mon, 13 Jan 2025 19:20:13 GMT ETag: - '"d86613d81195c6b4fdebc2055d91ce4921bbc44d99ad6206c5ffdf7518eb89f2"' Expires: - - Thu, 28 Mar 2024 20:19:04 GMT + - Mon, 13 Jan 2025 19:25:13 GMT Source-Age: - '0' Strict-Transport-Security: @@ -85,15 +85,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1686c220710db1c9096a1429ee7910ac106140c5 + - 260d8b58317ccaf25189f9da45a929cdbe4ff465 X-Frame-Options: - deny X-GitHub-Request-Id: - - E070:125BCB:67E0A4:7BF155:6605CF8B + - B67F:2D31D8:17BBA1:1A962D:67856768 X-Served-By: - - cache-ewr18128-EWR + - cache-bos4677-BOS X-Timer: - - S1711656844.355764,VS0,VE73 + - S1736796013.982622,VS0,VE172 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/extensions/cassettes/test_file/test_migrate_from_v2_0_0.yaml b/tests/extensions/cassettes/test_file/test_migrate_from_v2_0_0.yaml index dda63b682..8fcd85841 100644 --- a/tests/extensions/cassettes/test_file/test_migrate_from_v2_0_0.yaml +++ b/tests/extensions/cassettes/test_file/test_migrate_from_v2_0_0.yaml @@ -64,11 +64,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:14:04 GMT + - Mon, 13 Jan 2025 19:20:12 GMT ETag: - '"2bad008be3e01a9750cc4e04bc605bca80229906ad21f17c6e7573fb367bb781"' Expires: - - Thu, 28 Mar 2024 20:19:04 GMT + - Mon, 13 Jan 2025 19:25:12 GMT Source-Age: - '0' Strict-Transport-Security: @@ -84,15 +84,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9d344c699ddde461790466a258a166cd05322dd4 + - 3f8b7c7956037cc175bc0ae0af2eb8b4119eb3e7 X-Frame-Options: - deny X-GitHub-Request-Id: - - 10B8:1714:4B9973:5B394D:6605CF8B + - 16DA:17B50D:1D446B:201FE5:6785676C X-Served-By: - - cache-ewr18128-EWR + - cache-bos4675-BOS X-Timer: - - S1711656844.180851,VS0,VE92 + - S1736796013.772564,VS0,VE146 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/extensions/cassettes/test_file/test_set_field_on_asset[calibrations-local_path-different-file.xml].yaml b/tests/extensions/cassettes/test_file/test_set_field_on_asset[calibrations-local_path-different-file.xml].yaml index 6f8618c3c..a675c6c99 100644 --- a/tests/extensions/cassettes/test_file/test_set_field_on_asset[calibrations-local_path-different-file.xml].yaml +++ b/tests/extensions/cassettes/test_file/test_set_field_on_asset[calibrations-local_path-different-file.xml].yaml @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:02 GMT + - Mon, 13 Jan 2025 19:20:12 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -105,17 +105,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '6' X-Fastly-Request-ID: - - 89e05511e9dcdb178dedffce844014c304978ab4 + - 3112a87fb84785c45b42d534411195fc2a513752 X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18171-EWR + - cache-bos4668-BOS X-Timer: - - S1711656843.648277,VS0,VE2 + - S1736796012.266737,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_set_field_on_asset[measurement-header_size-8192].yaml b/tests/extensions/cassettes/test_file/test_set_field_on_asset[measurement-header_size-8192].yaml index 957960422..68be39b8c 100644 --- a/tests/extensions/cassettes/test_file/test_set_field_on_asset[measurement-header_size-8192].yaml +++ b/tests/extensions/cassettes/test_file/test_set_field_on_asset[measurement-header_size-8192].yaml @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:02 GMT + - Mon, 13 Jan 2025 19:20:12 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c618b729946067b19d2bff64653abdf588e815fd + - 700e629457ae1c869c4eaca7114cdc0848ffebad X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18132-EWR + - cache-bos4647-BOS X-Timer: - - S1711656842.356679,VS0,VE1 + - S1736796012.012708,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-byte_order-little-endian].yaml b/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-byte_order-little-endian].yaml index 3b9672bf3..e0128b44b 100644 --- a/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-byte_order-little-endian].yaml +++ b/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-byte_order-little-endian].yaml @@ -79,7 +79,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '0' Cache-Control: - max-age=600 Connection: @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:02 GMT + - Mon, 13 Jan 2025 19:20:12 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b60c0935d5e42564082d93b33bcb39f5c366c48b + - b03a5486e96499b86f2f258e6ab8cbeceaf70a86 X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18155-EWR + - cache-bos4626-BOS X-Timer: - - S1711656843.552019,VS0,VE1 + - S1736796012.186224,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-checksum-90e40210163700a8a6501eccd00b6d3b44ddaed0].yaml b/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-checksum-90e40210163700a8a6501eccd00b6d3b44ddaed0].yaml index e319f7c68..5242f873f 100644 --- a/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-checksum-90e40210163700a8a6501eccd00b6d3b44ddaed0].yaml +++ b/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-checksum-90e40210163700a8a6501eccd00b6d3b44ddaed0].yaml @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:02 GMT + - Mon, 13 Jan 2025 19:20:12 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -105,17 +105,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 72f53ca4cc44ce1c2c3275184a2f94d5bc336eef + - 55d63201f6bb84de142b038bf922f4796d6de532 X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18122-EWR + - cache-bos4647-BOS X-Timer: - - S1711656842.455566,VS0,VE2 + - S1736796012.114570,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-size-1].yaml b/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-size-1].yaml index cbb54fd45..073d967ee 100644 --- a/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-size-1].yaml +++ b/tests/extensions/cassettes/test_file/test_set_field_on_asset[thumbnail-size-1].yaml @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:02 GMT + - Mon, 13 Jan 2025 19:20:11 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 742c13118731bf382328fd42ecd0ba6e4a04cf5d + - 37144d085e6ccad77253a0befd853fa27110e8f1 X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18124-EWR + - cache-bos4685-BOS X-Timer: - - S1711656842.255818,VS0,VE1 + - S1736796012.930315,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_set_field_on_link[about-byte_order-big-endian].yaml b/tests/extensions/cassettes/test_file/test_set_field_on_link[about-byte_order-big-endian].yaml index ecd20b7d8..9f7ee420a 100644 --- a/tests/extensions/cassettes/test_file/test_set_field_on_link[about-byte_order-big-endian].yaml +++ b/tests/extensions/cassettes/test_file/test_set_field_on_link[about-byte_order-big-endian].yaml @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:02 GMT + - Mon, 13 Jan 2025 19:20:12 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 12705070e54f3256523ab7d89301b65b705ba1d1 + - b5a855867e6d72a45746b859ec931bda7c159c66 X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18148-EWR + - cache-bos4677-BOS X-Timer: - - S1711656843.984013,VS0,VE2 + - S1736796013.582387,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_set_field_on_link[about-checksum-90e40210163700a8a6501eccd00b6d3b44ddaedb].yaml b/tests/extensions/cassettes/test_file/test_set_field_on_link[about-checksum-90e40210163700a8a6501eccd00b6d3b44ddaedb].yaml index 272a69e49..49257917b 100644 --- a/tests/extensions/cassettes/test_file/test_set_field_on_link[about-checksum-90e40210163700a8a6501eccd00b6d3b44ddaedb].yaml +++ b/tests/extensions/cassettes/test_file/test_set_field_on_link[about-checksum-90e40210163700a8a6501eccd00b6d3b44ddaedb].yaml @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:02 GMT + - Mon, 13 Jan 2025 19:20:12 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8b9522d37207747e256ab85625050311905aa8b7 + - 455bc95a405af152994ab73700147473f33a9ac0 X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18161-EWR + - cache-bos4654-BOS X-Timer: - - S1711656843.903913,VS0,VE2 + - S1736796013.504904,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_set_field_on_link[about-header_size-4092].yaml b/tests/extensions/cassettes/test_file/test_set_field_on_link[about-header_size-4092].yaml index 0c38c669c..0468748c3 100644 --- a/tests/extensions/cassettes/test_file/test_set_field_on_link[about-header_size-4092].yaml +++ b/tests/extensions/cassettes/test_file/test_set_field_on_link[about-header_size-4092].yaml @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:02 GMT + - Mon, 13 Jan 2025 19:20:12 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8e43b95b5350b0e5883a542bcfaa24b8044b11ae + - b71bfa85521861e92cb50c92344ff24dc67875ce X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18175-EWR + - cache-bos4666-BOS X-Timer: - - S1711656843.815867,VS0,VE2 + - S1736796012.421047,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_set_field_on_link[about-local_path-a-path].yaml b/tests/extensions/cassettes/test_file/test_set_field_on_link[about-local_path-a-path].yaml index 966801a21..b5d8d2e18 100644 --- a/tests/extensions/cassettes/test_file/test_set_field_on_link[about-local_path-a-path].yaml +++ b/tests/extensions/cassettes/test_file/test_set_field_on_link[about-local_path-a-path].yaml @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:03 GMT + - Mon, 13 Jan 2025 19:20:12 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 99ed06008fc7dea7fcec6265252b2fa3f4e8c25c + - baf561f871503a4d09e9c2b6b3c044edd1c2c474 X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18143-EWR + - cache-bos4675-BOS X-Timer: - - S1711656843.071614,VS0,VE1 + - S1736796013.678580,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_set_field_on_link[about-size-129302].yaml b/tests/extensions/cassettes/test_file/test_set_field_on_link[about-size-129302].yaml index 118a3718d..1614cb9c8 100644 --- a/tests/extensions/cassettes/test_file/test_set_field_on_link[about-size-129302].yaml +++ b/tests/extensions/cassettes/test_file/test_set_field_on_link[about-size-129302].yaml @@ -79,7 +79,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '0' Cache-Control: - max-age=600 Connection: @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:02 GMT + - Mon, 13 Jan 2025 19:20:12 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -105,17 +105,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Fastly-Request-ID: - - 1ef4bd56e198d10535d75934f605c357421c6bba + - 8ef5aea2bf533df33b44404a1de9c3f429bcf7da X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18159-EWR + - cache-bos4647-BOS X-Timer: - - S1711656843.735681,VS0,VE2 + - S1736796012.343494,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_validate_catalog.yaml b/tests/extensions/cassettes/test_file/test_validate_catalog.yaml index eb7439196..fb3230196 100644 --- a/tests/extensions/cassettes/test_file/test_validate_catalog.yaml +++ b/tests/extensions/cassettes/test_file/test_validate_catalog.yaml @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:02 GMT + - Mon, 13 Jan 2025 19:20:11 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8eb9564b8533c90fce04383872cc2952b747af0a + - f58ddd07d748d861db0e65c39d414e9600a49fae X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18160-EWR + - cache-bos4639-BOS X-Timer: - - S1711656842.163967,VS0,VE1 + - S1736796012.844699,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_validate_collection.yaml b/tests/extensions/cassettes/test_file/test_validate_collection.yaml index e2be597ad..b1aa40522 100644 --- a/tests/extensions/cassettes/test_file/test_validate_collection.yaml +++ b/tests/extensions/cassettes/test_file/test_validate_collection.yaml @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:02 GMT + - Mon, 13 Jan 2025 19:20:11 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - dff7213dedc2f963ac1db7d6eb4dd6893dc213cc + - 06a29bb8e2b943ec25277d5371acd8051945a8b6 X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18142-EWR + - cache-bos4645-BOS X-Timer: - - S1711656842.071902,VS0,VE4 + - S1736796012.770446,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_file/test_validate_item.yaml b/tests/extensions/cassettes/test_file/test_validate_item.yaml index 99148b416..170dbfd04 100644 --- a/tests/extensions/cassettes/test_file/test_validate_item.yaml +++ b/tests/extensions/cassettes/test_file/test_validate_item.yaml @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:01 GMT + - Mon, 13 Jan 2025 19:20:11 GMT ETag: - '"61b4cf00-11b8"' Last-Modified: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - e94a30118f57089cc3c6b426195fe0c0994ae805 + - 75d265487908ec532a2a0217bb1f8847c419ac83 X-GitHub-Request-Id: - - D9E4:3852:E5983D:1269B47:6605CF89 + - 7E7A:13E969:4300BE0:4BD8C36:6785676B X-Served-By: - - cache-ewr18163-EWR + - cache-bos4668-BOS X-Timer: - - S1711656842.968375,VS0,VE18 + - S1736796012.648398,VS0,VE46 expires: - - Thu, 28 Mar 2024 20:24:01 GMT + - Mon, 13 Jan 2025 19:30:11 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_grid/GridTest.test_attributes.yaml b/tests/extensions/cassettes/test_grid/GridTest.test_attributes.yaml index 41027e81a..30e3c3d65 100644 --- a/tests/extensions/cassettes/test_grid/GridTest.test_attributes.yaml +++ b/tests/extensions/cassettes/test_grid/GridTest.test_attributes.yaml @@ -51,7 +51,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:04 GMT + - Mon, 13 Jan 2025 19:20:13 GMT ETag: - '"638a24f0-6d8"' Last-Modified: @@ -69,15 +69,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 5a8ffaacefcd1b93cc4be40208658d6bd6e8194d + - 07490583b6f55c2216b18d75d7e0afb7b89da9f3 X-GitHub-Request-Id: - - 5B36:3495:E12CDE:12254D3:6605CF8C + - 5E64:22F2A5:46EF0EB:4FC76CE:6785676D X-Served-By: - - cache-ewr18182-EWR + - cache-bos4632-BOS X-Timer: - - S1711656845.512026,VS0,VE18 + - S1736796013.280593,VS0,VE30 expires: - - Thu, 28 Mar 2024 20:24:04 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_grid/GridTest.test_modify.yaml b/tests/extensions/cassettes/test_grid/GridTest.test_modify.yaml index 212cffee9..e33d32477 100644 --- a/tests/extensions/cassettes/test_grid/GridTest.test_modify.yaml +++ b/tests/extensions/cassettes/test_grid/GridTest.test_modify.yaml @@ -51,7 +51,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:04 GMT + - Mon, 13 Jan 2025 19:20:13 GMT ETag: - '"638a24f0-6d8"' Last-Modified: @@ -69,15 +69,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3bfc44957dbef801f338d344e50d0f2bbc24bd63 + - 714016c927566865a9e588ea244aaa561475eddc X-GitHub-Request-Id: - - 5B36:3495:E12CDE:12254D3:6605CF8C + - 5E64:22F2A5:46EF0EB:4FC76CE:6785676D X-Served-By: - - cache-ewr18133-EWR + - cache-bos4652-BOS X-Timer: - - S1711656845.620379,VS0,VE1 + - S1736796013.404349,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:04 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_mgrs/test_set_field[grid_square-ZA].yaml b/tests/extensions/cassettes/test_mgrs/test_set_field[grid_square-ZA].yaml index 2aee88231..c55124f2c 100644 --- a/tests/extensions/cassettes/test_mgrs/test_set_field[grid_square-ZA].yaml +++ b/tests/extensions/cassettes/test_mgrs/test_set_field[grid_square-ZA].yaml @@ -67,7 +67,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:04 GMT + - Mon, 13 Jan 2025 19:20:13 GMT ETag: - '"60c20ce1-b49"' Last-Modified: @@ -85,15 +85,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 39064ba88e765211d242916d06464d4415b47279 + - 95320c56e17686b15b68c44f50ace98c349b9eaf X-GitHub-Request-Id: - - FEF8:1218:F7DD2F:1391031:6605CF8B + - 943D:2C0FB4:4614EE8:4EED9E1:6785676D X-Served-By: - - cache-ewr18135-EWR + - cache-bos4647-BOS X-Timer: - - S1711656845.941058,VS0,VE12 + - S1736796014.686935,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:04 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_mgrs/test_set_field[latitude_band-C].yaml b/tests/extensions/cassettes/test_mgrs/test_set_field[latitude_band-C].yaml index 73b8a642a..b74cb514a 100644 --- a/tests/extensions/cassettes/test_mgrs/test_set_field[latitude_band-C].yaml +++ b/tests/extensions/cassettes/test_mgrs/test_set_field[latitude_band-C].yaml @@ -67,7 +67,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:04 GMT + - Mon, 13 Jan 2025 19:20:13 GMT ETag: - '"60c20ce1-b49"' Last-Modified: @@ -85,15 +85,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f4da031001ac41e83dafed947664ee151a9052bb + - 2d3de80f125a6d32298eb83da31b20c05dc037b0 X-GitHub-Request-Id: - - FEF8:1218:F7DD2F:1391031:6605CF8B + - 943D:2C0FB4:4614EE8:4EED9E1:6785676D X-Served-By: - - cache-ewr18133-EWR + - cache-bos4668-BOS X-Timer: - - S1711656845.856115,VS0,VE1 + - S1736796014.607392,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:04 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_mgrs/test_set_field[utm_zone-59].yaml b/tests/extensions/cassettes/test_mgrs/test_set_field[utm_zone-59].yaml index 1c4d1ce4d..bb9f53d45 100644 --- a/tests/extensions/cassettes/test_mgrs/test_set_field[utm_zone-59].yaml +++ b/tests/extensions/cassettes/test_mgrs/test_set_field[utm_zone-59].yaml @@ -67,7 +67,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:05 GMT + - Mon, 13 Jan 2025 19:20:13 GMT ETag: - '"60c20ce1-b49"' Last-Modified: @@ -85,15 +85,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6bc38df2190161eea7aed46b2b0c588532f012f4 + - 5bc73e55de49734b97ef66f463dac51e94216ee2 X-GitHub-Request-Id: - - FEF8:1218:F7DD2F:1391031:6605CF8B + - 943D:2C0FB4:4614EE8:4EED9E1:6785676D X-Served-By: - - cache-ewr18144-EWR + - cache-bos4658-BOS X-Timer: - - S1711656845.047643,VS0,VE1 + - S1736796014.764614,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:04 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_mgrs/test_validate.yaml b/tests/extensions/cassettes/test_mgrs/test_validate.yaml index c086de3e7..6df849de1 100644 --- a/tests/extensions/cassettes/test_mgrs/test_validate.yaml +++ b/tests/extensions/cassettes/test_mgrs/test_validate.yaml @@ -67,7 +67,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:04 GMT + - Mon, 13 Jan 2025 19:20:13 GMT ETag: - '"60c20ce1-b49"' Last-Modified: @@ -85,15 +85,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 0047e270422c08d87a302c6a231496f712609d53 + - 31d2267e1b1aeb0f7a827c4c85bf205afae2b481 X-GitHub-Request-Id: - - FEF8:1218:F7DD2F:1391031:6605CF8B + - 943D:2C0FB4:4614EE8:4EED9E1:6785676D X-Served-By: - - cache-ewr18144-EWR + - cache-bos4663-BOS X-Timer: - - S1711656845.731809,VS0,VE21 + - S1736796013.492833,VS0,VE29 expires: - - Thu, 28 Mar 2024 20:24:04 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_count.yaml b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_count.yaml index f45836bdd..9e96cbd09 100644 --- a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_count.yaml +++ b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_count.yaml @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:05 GMT + - Mon, 13 Jan 2025 19:20:13 GMT ETag: - - '"6046b7f8-114a"' + - '"671aae9d-114a"' Last-Modified: - - Mon, 08 Mar 2021 23:49:12 GMT + - Thu, 24 Oct 2024 20:31:25 GMT Server: - GitHub.com Strict-Transport-Security: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - e1977aee860acf6720189dad1422b7afd93528ca + - d63c1639b139d753d4e1780b23ba15072de8d95c X-GitHub-Request-Id: - - 5CD6:179C:EB5ABB:12C35FB:6605CF8D + - 39BC:29F0A3:4468BBA:4D4121C:6785676D X-Served-By: - - cache-ewr18166-EWR + - cache-bos4654-BOS X-Timer: - - S1711656845.131702,VS0,VE20 + - S1736796014.848767,VS0,VE36 expires: - - Thu, 28 Mar 2024 20:24:05 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_density.yaml b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_density.yaml index a3fb56af6..000a0c74c 100644 --- a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_density.yaml +++ b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_density.yaml @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:05 GMT + - Mon, 13 Jan 2025 19:20:13 GMT ETag: - - '"6046b7f8-114a"' + - '"671aae9d-114a"' Last-Modified: - - Mon, 08 Mar 2021 23:49:12 GMT + - Thu, 24 Oct 2024 20:31:25 GMT Server: - GitHub.com Strict-Transport-Security: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 013f6272a0c4b65c59a3339dee1090f38f329af6 + - b18ad472a45eb85e4ca3e27439e0560a21ad5c59 X-GitHub-Request-Id: - - 5CD6:179C:EB5ABB:12C35FB:6605CF8D + - 39BC:29F0A3:4468BBA:4D4121C:6785676D X-Served-By: - - cache-ewr18139-EWR + - cache-bos4657-BOS X-Timer: - - S1711656845.232154,VS0,VE2 + - S1736796014.966471,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:05 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_encoding.yaml b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_encoding.yaml index 8bce06e42..3ded99ef3 100644 --- a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_encoding.yaml +++ b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_encoding.yaml @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:05 GMT + - Mon, 13 Jan 2025 19:20:14 GMT ETag: - - '"6046b7f8-114a"' + - '"671aae9d-114a"' Last-Modified: - - Mon, 08 Mar 2021 23:49:12 GMT + - Thu, 24 Oct 2024 20:31:25 GMT Server: - GitHub.com Strict-Transport-Security: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 89a11ac4573bac9c81413db49ea3a5abbb55a216 + - 644d063b6465e056d94b86b26a22a8135777473b X-GitHub-Request-Id: - - 5CD6:179C:EB5ABB:12C35FB:6605CF8D + - 39BC:29F0A3:4468BBA:4D4121C:6785676D X-Served-By: - - cache-ewr18165-EWR + - cache-bos4653-BOS X-Timer: - - S1711656845.319148,VS0,VE3 + - S1736796014.046202,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:05 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_schemas.yaml b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_schemas.yaml index 07d5bf348..ba5e0e0a0 100644 --- a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_schemas.yaml +++ b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_schemas.yaml @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:05 GMT + - Mon, 13 Jan 2025 19:20:14 GMT ETag: - - '"6046b7f8-114a"' + - '"671aae9d-114a"' Last-Modified: - - Mon, 08 Mar 2021 23:49:12 GMT + - Thu, 24 Oct 2024 20:31:25 GMT Server: - GitHub.com Strict-Transport-Security: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8eefa5cf3e3f116d648d19e3f12d918c8991d2c7 + - ba5aef90c2d78e20b5fb82365f8092b9acb6a061 X-GitHub-Request-Id: - - 5CD6:179C:EB5ABB:12C35FB:6605CF8D + - 39BC:29F0A3:4468BBA:4D4121C:6785676D X-Served-By: - - cache-ewr18167-EWR + - cache-bos4645-BOS X-Timer: - - S1711656845.411965,VS0,VE2 + - S1736796014.146436,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:05 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_statistics.yaml b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_statistics.yaml index 5f8b44aa6..ff6bf9f83 100644 --- a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_statistics.yaml +++ b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_statistics.yaml @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:05 GMT + - Mon, 13 Jan 2025 19:20:14 GMT ETag: - - '"6046b7f8-114a"' + - '"671aae9d-114a"' Last-Modified: - - Mon, 08 Mar 2021 23:49:12 GMT + - Thu, 24 Oct 2024 20:31:25 GMT Server: - GitHub.com Strict-Transport-Security: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 066b647109740cbca4bc3ff7f17cb9a63cad6dc6 + - 8aa65bd9f1ef2b997ec37579c472c5b37789c145 X-GitHub-Request-Id: - - 5CD6:179C:EB5ABB:12C35FB:6605CF8D + - 39BC:29F0A3:4468BBA:4D4121C:6785676D X-Served-By: - - cache-ewr18176-EWR + - cache-bos4646-BOS X-Timer: - - S1711656845.496410,VS0,VE1 + - S1736796014.219008,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:05 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_type.yaml b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_type.yaml index 4ca4a32f6..e5537e1bc 100644 --- a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_type.yaml +++ b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_type.yaml @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:05 GMT + - Mon, 13 Jan 2025 19:20:14 GMT ETag: - - '"6046b7f8-114a"' + - '"671aae9d-114a"' Last-Modified: - - Mon, 08 Mar 2021 23:49:12 GMT + - Thu, 24 Oct 2024 20:31:25 GMT Server: - GitHub.com Strict-Transport-Security: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4c395124d75234a769cf6df79833e1b3230a8b74 + - 1c93c8acb68c3a363e870b4c94215f4ff72cf4f4 X-GitHub-Request-Id: - - 5CD6:179C:EB5ABB:12C35FB:6605CF8D + - 39BC:29F0A3:4468BBA:4D4121C:6785676D X-Served-By: - - cache-ewr18166-EWR + - cache-bos4621-BOS X-Timer: - - S1711656846.579714,VS0,VE1 + - S1736796014.308296,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:05 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_validate_pointcloud.yaml b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_validate_pointcloud.yaml index e579758b3..966f53e61 100644 --- a/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_validate_pointcloud.yaml +++ b/tests/extensions/cassettes/test_pointcloud/PointcloudTest.test_validate_pointcloud.yaml @@ -79,7 +79,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '0' Cache-Control: - max-age=600 Connection: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:05 GMT + - Mon, 13 Jan 2025 19:20:14 GMT ETag: - - '"6046b7f8-114a"' + - '"671aae9d-114a"' Last-Modified: - - Mon, 08 Mar 2021 23:49:12 GMT + - Thu, 24 Oct 2024 20:31:25 GMT Server: - GitHub.com Strict-Transport-Security: @@ -107,15 +107,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a4b6502a1a5e7adc7d162fcd3d10565d62130bcc + - 74b68f23c6f077404d4bcc9c09a31965e431d6b1 X-GitHub-Request-Id: - - 5CD6:179C:EB5ABB:12C35FB:6605CF8D + - 39BC:29F0A3:4468BBA:4D4121C:6785676D X-Served-By: - - cache-ewr18138-EWR + - cache-bos4685-BOS X-Timer: - - S1711656846.663827,VS0,VE1 + - S1736796014.380931,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:05 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_projection/ProjectionTest.test_bbox.yaml b/tests/extensions/cassettes/test_projection/ProjectionTest.test_bbox.yaml index 1dfadffe0..7578af50e 100644 --- a/tests/extensions/cassettes/test_projection/ProjectionTest.test_bbox.yaml +++ b/tests/extensions/cassettes/test_projection/ProjectionTest.test_bbox.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '22' + - '6' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:05 GMT + - Mon, 13 Jan 2025 19:20:14 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -111,17 +111,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 0e8259faef56e0feb2970c91b00e1ffd38117dd6 + - b22cd50832fd8d0633339b01ab548f29268b4df1 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18165-EWR + - cache-bos4681-BOS X-Timer: - - S1711656846.760077,VS0,VE1 + - S1736796014.461219,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '22' + - '6' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:05 GMT + - Mon, 13 Jan 2025 19:20:14 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -231,17 +231,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 76f087c398ec3de4507e76f6ffdef1fd6dac46ed + - c2231614632d2a9d6ec2d40987ab8f05b71b0985 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18174-EWR + - cache-bos4633-BOS X-Timer: - - S1711656846.839567,VS0,VE1 + - S1736796015.534681,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -259,17 +259,19 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/schemas/v0.5/projjson.schema.json + uri: https://proj.org/schemas/v0.7/projjson.schema.json response: body: string: '' headers: Access-Control-Allow-Origin: - '*' + Age: + - '1161' CF-Cache-Status: - - EXPIRED + - HIT CF-Ray: - - 86ba48d70b7c3354-EWR + - 9017be138b0b3adc-IAD Cache-Control: - max-age=1200 Connection: @@ -281,11 +283,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:06 GMT + - Mon, 13 Jan 2025 19:20:14 GMT Location: - - https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + - https://proj.org/en/latest/schemas/v0.7/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=BNA6gYuRDxMpBS2XrmETVTK4EgpuJCl8GEf5.hbgOwE-1736796014688-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -299,11 +304,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-012abf2f2e58feea7 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -327,27 +334,32 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + uri: https://proj.org/en/latest/schemas/v0.7/projjson.schema.json response: body: - string: "{\n \"$id\": \"https://proj.org/schemas/v0.5/projjson.schema.json\",\n + string: "{\n \"$id\": \"https://proj.org/schemas/v0.7/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.5)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_DEFAULT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { - \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" - },\n \"parameters\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/parameter_value\" }\n },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"method\", \"parameters\" ],\n - \ \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + \"Schema for PROJJSON (v0.7)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2023, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_DEFAULT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" },\n { \"$ref\": \"#/definitions/coordinate_metadata\" + }\n ],\n\n \"definitions\": {\n\n \"abridged_transformation\": {\n \"type\": + \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" + },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] + },\n \"name\": { \"type\": \"string\" },\n \"source_crs\": {\n + \ \"$ref\": \"#/definitions/crs\",\n \"$comment\": \"Only + present when the source_crs of the bound_crs does not match the source_crs + of the AbridgedTransformation. No equivalent in WKT\"\n },\n \"method\": + { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": + \"array\",\n \"items\": { \"$ref\": \"#/definitions/parameter_value\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", + \"method\", \"parameters\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": false\n },\n\n \"axis\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": @@ -374,17 +386,20 @@ interactions: \ \"awayFrom\",\n \"future\",\n \ \"past\",\n \"unspecified\" ] },\n \"meridian\": { \"$ref\": \"#/definitions/meridian\" },\n \"unit\": - { \"$ref\": \"#/definitions/unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"abbreviation\", \"direction\" ],\n \"allOf\": [\n { - \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n },\n\n \"bbox\": {\n \"type\": \"object\",\n \"properties\": - {\n \"east_longitude\": { \"type\": \"number\" },\n \"west_longitude\": - { \"type\": \"number\" },\n \"south_latitude\": { \"type\": \"number\" - },\n \"north_latitude\": { \"type\": \"number\" }\n },\n \"required\" - : [ \"east_longitude\", \"west_longitude\",\n \"south_latitude\", - \"north_latitude\" ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": - {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" + { \"$ref\": \"#/definitions/unit\" },\n \"minimum_value\": { \"type\": + \"number\" },\n \"maximum_value\": { \"type\": \"number\" },\n \"range_meaning\": + { \"type\": \"string\", \"enum\": [ \"exact\", \"wraparound\"] },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"abbreviation\", \"direction\" + ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"bbox\": + {\n \"type\": \"object\",\n \"properties\": {\n \"east_longitude\": + { \"type\": \"number\" },\n \"west_longitude\": { \"type\": \"number\" + },\n \"south_latitude\": { \"type\": \"number\" },\n \"north_latitude\": + { \"type\": \"number\" }\n },\n \"required\" : [ \"east_longitude\", + \"west_longitude\",\n \"south_latitude\", \"north_latitude\" + ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": {\n + \ \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"BoundCRS\"] },\n \ \"name\": { \"type\": \"string\" },\n \"source_crs\": { \"$ref\": @@ -410,12 +425,13 @@ interactions: \ \"source_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"target_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"steps\": {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/single_operation\" - }\n },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\", \"source_crs\", \"target_crs\", - \"steps\" ],\n \"additionalProperties\": false\n },\n\n \"conversion\": - {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + }\n },\n \"accuracy\": { \"type\": \"string\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\", \"source_crs\", \"target_crs\", \"steps\" + ],\n \"additionalProperties\": false\n },\n\n \"conversion\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Conversion\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": @@ -423,48 +439,54 @@ interactions: }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"method\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" - }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": + }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_metadata\": + {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": + [\"CoordinateMetadata\"] },\n \"crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"coordinateEpoch\": { \"type\": \"number\" }\n },\n \"required\" + : [ \"crs\" ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"CoordinateSystem\"] },\n \"name\": { \"type\": \"string\" },\n \"subtype\": { \"type\": \"string\",\n \"enum\": [\"Cartesian\",\n \ \"spherical\",\n \"ellipsoidal\",\n \ \"vertical\",\n \"ordinal\",\n - \ \"parametric\",\n \"TemporalDateTime\",\n - \ \"TemporalCount\",\n \"TemporalMeasure\"] - \ },\n \"axis\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/axis\" }\n },\n \"id\": { \"$ref\": - \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"subtype\", \"axis\" ],\n \"allOf\": - [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n - \ \"additionalProperties\": false\n },\n\n \"crs\": {\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/bound_crs\" },\n { \"$ref\": - \"#/definitions/compound_crs\" },\n { \"$ref\": \"#/definitions/derived_engineering_crs\" - },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" },\n { - \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { \"$ref\": - \"#/definitions/derived_projected_crs\" },\n { \"$ref\": \"#/definitions/derived_temporal_crs\" - },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" },\n { - \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": \"#/definitions/geodetic_crs\" - },\n { \"$ref\": \"#/definitions/parametric_crs\" },\n { \"$ref\": - \"#/definitions/projected_crs\" },\n { \"$ref\": \"#/definitions/temporal_crs\" - },\n { \"$ref\": \"#/definitions/vertical_crs\" }\n ]\n },\n\n - \ \"datum\": {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/geodetic_reference_frame\" - },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": \"#/definitions/parametric_datum\" - },\n { \"$ref\": \"#/definitions/engineering_datum\" }\n ]\n },\n\n - \ \"datum_ensemble\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"DatumEnsemble\"] },\n \"name\": { \"type\": - \"string\" },\n \"members\": {\n \"type\": \"array\",\n - \ \"items\": {\n \"type\": \"object\",\n \"properties\": - {\n \"name\": { \"type\": \"string\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": - \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\" ],\n \"allOf\": [\n { \"$ref\": - \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n }\n },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + \ \"parametric\",\n \"affine\",\n + \ \"TemporalDateTime\",\n \"TemporalCount\",\n + \ \"TemporalMeasure\"] },\n \"axis\": + {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/axis\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"subtype\", + \"axis\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"crs\": + {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/bound_crs\" },\n + \ { \"$ref\": \"#/definitions/compound_crs\" },\n { \"$ref\": + \"#/definitions/derived_engineering_crs\" },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" + },\n { \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { + \"$ref\": \"#/definitions/derived_projected_crs\" },\n { \"$ref\": + \"#/definitions/derived_temporal_crs\" },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" + },\n { \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": + \"#/definitions/geodetic_crs\" },\n { \"$ref\": \"#/definitions/parametric_crs\" + },\n { \"$ref\": \"#/definitions/projected_crs\" },\n { \"$ref\": + \"#/definitions/temporal_crs\" },\n { \"$ref\": \"#/definitions/vertical_crs\" + }\n ]\n },\n\n \"datum\": {\n \"oneOf\": [\n { \"$ref\": + \"#/definitions/geodetic_reference_frame\" },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": + \"#/definitions/parametric_datum\" },\n { \"$ref\": \"#/definitions/engineering_datum\" + }\n ]\n },\n\n \"datum_ensemble\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n + \ \"type\": { \"type\": \"string\", \"enum\": [\"DatumEnsemble\"] },\n + \ \"name\": { \"type\": \"string\" },\n \"members\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"name\": { \"type\": + \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" + },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n + \ \"required\" : [ \"name\" ],\n \"allOf\": [\n + \ { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n }\n + \ },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" },\n \"accuracy\": { \"type\": \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"members\", \"accuracy\" ],\n @@ -544,9 +566,9 @@ interactions: \ \"dynamic_geodetic_reference_frame\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicGeodeticReferenceFrame\"] - },\n \"name\": {},\n \"anchor\": {},\n \"ellipsoid\": - {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": { - \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n + },\n \"name\": {},\n \"anchor\": {},\n \"anchor_epoch\": + {},\n \"ellipsoid\": {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": + { \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \ \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", @@ -555,35 +577,35 @@ interactions: \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicVerticalReferenceFrame\"] },\n \"name\": {},\n \"anchor\": - {},\n \"frame_reference_epoch\": { \"type\": \"number\" },\n \"$schema\" - : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n - \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": - {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n - \ \"required\" : [ \"name\", \"frame_reference_epoch\" ],\n \"additionalProperties\": - false\n },\n\n \"ellipsoid\": {\n \"type\": \"object\",\n \"oneOf\":[\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"semi_minor_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", - \"semi_minor_axis\" ],\n \"additionalProperties\": false\n },\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"inverse_flattening\": - { \"type\": \"number\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n - \ \"required\" : [ \"name\", \"semi_major_axis\", \"inverse_flattening\" - ],\n \"additionalProperties\": false\n },\n {\n \"properties\": + {},\n \"anchor_epoch\": {},\n \"frame_reference_epoch\": { \"type\": + \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": + {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"frame_reference_epoch\" + ],\n \"additionalProperties\": false\n },\n\n \"ellipsoid\": {\n + \ \"type\": \"object\",\n \"oneOf\":[\n {\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] },\n \"name\": - { \"type\": \"string\" },\n \"radius\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + { \"type\": \"string\" },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"semi_minor_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"radius\" ],\n \"additionalProperties\": false\n }\n - \ ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + : [ \"name\", \"semi_major_axis\", \"semi_minor_axis\" ],\n \"additionalProperties\": + false\n },\n {\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", + \"enum\": [\"Ellipsoid\"] },\n \"name\": { \"type\": \"string\" + },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"inverse_flattening\": { \"type\": \"number\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", + \"inverse_flattening\" ],\n \"additionalProperties\": false\n },\n + \ {\n \"properties\": {\n \"$schema\" : { \"type\": + \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] + },\n \"name\": { \"type\": \"string\" },\n \"radius\": + { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"radius\" ],\n \"additionalProperties\": + false\n }\n ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ]\n },\n\n \"engineering_crs\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"EngineeringCRS\"] @@ -622,15 +644,16 @@ interactions: {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"GeodeticReferenceFrame\"] },\n \"name\": { \"type\": \"string\" - },\n \"anchor\": { \"type\": \"string\" },\n \"ellipsoid\": - { \"$ref\": \"#/definitions/ellipsoid\" },\n \"prime_meridian\": { - \"$ref\": \"#/definitions/prime_meridian\" },\n \"$schema\" : {},\n - \ \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": - {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": - {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", - \"ellipsoid\" ],\n \"additionalProperties\": false\n },\n\n \"geoid_model\": - {\n \"type\": \"object\",\n \"properties\": {\n \"name\": - { \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"anchor\": { \"type\": \"string\" },\n \"anchor_epoch\": + { \"type\": \"number\" },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + },\n \"prime_meridian\": { \"$ref\": \"#/definitions/prime_meridian\" + },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": {},\n + \ \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"ellipsoid\" ],\n + \ \"additionalProperties\": false\n },\n\n \"geoid_model\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"name\": { + \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"id\": { \"$ref\": \"#/definitions/id\" }\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n },\n\n \"id\": {\n \"type\": \"object\",\n \"properties\": {\n \"authority\": @@ -828,20 +851,21 @@ interactions: [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \ \"type\": { \"type\": \"string\", \"enum\": [\"VerticalReferenceFrame\"] },\n \"name\": { \"type\": \"string\" },\n \"anchor\": { \"type\": - \"string\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": - false\n }\n\n }\n}\n" + \"string\" },\n \"anchor_epoch\": { \"type\": \"number\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n + \ }\n\n }\n}\n" headers: Access-Control-Allow-Origin: - '*' Age: - - '3705' + - '2554' CF-Cache-Status: - HIT CF-Ray: - - 86ba48d8abff80df-EWR + - 9017be145ac2c979-IAD Cache-Control: - max-age=1200 Connection: @@ -849,13 +873,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:06 GMT + - Mon, 13 Jan 2025 19:20:14 GMT ETag: - - W/"567e3992b5fd3188af907a4cdc4781b3" + - W/"b36c7ce9824d274cfd711a16ef45d221" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=iHSPXuW7JEzIXBac0.lYcR9bavBpeDPdpwwe4HAR7eE-1736796014805-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -869,25 +896,29 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - 1ufqCJ2qGdKGbE87tYBwQtndKVSwHbcLpEby3bxHJlqYtAdgGfScAvivGRqV5s+1M2sox4ksL/s= + - +8oaMXBZJ/+vWMiewYsVzn+FnUSB5VSyadztloDbj3QV9HQFr2Pi89DOhbeAQI79LQMhn98I/fQ= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - 0BT16QCMDVF0MH3X + - ENTRRD75TQ0ERAS4 x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01d0d5755cbc43fe3 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - - /proxito/html/osgeo-proj/latest/schemas/v0.5/projjson.schema.json + - /proxito/html/osgeo-proj/latest/schemas/v0.7/projjson.schema.json x-rtd-project: - osgeo-proj x-rtd-project-method: - custom_domain x-rtd-resolver-filename: - - /schemas/v0.5/projjson.schema.json + - /schemas/v0.7/projjson.schema.json x-rtd-version: - latest x-rtd-version-method: diff --git a/tests/extensions/cassettes/test_projection/ProjectionTest.test_centroid.yaml b/tests/extensions/cassettes/test_projection/ProjectionTest.test_centroid.yaml index 4dbf18fae..f79f33e50 100644 --- a/tests/extensions/cassettes/test_projection/ProjectionTest.test_centroid.yaml +++ b/tests/extensions/cassettes/test_projection/ProjectionTest.test_centroid.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '23' + - '7' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:06 GMT + - Mon, 13 Jan 2025 19:20:14 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5ee7422489a41f415733ff421fd6fbac8866f91b + - e632430295f9473cc58ce4105e7958b1449b34c0 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18152-EWR + - cache-bos4684-BOS X-Timer: - - S1711656846.335464,VS0,VE1 + - S1736796015.922496,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '23' + - '6' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:06 GMT + - Mon, 13 Jan 2025 19:20:14 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -233,15 +233,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fadc72a0f8e8c4c7fa0e85f92ab87a76c4876d24 + - 73b25e44186978b7026d4c67e4f6276c6760bef3 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18126-EWR + - cache-bos4630-BOS X-Timer: - - S1711656846.415724,VS0,VE2 + - S1736796015.984245,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -259,7 +259,7 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/schemas/v0.5/projjson.schema.json + uri: https://proj.org/schemas/v0.7/projjson.schema.json response: body: string: '' @@ -267,11 +267,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '1162' CF-Cache-Status: - HIT CF-Ray: - - 86ba48daa8a641d8-EWR + - 9017be164e1e824b-IAD Cache-Control: - max-age=1200 Connection: @@ -283,11 +283,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:06 GMT + - Mon, 13 Jan 2025 19:20:15 GMT Location: - - https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + - https://proj.org/en/latest/schemas/v0.7/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=zqSWSRv0yuwCzsuOwU4ylN7CvrFM55nq1epBApE_kZs-1736796015147-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -301,11 +304,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-012abf2f2e58feea7 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -329,27 +334,32 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + uri: https://proj.org/en/latest/schemas/v0.7/projjson.schema.json response: body: - string: "{\n \"$id\": \"https://proj.org/schemas/v0.5/projjson.schema.json\",\n + string: "{\n \"$id\": \"https://proj.org/schemas/v0.7/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.5)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_DEFAULT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { - \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" - },\n \"parameters\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/parameter_value\" }\n },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"method\", \"parameters\" ],\n - \ \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + \"Schema for PROJJSON (v0.7)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2023, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_DEFAULT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" },\n { \"$ref\": \"#/definitions/coordinate_metadata\" + }\n ],\n\n \"definitions\": {\n\n \"abridged_transformation\": {\n \"type\": + \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" + },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] + },\n \"name\": { \"type\": \"string\" },\n \"source_crs\": {\n + \ \"$ref\": \"#/definitions/crs\",\n \"$comment\": \"Only + present when the source_crs of the bound_crs does not match the source_crs + of the AbridgedTransformation. No equivalent in WKT\"\n },\n \"method\": + { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": + \"array\",\n \"items\": { \"$ref\": \"#/definitions/parameter_value\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", + \"method\", \"parameters\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": false\n },\n\n \"axis\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": @@ -376,17 +386,20 @@ interactions: \ \"awayFrom\",\n \"future\",\n \ \"past\",\n \"unspecified\" ] },\n \"meridian\": { \"$ref\": \"#/definitions/meridian\" },\n \"unit\": - { \"$ref\": \"#/definitions/unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"abbreviation\", \"direction\" ],\n \"allOf\": [\n { - \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n },\n\n \"bbox\": {\n \"type\": \"object\",\n \"properties\": - {\n \"east_longitude\": { \"type\": \"number\" },\n \"west_longitude\": - { \"type\": \"number\" },\n \"south_latitude\": { \"type\": \"number\" - },\n \"north_latitude\": { \"type\": \"number\" }\n },\n \"required\" - : [ \"east_longitude\", \"west_longitude\",\n \"south_latitude\", - \"north_latitude\" ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": - {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" + { \"$ref\": \"#/definitions/unit\" },\n \"minimum_value\": { \"type\": + \"number\" },\n \"maximum_value\": { \"type\": \"number\" },\n \"range_meaning\": + { \"type\": \"string\", \"enum\": [ \"exact\", \"wraparound\"] },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"abbreviation\", \"direction\" + ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"bbox\": + {\n \"type\": \"object\",\n \"properties\": {\n \"east_longitude\": + { \"type\": \"number\" },\n \"west_longitude\": { \"type\": \"number\" + },\n \"south_latitude\": { \"type\": \"number\" },\n \"north_latitude\": + { \"type\": \"number\" }\n },\n \"required\" : [ \"east_longitude\", + \"west_longitude\",\n \"south_latitude\", \"north_latitude\" + ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": {\n + \ \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"BoundCRS\"] },\n \ \"name\": { \"type\": \"string\" },\n \"source_crs\": { \"$ref\": @@ -412,12 +425,13 @@ interactions: \ \"source_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"target_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"steps\": {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/single_operation\" - }\n },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\", \"source_crs\", \"target_crs\", - \"steps\" ],\n \"additionalProperties\": false\n },\n\n \"conversion\": - {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + }\n },\n \"accuracy\": { \"type\": \"string\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\", \"source_crs\", \"target_crs\", \"steps\" + ],\n \"additionalProperties\": false\n },\n\n \"conversion\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Conversion\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": @@ -425,48 +439,54 @@ interactions: }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"method\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" - }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": + }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_metadata\": + {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": + [\"CoordinateMetadata\"] },\n \"crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"coordinateEpoch\": { \"type\": \"number\" }\n },\n \"required\" + : [ \"crs\" ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"CoordinateSystem\"] },\n \"name\": { \"type\": \"string\" },\n \"subtype\": { \"type\": \"string\",\n \"enum\": [\"Cartesian\",\n \ \"spherical\",\n \"ellipsoidal\",\n \ \"vertical\",\n \"ordinal\",\n - \ \"parametric\",\n \"TemporalDateTime\",\n - \ \"TemporalCount\",\n \"TemporalMeasure\"] - \ },\n \"axis\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/axis\" }\n },\n \"id\": { \"$ref\": - \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"subtype\", \"axis\" ],\n \"allOf\": - [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n - \ \"additionalProperties\": false\n },\n\n \"crs\": {\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/bound_crs\" },\n { \"$ref\": - \"#/definitions/compound_crs\" },\n { \"$ref\": \"#/definitions/derived_engineering_crs\" - },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" },\n { - \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { \"$ref\": - \"#/definitions/derived_projected_crs\" },\n { \"$ref\": \"#/definitions/derived_temporal_crs\" - },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" },\n { - \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": \"#/definitions/geodetic_crs\" - },\n { \"$ref\": \"#/definitions/parametric_crs\" },\n { \"$ref\": - \"#/definitions/projected_crs\" },\n { \"$ref\": \"#/definitions/temporal_crs\" - },\n { \"$ref\": \"#/definitions/vertical_crs\" }\n ]\n },\n\n - \ \"datum\": {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/geodetic_reference_frame\" - },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": \"#/definitions/parametric_datum\" - },\n { \"$ref\": \"#/definitions/engineering_datum\" }\n ]\n },\n\n - \ \"datum_ensemble\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"DatumEnsemble\"] },\n \"name\": { \"type\": - \"string\" },\n \"members\": {\n \"type\": \"array\",\n - \ \"items\": {\n \"type\": \"object\",\n \"properties\": - {\n \"name\": { \"type\": \"string\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": - \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\" ],\n \"allOf\": [\n { \"$ref\": - \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n }\n },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + \ \"parametric\",\n \"affine\",\n + \ \"TemporalDateTime\",\n \"TemporalCount\",\n + \ \"TemporalMeasure\"] },\n \"axis\": + {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/axis\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"subtype\", + \"axis\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"crs\": + {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/bound_crs\" },\n + \ { \"$ref\": \"#/definitions/compound_crs\" },\n { \"$ref\": + \"#/definitions/derived_engineering_crs\" },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" + },\n { \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { + \"$ref\": \"#/definitions/derived_projected_crs\" },\n { \"$ref\": + \"#/definitions/derived_temporal_crs\" },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" + },\n { \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": + \"#/definitions/geodetic_crs\" },\n { \"$ref\": \"#/definitions/parametric_crs\" + },\n { \"$ref\": \"#/definitions/projected_crs\" },\n { \"$ref\": + \"#/definitions/temporal_crs\" },\n { \"$ref\": \"#/definitions/vertical_crs\" + }\n ]\n },\n\n \"datum\": {\n \"oneOf\": [\n { \"$ref\": + \"#/definitions/geodetic_reference_frame\" },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": + \"#/definitions/parametric_datum\" },\n { \"$ref\": \"#/definitions/engineering_datum\" + }\n ]\n },\n\n \"datum_ensemble\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n + \ \"type\": { \"type\": \"string\", \"enum\": [\"DatumEnsemble\"] },\n + \ \"name\": { \"type\": \"string\" },\n \"members\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"name\": { \"type\": + \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" + },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n + \ \"required\" : [ \"name\" ],\n \"allOf\": [\n + \ { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n }\n + \ },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" },\n \"accuracy\": { \"type\": \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"members\", \"accuracy\" ],\n @@ -546,9 +566,9 @@ interactions: \ \"dynamic_geodetic_reference_frame\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicGeodeticReferenceFrame\"] - },\n \"name\": {},\n \"anchor\": {},\n \"ellipsoid\": - {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": { - \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n + },\n \"name\": {},\n \"anchor\": {},\n \"anchor_epoch\": + {},\n \"ellipsoid\": {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": + { \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \ \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", @@ -557,35 +577,35 @@ interactions: \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicVerticalReferenceFrame\"] },\n \"name\": {},\n \"anchor\": - {},\n \"frame_reference_epoch\": { \"type\": \"number\" },\n \"$schema\" - : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n - \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": - {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n - \ \"required\" : [ \"name\", \"frame_reference_epoch\" ],\n \"additionalProperties\": - false\n },\n\n \"ellipsoid\": {\n \"type\": \"object\",\n \"oneOf\":[\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"semi_minor_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", - \"semi_minor_axis\" ],\n \"additionalProperties\": false\n },\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"inverse_flattening\": - { \"type\": \"number\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n - \ \"required\" : [ \"name\", \"semi_major_axis\", \"inverse_flattening\" - ],\n \"additionalProperties\": false\n },\n {\n \"properties\": + {},\n \"anchor_epoch\": {},\n \"frame_reference_epoch\": { \"type\": + \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": + {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"frame_reference_epoch\" + ],\n \"additionalProperties\": false\n },\n\n \"ellipsoid\": {\n + \ \"type\": \"object\",\n \"oneOf\":[\n {\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] },\n \"name\": - { \"type\": \"string\" },\n \"radius\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + { \"type\": \"string\" },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"semi_minor_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"radius\" ],\n \"additionalProperties\": false\n }\n - \ ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + : [ \"name\", \"semi_major_axis\", \"semi_minor_axis\" ],\n \"additionalProperties\": + false\n },\n {\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", + \"enum\": [\"Ellipsoid\"] },\n \"name\": { \"type\": \"string\" + },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"inverse_flattening\": { \"type\": \"number\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", + \"inverse_flattening\" ],\n \"additionalProperties\": false\n },\n + \ {\n \"properties\": {\n \"$schema\" : { \"type\": + \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] + },\n \"name\": { \"type\": \"string\" },\n \"radius\": + { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"radius\" ],\n \"additionalProperties\": + false\n }\n ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ]\n },\n\n \"engineering_crs\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"EngineeringCRS\"] @@ -624,15 +644,16 @@ interactions: {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"GeodeticReferenceFrame\"] },\n \"name\": { \"type\": \"string\" - },\n \"anchor\": { \"type\": \"string\" },\n \"ellipsoid\": - { \"$ref\": \"#/definitions/ellipsoid\" },\n \"prime_meridian\": { - \"$ref\": \"#/definitions/prime_meridian\" },\n \"$schema\" : {},\n - \ \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": - {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": - {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", - \"ellipsoid\" ],\n \"additionalProperties\": false\n },\n\n \"geoid_model\": - {\n \"type\": \"object\",\n \"properties\": {\n \"name\": - { \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"anchor\": { \"type\": \"string\" },\n \"anchor_epoch\": + { \"type\": \"number\" },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + },\n \"prime_meridian\": { \"$ref\": \"#/definitions/prime_meridian\" + },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": {},\n + \ \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"ellipsoid\" ],\n + \ \"additionalProperties\": false\n },\n\n \"geoid_model\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"name\": { + \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"id\": { \"$ref\": \"#/definitions/id\" }\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n },\n\n \"id\": {\n \"type\": \"object\",\n \"properties\": {\n \"authority\": @@ -830,20 +851,21 @@ interactions: [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \ \"type\": { \"type\": \"string\", \"enum\": [\"VerticalReferenceFrame\"] },\n \"name\": { \"type\": \"string\" },\n \"anchor\": { \"type\": - \"string\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": - false\n }\n\n }\n}\n" + \"string\" },\n \"anchor_epoch\": { \"type\": \"number\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n + \ }\n\n }\n}\n" headers: Access-Control-Allow-Origin: - '*' Age: - - '3705' + - '2555' CF-Cache-Status: - HIT CF-Ray: - - 86ba48db5ba97cf0-EWR + - 9017be1749e4e5b2-IAD Cache-Control: - max-age=1200 Connection: @@ -851,13 +873,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:06 GMT + - Mon, 13 Jan 2025 19:20:15 GMT ETag: - - W/"567e3992b5fd3188af907a4cdc4781b3" + - W/"b36c7ce9824d274cfd711a16ef45d221" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=wj5BXvDIBUld.BzFnpkGVgaDaA8tgvmd2WsIRhkN1zY-1736796015271-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -871,25 +896,29 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - 1ufqCJ2qGdKGbE87tYBwQtndKVSwHbcLpEby3bxHJlqYtAdgGfScAvivGRqV5s+1M2sox4ksL/s= + - +8oaMXBZJ/+vWMiewYsVzn+FnUSB5VSyadztloDbj3QV9HQFr2Pi89DOhbeAQI79LQMhn98I/fQ= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - 0BT16QCMDVF0MH3X + - ENTRRD75TQ0ERAS4 x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01d0d5755cbc43fe3 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - - /proxito/html/osgeo-proj/latest/schemas/v0.5/projjson.schema.json + - /proxito/html/osgeo-proj/latest/schemas/v0.7/projjson.schema.json x-rtd-project: - osgeo-proj x-rtd-project-method: - custom_domain x-rtd-resolver-filename: - - /schemas/v0.5/projjson.schema.json + - /schemas/v0.7/projjson.schema.json x-rtd-version: - latest x-rtd-version-method: diff --git a/tests/extensions/cassettes/test_projection/ProjectionTest.test_epsg.yaml b/tests/extensions/cassettes/test_projection/ProjectionTest.test_epsg.yaml index 114c210c8..53a3763a6 100644 --- a/tests/extensions/cassettes/test_projection/ProjectionTest.test_epsg.yaml +++ b/tests/extensions/cassettes/test_projection/ProjectionTest.test_epsg.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '24' + - '7' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:06 GMT + - Mon, 13 Jan 2025 19:20:15 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 400510037dbd5b040adae31b4f6f0421d96e9d1f + - 0cee5a2bbcca70f2b6550a12c2ef8a45daa02316 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18145-EWR + - cache-bos4633-BOS X-Timer: - - S1711656847.816095,VS0,VE1 + - S1736796015.452272,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '24' + - '7' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:06 GMT + - Mon, 13 Jan 2025 19:20:15 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -233,15 +233,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0f67b7cc706b714c20ec339a13a5bee879a6636f + - 6c725a9cb0136e6191b5dc4770e86610c45da8ec X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18137-EWR + - cache-bos4671-BOS X-Timer: - - S1711656847.896067,VS0,VE2 + - S1736796016.534871,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -259,7 +259,7 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/schemas/v0.5/projjson.schema.json + uri: https://proj.org/schemas/v0.7/projjson.schema.json response: body: string: '' @@ -267,11 +267,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '1162' CF-Cache-Status: - HIT CF-Ray: - - 86ba48dda8cd41df-EWR + - 9017be19c818c9ac-IAD Cache-Control: - max-age=1200 Connection: @@ -283,11 +283,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:07 GMT + - Mon, 13 Jan 2025 19:20:15 GMT Location: - - https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + - https://proj.org/en/latest/schemas/v0.7/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=XbPWGMbL9s2fszrP5ngauunflxrN.wP59mBxoJA6rhs-1736796015667-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -301,11 +304,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-012abf2f2e58feea7 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -329,27 +334,32 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + uri: https://proj.org/en/latest/schemas/v0.7/projjson.schema.json response: body: - string: "{\n \"$id\": \"https://proj.org/schemas/v0.5/projjson.schema.json\",\n + string: "{\n \"$id\": \"https://proj.org/schemas/v0.7/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.5)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_DEFAULT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { - \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" - },\n \"parameters\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/parameter_value\" }\n },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"method\", \"parameters\" ],\n - \ \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + \"Schema for PROJJSON (v0.7)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2023, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_DEFAULT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" },\n { \"$ref\": \"#/definitions/coordinate_metadata\" + }\n ],\n\n \"definitions\": {\n\n \"abridged_transformation\": {\n \"type\": + \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" + },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] + },\n \"name\": { \"type\": \"string\" },\n \"source_crs\": {\n + \ \"$ref\": \"#/definitions/crs\",\n \"$comment\": \"Only + present when the source_crs of the bound_crs does not match the source_crs + of the AbridgedTransformation. No equivalent in WKT\"\n },\n \"method\": + { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": + \"array\",\n \"items\": { \"$ref\": \"#/definitions/parameter_value\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", + \"method\", \"parameters\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": false\n },\n\n \"axis\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": @@ -376,17 +386,20 @@ interactions: \ \"awayFrom\",\n \"future\",\n \ \"past\",\n \"unspecified\" ] },\n \"meridian\": { \"$ref\": \"#/definitions/meridian\" },\n \"unit\": - { \"$ref\": \"#/definitions/unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"abbreviation\", \"direction\" ],\n \"allOf\": [\n { - \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n },\n\n \"bbox\": {\n \"type\": \"object\",\n \"properties\": - {\n \"east_longitude\": { \"type\": \"number\" },\n \"west_longitude\": - { \"type\": \"number\" },\n \"south_latitude\": { \"type\": \"number\" - },\n \"north_latitude\": { \"type\": \"number\" }\n },\n \"required\" - : [ \"east_longitude\", \"west_longitude\",\n \"south_latitude\", - \"north_latitude\" ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": - {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" + { \"$ref\": \"#/definitions/unit\" },\n \"minimum_value\": { \"type\": + \"number\" },\n \"maximum_value\": { \"type\": \"number\" },\n \"range_meaning\": + { \"type\": \"string\", \"enum\": [ \"exact\", \"wraparound\"] },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"abbreviation\", \"direction\" + ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"bbox\": + {\n \"type\": \"object\",\n \"properties\": {\n \"east_longitude\": + { \"type\": \"number\" },\n \"west_longitude\": { \"type\": \"number\" + },\n \"south_latitude\": { \"type\": \"number\" },\n \"north_latitude\": + { \"type\": \"number\" }\n },\n \"required\" : [ \"east_longitude\", + \"west_longitude\",\n \"south_latitude\", \"north_latitude\" + ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": {\n + \ \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"BoundCRS\"] },\n \ \"name\": { \"type\": \"string\" },\n \"source_crs\": { \"$ref\": @@ -412,12 +425,13 @@ interactions: \ \"source_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"target_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"steps\": {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/single_operation\" - }\n },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\", \"source_crs\", \"target_crs\", - \"steps\" ],\n \"additionalProperties\": false\n },\n\n \"conversion\": - {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + }\n },\n \"accuracy\": { \"type\": \"string\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\", \"source_crs\", \"target_crs\", \"steps\" + ],\n \"additionalProperties\": false\n },\n\n \"conversion\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Conversion\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": @@ -425,48 +439,54 @@ interactions: }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"method\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" - }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": + }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_metadata\": + {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": + [\"CoordinateMetadata\"] },\n \"crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"coordinateEpoch\": { \"type\": \"number\" }\n },\n \"required\" + : [ \"crs\" ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"CoordinateSystem\"] },\n \"name\": { \"type\": \"string\" },\n \"subtype\": { \"type\": \"string\",\n \"enum\": [\"Cartesian\",\n \ \"spherical\",\n \"ellipsoidal\",\n \ \"vertical\",\n \"ordinal\",\n - \ \"parametric\",\n \"TemporalDateTime\",\n - \ \"TemporalCount\",\n \"TemporalMeasure\"] - \ },\n \"axis\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/axis\" }\n },\n \"id\": { \"$ref\": - \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"subtype\", \"axis\" ],\n \"allOf\": - [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n - \ \"additionalProperties\": false\n },\n\n \"crs\": {\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/bound_crs\" },\n { \"$ref\": - \"#/definitions/compound_crs\" },\n { \"$ref\": \"#/definitions/derived_engineering_crs\" - },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" },\n { - \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { \"$ref\": - \"#/definitions/derived_projected_crs\" },\n { \"$ref\": \"#/definitions/derived_temporal_crs\" - },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" },\n { - \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": \"#/definitions/geodetic_crs\" - },\n { \"$ref\": \"#/definitions/parametric_crs\" },\n { \"$ref\": - \"#/definitions/projected_crs\" },\n { \"$ref\": \"#/definitions/temporal_crs\" - },\n { \"$ref\": \"#/definitions/vertical_crs\" }\n ]\n },\n\n - \ \"datum\": {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/geodetic_reference_frame\" - },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": \"#/definitions/parametric_datum\" - },\n { \"$ref\": \"#/definitions/engineering_datum\" }\n ]\n },\n\n - \ \"datum_ensemble\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"DatumEnsemble\"] },\n \"name\": { \"type\": - \"string\" },\n \"members\": {\n \"type\": \"array\",\n - \ \"items\": {\n \"type\": \"object\",\n \"properties\": - {\n \"name\": { \"type\": \"string\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": - \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\" ],\n \"allOf\": [\n { \"$ref\": - \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n }\n },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + \ \"parametric\",\n \"affine\",\n + \ \"TemporalDateTime\",\n \"TemporalCount\",\n + \ \"TemporalMeasure\"] },\n \"axis\": + {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/axis\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"subtype\", + \"axis\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"crs\": + {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/bound_crs\" },\n + \ { \"$ref\": \"#/definitions/compound_crs\" },\n { \"$ref\": + \"#/definitions/derived_engineering_crs\" },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" + },\n { \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { + \"$ref\": \"#/definitions/derived_projected_crs\" },\n { \"$ref\": + \"#/definitions/derived_temporal_crs\" },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" + },\n { \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": + \"#/definitions/geodetic_crs\" },\n { \"$ref\": \"#/definitions/parametric_crs\" + },\n { \"$ref\": \"#/definitions/projected_crs\" },\n { \"$ref\": + \"#/definitions/temporal_crs\" },\n { \"$ref\": \"#/definitions/vertical_crs\" + }\n ]\n },\n\n \"datum\": {\n \"oneOf\": [\n { \"$ref\": + \"#/definitions/geodetic_reference_frame\" },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": + \"#/definitions/parametric_datum\" },\n { \"$ref\": \"#/definitions/engineering_datum\" + }\n ]\n },\n\n \"datum_ensemble\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n + \ \"type\": { \"type\": \"string\", \"enum\": [\"DatumEnsemble\"] },\n + \ \"name\": { \"type\": \"string\" },\n \"members\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"name\": { \"type\": + \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" + },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n + \ \"required\" : [ \"name\" ],\n \"allOf\": [\n + \ { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n }\n + \ },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" },\n \"accuracy\": { \"type\": \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"members\", \"accuracy\" ],\n @@ -546,9 +566,9 @@ interactions: \ \"dynamic_geodetic_reference_frame\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicGeodeticReferenceFrame\"] - },\n \"name\": {},\n \"anchor\": {},\n \"ellipsoid\": - {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": { - \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n + },\n \"name\": {},\n \"anchor\": {},\n \"anchor_epoch\": + {},\n \"ellipsoid\": {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": + { \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \ \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", @@ -557,35 +577,35 @@ interactions: \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicVerticalReferenceFrame\"] },\n \"name\": {},\n \"anchor\": - {},\n \"frame_reference_epoch\": { \"type\": \"number\" },\n \"$schema\" - : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n - \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": - {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n - \ \"required\" : [ \"name\", \"frame_reference_epoch\" ],\n \"additionalProperties\": - false\n },\n\n \"ellipsoid\": {\n \"type\": \"object\",\n \"oneOf\":[\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"semi_minor_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", - \"semi_minor_axis\" ],\n \"additionalProperties\": false\n },\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"inverse_flattening\": - { \"type\": \"number\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n - \ \"required\" : [ \"name\", \"semi_major_axis\", \"inverse_flattening\" - ],\n \"additionalProperties\": false\n },\n {\n \"properties\": + {},\n \"anchor_epoch\": {},\n \"frame_reference_epoch\": { \"type\": + \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": + {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"frame_reference_epoch\" + ],\n \"additionalProperties\": false\n },\n\n \"ellipsoid\": {\n + \ \"type\": \"object\",\n \"oneOf\":[\n {\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] },\n \"name\": - { \"type\": \"string\" },\n \"radius\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + { \"type\": \"string\" },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"semi_minor_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"radius\" ],\n \"additionalProperties\": false\n }\n - \ ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + : [ \"name\", \"semi_major_axis\", \"semi_minor_axis\" ],\n \"additionalProperties\": + false\n },\n {\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", + \"enum\": [\"Ellipsoid\"] },\n \"name\": { \"type\": \"string\" + },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"inverse_flattening\": { \"type\": \"number\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", + \"inverse_flattening\" ],\n \"additionalProperties\": false\n },\n + \ {\n \"properties\": {\n \"$schema\" : { \"type\": + \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] + },\n \"name\": { \"type\": \"string\" },\n \"radius\": + { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"radius\" ],\n \"additionalProperties\": + false\n }\n ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ]\n },\n\n \"engineering_crs\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"EngineeringCRS\"] @@ -624,15 +644,16 @@ interactions: {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"GeodeticReferenceFrame\"] },\n \"name\": { \"type\": \"string\" - },\n \"anchor\": { \"type\": \"string\" },\n \"ellipsoid\": - { \"$ref\": \"#/definitions/ellipsoid\" },\n \"prime_meridian\": { - \"$ref\": \"#/definitions/prime_meridian\" },\n \"$schema\" : {},\n - \ \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": - {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": - {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", - \"ellipsoid\" ],\n \"additionalProperties\": false\n },\n\n \"geoid_model\": - {\n \"type\": \"object\",\n \"properties\": {\n \"name\": - { \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"anchor\": { \"type\": \"string\" },\n \"anchor_epoch\": + { \"type\": \"number\" },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + },\n \"prime_meridian\": { \"$ref\": \"#/definitions/prime_meridian\" + },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": {},\n + \ \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"ellipsoid\" ],\n + \ \"additionalProperties\": false\n },\n\n \"geoid_model\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"name\": { + \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"id\": { \"$ref\": \"#/definitions/id\" }\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n },\n\n \"id\": {\n \"type\": \"object\",\n \"properties\": {\n \"authority\": @@ -830,20 +851,21 @@ interactions: [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \ \"type\": { \"type\": \"string\", \"enum\": [\"VerticalReferenceFrame\"] },\n \"name\": { \"type\": \"string\" },\n \"anchor\": { \"type\": - \"string\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": - false\n }\n\n }\n}\n" + \"string\" },\n \"anchor_epoch\": { \"type\": \"number\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n + \ }\n\n }\n}\n" headers: Access-Control-Allow-Origin: - '*' Age: - - '3706' + - '2555' CF-Cache-Status: - HIT CF-Ray: - - 86ba48de6bc14405-EWR + - 9017be1a9fa0d69d-IAD Cache-Control: - max-age=1200 Connection: @@ -851,13 +873,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:07 GMT + - Mon, 13 Jan 2025 19:20:15 GMT ETag: - - W/"567e3992b5fd3188af907a4cdc4781b3" + - W/"b36c7ce9824d274cfd711a16ef45d221" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=HE7sTohCPi.EBC1ffkIJRkaPgwGSZlDTtSrqpM3vlfk-1736796015796-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -871,25 +896,29 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - 1ufqCJ2qGdKGbE87tYBwQtndKVSwHbcLpEby3bxHJlqYtAdgGfScAvivGRqV5s+1M2sox4ksL/s= + - +8oaMXBZJ/+vWMiewYsVzn+FnUSB5VSyadztloDbj3QV9HQFr2Pi89DOhbeAQI79LQMhn98I/fQ= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - 0BT16QCMDVF0MH3X + - ENTRRD75TQ0ERAS4 x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01d0d5755cbc43fe3 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - - /proxito/html/osgeo-proj/latest/schemas/v0.5/projjson.schema.json + - /proxito/html/osgeo-proj/latest/schemas/v0.7/projjson.schema.json x-rtd-project: - osgeo-proj x-rtd-project-method: - custom_domain x-rtd-resolver-filename: - - /schemas/v0.5/projjson.schema.json + - /schemas/v0.7/projjson.schema.json x-rtd-version: - latest x-rtd-version-method: diff --git a/tests/extensions/cassettes/test_projection/ProjectionTest.test_geometry.yaml b/tests/extensions/cassettes/test_projection/ProjectionTest.test_geometry.yaml index 51c884254..339e19cb9 100644 --- a/tests/extensions/cassettes/test_projection/ProjectionTest.test_geometry.yaml +++ b/tests/extensions/cassettes/test_projection/ProjectionTest.test_geometry.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '25' + - '8' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:07 GMT + - Mon, 13 Jan 2025 19:20:15 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -111,17 +111,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 5be70b041ac247a18d2b9527a0a849fe81ba9831 + - dcfbb2d1c737f96213f0713bbc26d33bf0c95cae X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18159-EWR + - cache-bos4672-BOS X-Timer: - - S1711656847.243622,VS0,VE1 + - S1736796016.918544,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '24' + - '7' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:07 GMT + - Mon, 13 Jan 2025 19:20:15 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -233,15 +233,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3504e81717ae4bdea1cf0d88f21e9ac81ad6dfb1 + - 84c223e688dc3dbb64f96eca23b1aa5c49f9f166 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18162-EWR + - cache-bos4674-BOS X-Timer: - - S1711656847.323730,VS0,VE2 + - S1736796016.984556,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -259,7 +259,7 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/schemas/v0.5/projjson.schema.json + uri: https://proj.org/schemas/v0.7/projjson.schema.json response: body: string: '' @@ -267,11 +267,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '1163' CF-Cache-Status: - HIT CF-Ray: - - 86ba48e04f508c18-EWR + - 9017be1c8b86d643-IAD Cache-Control: - max-age=1200 Connection: @@ -283,11 +283,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:07 GMT + - Mon, 13 Jan 2025 19:20:16 GMT Location: - - https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + - https://proj.org/en/latest/schemas/v0.7/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=Dz9svfecl3nETwP4ODs19igwhQuhAhs2_AEV1YcOkNw-1736796016116-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -301,11 +304,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-012abf2f2e58feea7 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -329,27 +334,32 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + uri: https://proj.org/en/latest/schemas/v0.7/projjson.schema.json response: body: - string: "{\n \"$id\": \"https://proj.org/schemas/v0.5/projjson.schema.json\",\n + string: "{\n \"$id\": \"https://proj.org/schemas/v0.7/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.5)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_DEFAULT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { - \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" - },\n \"parameters\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/parameter_value\" }\n },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"method\", \"parameters\" ],\n - \ \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + \"Schema for PROJJSON (v0.7)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2023, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_DEFAULT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" },\n { \"$ref\": \"#/definitions/coordinate_metadata\" + }\n ],\n\n \"definitions\": {\n\n \"abridged_transformation\": {\n \"type\": + \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" + },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] + },\n \"name\": { \"type\": \"string\" },\n \"source_crs\": {\n + \ \"$ref\": \"#/definitions/crs\",\n \"$comment\": \"Only + present when the source_crs of the bound_crs does not match the source_crs + of the AbridgedTransformation. No equivalent in WKT\"\n },\n \"method\": + { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": + \"array\",\n \"items\": { \"$ref\": \"#/definitions/parameter_value\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", + \"method\", \"parameters\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": false\n },\n\n \"axis\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": @@ -376,17 +386,20 @@ interactions: \ \"awayFrom\",\n \"future\",\n \ \"past\",\n \"unspecified\" ] },\n \"meridian\": { \"$ref\": \"#/definitions/meridian\" },\n \"unit\": - { \"$ref\": \"#/definitions/unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"abbreviation\", \"direction\" ],\n \"allOf\": [\n { - \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n },\n\n \"bbox\": {\n \"type\": \"object\",\n \"properties\": - {\n \"east_longitude\": { \"type\": \"number\" },\n \"west_longitude\": - { \"type\": \"number\" },\n \"south_latitude\": { \"type\": \"number\" - },\n \"north_latitude\": { \"type\": \"number\" }\n },\n \"required\" - : [ \"east_longitude\", \"west_longitude\",\n \"south_latitude\", - \"north_latitude\" ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": - {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" + { \"$ref\": \"#/definitions/unit\" },\n \"minimum_value\": { \"type\": + \"number\" },\n \"maximum_value\": { \"type\": \"number\" },\n \"range_meaning\": + { \"type\": \"string\", \"enum\": [ \"exact\", \"wraparound\"] },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"abbreviation\", \"direction\" + ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"bbox\": + {\n \"type\": \"object\",\n \"properties\": {\n \"east_longitude\": + { \"type\": \"number\" },\n \"west_longitude\": { \"type\": \"number\" + },\n \"south_latitude\": { \"type\": \"number\" },\n \"north_latitude\": + { \"type\": \"number\" }\n },\n \"required\" : [ \"east_longitude\", + \"west_longitude\",\n \"south_latitude\", \"north_latitude\" + ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": {\n + \ \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"BoundCRS\"] },\n \ \"name\": { \"type\": \"string\" },\n \"source_crs\": { \"$ref\": @@ -412,12 +425,13 @@ interactions: \ \"source_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"target_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"steps\": {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/single_operation\" - }\n },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\", \"source_crs\", \"target_crs\", - \"steps\" ],\n \"additionalProperties\": false\n },\n\n \"conversion\": - {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + }\n },\n \"accuracy\": { \"type\": \"string\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\", \"source_crs\", \"target_crs\", \"steps\" + ],\n \"additionalProperties\": false\n },\n\n \"conversion\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Conversion\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": @@ -425,48 +439,54 @@ interactions: }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"method\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" - }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": + }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_metadata\": + {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": + [\"CoordinateMetadata\"] },\n \"crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"coordinateEpoch\": { \"type\": \"number\" }\n },\n \"required\" + : [ \"crs\" ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"CoordinateSystem\"] },\n \"name\": { \"type\": \"string\" },\n \"subtype\": { \"type\": \"string\",\n \"enum\": [\"Cartesian\",\n \ \"spherical\",\n \"ellipsoidal\",\n \ \"vertical\",\n \"ordinal\",\n - \ \"parametric\",\n \"TemporalDateTime\",\n - \ \"TemporalCount\",\n \"TemporalMeasure\"] - \ },\n \"axis\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/axis\" }\n },\n \"id\": { \"$ref\": - \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"subtype\", \"axis\" ],\n \"allOf\": - [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n - \ \"additionalProperties\": false\n },\n\n \"crs\": {\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/bound_crs\" },\n { \"$ref\": - \"#/definitions/compound_crs\" },\n { \"$ref\": \"#/definitions/derived_engineering_crs\" - },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" },\n { - \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { \"$ref\": - \"#/definitions/derived_projected_crs\" },\n { \"$ref\": \"#/definitions/derived_temporal_crs\" - },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" },\n { - \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": \"#/definitions/geodetic_crs\" - },\n { \"$ref\": \"#/definitions/parametric_crs\" },\n { \"$ref\": - \"#/definitions/projected_crs\" },\n { \"$ref\": \"#/definitions/temporal_crs\" - },\n { \"$ref\": \"#/definitions/vertical_crs\" }\n ]\n },\n\n - \ \"datum\": {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/geodetic_reference_frame\" - },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": \"#/definitions/parametric_datum\" - },\n { \"$ref\": \"#/definitions/engineering_datum\" }\n ]\n },\n\n - \ \"datum_ensemble\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"DatumEnsemble\"] },\n \"name\": { \"type\": - \"string\" },\n \"members\": {\n \"type\": \"array\",\n - \ \"items\": {\n \"type\": \"object\",\n \"properties\": - {\n \"name\": { \"type\": \"string\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": - \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\" ],\n \"allOf\": [\n { \"$ref\": - \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n }\n },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + \ \"parametric\",\n \"affine\",\n + \ \"TemporalDateTime\",\n \"TemporalCount\",\n + \ \"TemporalMeasure\"] },\n \"axis\": + {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/axis\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"subtype\", + \"axis\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"crs\": + {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/bound_crs\" },\n + \ { \"$ref\": \"#/definitions/compound_crs\" },\n { \"$ref\": + \"#/definitions/derived_engineering_crs\" },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" + },\n { \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { + \"$ref\": \"#/definitions/derived_projected_crs\" },\n { \"$ref\": + \"#/definitions/derived_temporal_crs\" },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" + },\n { \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": + \"#/definitions/geodetic_crs\" },\n { \"$ref\": \"#/definitions/parametric_crs\" + },\n { \"$ref\": \"#/definitions/projected_crs\" },\n { \"$ref\": + \"#/definitions/temporal_crs\" },\n { \"$ref\": \"#/definitions/vertical_crs\" + }\n ]\n },\n\n \"datum\": {\n \"oneOf\": [\n { \"$ref\": + \"#/definitions/geodetic_reference_frame\" },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": + \"#/definitions/parametric_datum\" },\n { \"$ref\": \"#/definitions/engineering_datum\" + }\n ]\n },\n\n \"datum_ensemble\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n + \ \"type\": { \"type\": \"string\", \"enum\": [\"DatumEnsemble\"] },\n + \ \"name\": { \"type\": \"string\" },\n \"members\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"name\": { \"type\": + \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" + },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n + \ \"required\" : [ \"name\" ],\n \"allOf\": [\n + \ { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n }\n + \ },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" },\n \"accuracy\": { \"type\": \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"members\", \"accuracy\" ],\n @@ -546,9 +566,9 @@ interactions: \ \"dynamic_geodetic_reference_frame\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicGeodeticReferenceFrame\"] - },\n \"name\": {},\n \"anchor\": {},\n \"ellipsoid\": - {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": { - \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n + },\n \"name\": {},\n \"anchor\": {},\n \"anchor_epoch\": + {},\n \"ellipsoid\": {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": + { \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \ \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", @@ -557,35 +577,35 @@ interactions: \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicVerticalReferenceFrame\"] },\n \"name\": {},\n \"anchor\": - {},\n \"frame_reference_epoch\": { \"type\": \"number\" },\n \"$schema\" - : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n - \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": - {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n - \ \"required\" : [ \"name\", \"frame_reference_epoch\" ],\n \"additionalProperties\": - false\n },\n\n \"ellipsoid\": {\n \"type\": \"object\",\n \"oneOf\":[\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"semi_minor_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", - \"semi_minor_axis\" ],\n \"additionalProperties\": false\n },\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"inverse_flattening\": - { \"type\": \"number\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n - \ \"required\" : [ \"name\", \"semi_major_axis\", \"inverse_flattening\" - ],\n \"additionalProperties\": false\n },\n {\n \"properties\": + {},\n \"anchor_epoch\": {},\n \"frame_reference_epoch\": { \"type\": + \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": + {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"frame_reference_epoch\" + ],\n \"additionalProperties\": false\n },\n\n \"ellipsoid\": {\n + \ \"type\": \"object\",\n \"oneOf\":[\n {\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] },\n \"name\": - { \"type\": \"string\" },\n \"radius\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + { \"type\": \"string\" },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"semi_minor_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"radius\" ],\n \"additionalProperties\": false\n }\n - \ ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + : [ \"name\", \"semi_major_axis\", \"semi_minor_axis\" ],\n \"additionalProperties\": + false\n },\n {\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", + \"enum\": [\"Ellipsoid\"] },\n \"name\": { \"type\": \"string\" + },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"inverse_flattening\": { \"type\": \"number\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", + \"inverse_flattening\" ],\n \"additionalProperties\": false\n },\n + \ {\n \"properties\": {\n \"$schema\" : { \"type\": + \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] + },\n \"name\": { \"type\": \"string\" },\n \"radius\": + { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"radius\" ],\n \"additionalProperties\": + false\n }\n ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ]\n },\n\n \"engineering_crs\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"EngineeringCRS\"] @@ -624,15 +644,16 @@ interactions: {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"GeodeticReferenceFrame\"] },\n \"name\": { \"type\": \"string\" - },\n \"anchor\": { \"type\": \"string\" },\n \"ellipsoid\": - { \"$ref\": \"#/definitions/ellipsoid\" },\n \"prime_meridian\": { - \"$ref\": \"#/definitions/prime_meridian\" },\n \"$schema\" : {},\n - \ \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": - {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": - {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", - \"ellipsoid\" ],\n \"additionalProperties\": false\n },\n\n \"geoid_model\": - {\n \"type\": \"object\",\n \"properties\": {\n \"name\": - { \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"anchor\": { \"type\": \"string\" },\n \"anchor_epoch\": + { \"type\": \"number\" },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + },\n \"prime_meridian\": { \"$ref\": \"#/definitions/prime_meridian\" + },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": {},\n + \ \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"ellipsoid\" ],\n + \ \"additionalProperties\": false\n },\n\n \"geoid_model\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"name\": { + \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"id\": { \"$ref\": \"#/definitions/id\" }\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n },\n\n \"id\": {\n \"type\": \"object\",\n \"properties\": {\n \"authority\": @@ -830,20 +851,21 @@ interactions: [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \ \"type\": { \"type\": \"string\", \"enum\": [\"VerticalReferenceFrame\"] },\n \"name\": { \"type\": \"string\" },\n \"anchor\": { \"type\": - \"string\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": - false\n }\n\n }\n}\n" + \"string\" },\n \"anchor_epoch\": { \"type\": \"number\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n + \ }\n\n }\n}\n" headers: Access-Control-Allow-Origin: - '*' Age: - - '3706' + - '2556' CF-Cache-Status: - HIT CF-Ray: - - 86ba48e0eadc43c9-EWR + - 9017be1d7bdf818b-IAD Cache-Control: - max-age=1200 Connection: @@ -851,13 +873,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:07 GMT + - Mon, 13 Jan 2025 19:20:16 GMT ETag: - - W/"567e3992b5fd3188af907a4cdc4781b3" + - W/"b36c7ce9824d274cfd711a16ef45d221" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=1FVaCHxRJJe9BC0b3qgfSQ45w1rufm0Rxb_oHrZSkYI-1736796016267-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -871,25 +896,29 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - 1ufqCJ2qGdKGbE87tYBwQtndKVSwHbcLpEby3bxHJlqYtAdgGfScAvivGRqV5s+1M2sox4ksL/s= + - +8oaMXBZJ/+vWMiewYsVzn+FnUSB5VSyadztloDbj3QV9HQFr2Pi89DOhbeAQI79LQMhn98I/fQ= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - 0BT16QCMDVF0MH3X + - ENTRRD75TQ0ERAS4 x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01d0d5755cbc43fe3 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - - /proxito/html/osgeo-proj/latest/schemas/v0.5/projjson.schema.json + - /proxito/html/osgeo-proj/latest/schemas/v0.7/projjson.schema.json x-rtd-project: - osgeo-proj x-rtd-project-method: - custom_domain x-rtd-resolver-filename: - - /schemas/v0.5/projjson.schema.json + - /schemas/v0.7/projjson.schema.json x-rtd-version: - latest x-rtd-version-method: diff --git a/tests/extensions/cassettes/test_projection/ProjectionTest.test_partial_apply.yaml b/tests/extensions/cassettes/test_projection/ProjectionTest.test_partial_apply.yaml index 354095f66..e5632fd36 100644 --- a/tests/extensions/cassettes/test_projection/ProjectionTest.test_partial_apply.yaml +++ b/tests/extensions/cassettes/test_projection/ProjectionTest.test_partial_apply.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '25' + - '8' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:07 GMT + - Mon, 13 Jan 2025 19:20:16 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -111,17 +111,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '16' + - '2' X-Fastly-Request-ID: - - 4824404f7cf6c49ef1b356266349f5c857bdb62c + - 68fb83d352f1f2a31b1187a9e1be06189d7e64ba X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18183-EWR + - cache-bos4621-BOS X-Timer: - - S1711656848.724556,VS0,VE1 + - S1736796016.468151,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '25' + - '8' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:07 GMT + - Mon, 13 Jan 2025 19:20:16 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -233,15 +233,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9e1a5c1a45864f8ad70555639c3311739ea88d15 + - 7ce8454621c976f0eec02829cddde642422d945a X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18181-EWR + - cache-bos4683-BOS X-Timer: - - S1711656848.815718,VS0,VE1 + - S1736796017.540275,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -259,7 +259,7 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/schemas/v0.5/projjson.schema.json + uri: https://proj.org/schemas/v0.7/projjson.schema.json response: body: string: '' @@ -267,11 +267,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '1163' CF-Cache-Status: - HIT CF-Ray: - - 86ba48e37fc019cf-EWR + - 9017be200a593b7e-IAD Cache-Control: - max-age=1200 Connection: @@ -283,11 +283,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:07 GMT + - Mon, 13 Jan 2025 19:20:16 GMT Location: - - https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + - https://proj.org/en/latest/schemas/v0.7/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=scjyKIZhuyM7rwCVvIqH_6Zd2ow0iw2sYMXuWT_pA4I-1736796016684-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -301,11 +304,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-012abf2f2e58feea7 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -329,27 +334,32 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + uri: https://proj.org/en/latest/schemas/v0.7/projjson.schema.json response: body: - string: "{\n \"$id\": \"https://proj.org/schemas/v0.5/projjson.schema.json\",\n + string: "{\n \"$id\": \"https://proj.org/schemas/v0.7/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.5)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_DEFAULT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { - \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" - },\n \"parameters\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/parameter_value\" }\n },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"method\", \"parameters\" ],\n - \ \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + \"Schema for PROJJSON (v0.7)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2023, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_DEFAULT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" },\n { \"$ref\": \"#/definitions/coordinate_metadata\" + }\n ],\n\n \"definitions\": {\n\n \"abridged_transformation\": {\n \"type\": + \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" + },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] + },\n \"name\": { \"type\": \"string\" },\n \"source_crs\": {\n + \ \"$ref\": \"#/definitions/crs\",\n \"$comment\": \"Only + present when the source_crs of the bound_crs does not match the source_crs + of the AbridgedTransformation. No equivalent in WKT\"\n },\n \"method\": + { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": + \"array\",\n \"items\": { \"$ref\": \"#/definitions/parameter_value\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", + \"method\", \"parameters\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": false\n },\n\n \"axis\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": @@ -376,17 +386,20 @@ interactions: \ \"awayFrom\",\n \"future\",\n \ \"past\",\n \"unspecified\" ] },\n \"meridian\": { \"$ref\": \"#/definitions/meridian\" },\n \"unit\": - { \"$ref\": \"#/definitions/unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"abbreviation\", \"direction\" ],\n \"allOf\": [\n { - \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n },\n\n \"bbox\": {\n \"type\": \"object\",\n \"properties\": - {\n \"east_longitude\": { \"type\": \"number\" },\n \"west_longitude\": - { \"type\": \"number\" },\n \"south_latitude\": { \"type\": \"number\" - },\n \"north_latitude\": { \"type\": \"number\" }\n },\n \"required\" - : [ \"east_longitude\", \"west_longitude\",\n \"south_latitude\", - \"north_latitude\" ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": - {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" + { \"$ref\": \"#/definitions/unit\" },\n \"minimum_value\": { \"type\": + \"number\" },\n \"maximum_value\": { \"type\": \"number\" },\n \"range_meaning\": + { \"type\": \"string\", \"enum\": [ \"exact\", \"wraparound\"] },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"abbreviation\", \"direction\" + ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"bbox\": + {\n \"type\": \"object\",\n \"properties\": {\n \"east_longitude\": + { \"type\": \"number\" },\n \"west_longitude\": { \"type\": \"number\" + },\n \"south_latitude\": { \"type\": \"number\" },\n \"north_latitude\": + { \"type\": \"number\" }\n },\n \"required\" : [ \"east_longitude\", + \"west_longitude\",\n \"south_latitude\", \"north_latitude\" + ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": {\n + \ \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"BoundCRS\"] },\n \ \"name\": { \"type\": \"string\" },\n \"source_crs\": { \"$ref\": @@ -412,12 +425,13 @@ interactions: \ \"source_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"target_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"steps\": {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/single_operation\" - }\n },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\", \"source_crs\", \"target_crs\", - \"steps\" ],\n \"additionalProperties\": false\n },\n\n \"conversion\": - {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + }\n },\n \"accuracy\": { \"type\": \"string\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\", \"source_crs\", \"target_crs\", \"steps\" + ],\n \"additionalProperties\": false\n },\n\n \"conversion\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Conversion\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": @@ -425,48 +439,54 @@ interactions: }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"method\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" - }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": + }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_metadata\": + {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": + [\"CoordinateMetadata\"] },\n \"crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"coordinateEpoch\": { \"type\": \"number\" }\n },\n \"required\" + : [ \"crs\" ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"CoordinateSystem\"] },\n \"name\": { \"type\": \"string\" },\n \"subtype\": { \"type\": \"string\",\n \"enum\": [\"Cartesian\",\n \ \"spherical\",\n \"ellipsoidal\",\n \ \"vertical\",\n \"ordinal\",\n - \ \"parametric\",\n \"TemporalDateTime\",\n - \ \"TemporalCount\",\n \"TemporalMeasure\"] - \ },\n \"axis\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/axis\" }\n },\n \"id\": { \"$ref\": - \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"subtype\", \"axis\" ],\n \"allOf\": - [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n - \ \"additionalProperties\": false\n },\n\n \"crs\": {\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/bound_crs\" },\n { \"$ref\": - \"#/definitions/compound_crs\" },\n { \"$ref\": \"#/definitions/derived_engineering_crs\" - },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" },\n { - \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { \"$ref\": - \"#/definitions/derived_projected_crs\" },\n { \"$ref\": \"#/definitions/derived_temporal_crs\" - },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" },\n { - \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": \"#/definitions/geodetic_crs\" - },\n { \"$ref\": \"#/definitions/parametric_crs\" },\n { \"$ref\": - \"#/definitions/projected_crs\" },\n { \"$ref\": \"#/definitions/temporal_crs\" - },\n { \"$ref\": \"#/definitions/vertical_crs\" }\n ]\n },\n\n - \ \"datum\": {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/geodetic_reference_frame\" - },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": \"#/definitions/parametric_datum\" - },\n { \"$ref\": \"#/definitions/engineering_datum\" }\n ]\n },\n\n - \ \"datum_ensemble\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"DatumEnsemble\"] },\n \"name\": { \"type\": - \"string\" },\n \"members\": {\n \"type\": \"array\",\n - \ \"items\": {\n \"type\": \"object\",\n \"properties\": - {\n \"name\": { \"type\": \"string\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": - \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\" ],\n \"allOf\": [\n { \"$ref\": - \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n }\n },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + \ \"parametric\",\n \"affine\",\n + \ \"TemporalDateTime\",\n \"TemporalCount\",\n + \ \"TemporalMeasure\"] },\n \"axis\": + {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/axis\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"subtype\", + \"axis\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"crs\": + {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/bound_crs\" },\n + \ { \"$ref\": \"#/definitions/compound_crs\" },\n { \"$ref\": + \"#/definitions/derived_engineering_crs\" },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" + },\n { \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { + \"$ref\": \"#/definitions/derived_projected_crs\" },\n { \"$ref\": + \"#/definitions/derived_temporal_crs\" },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" + },\n { \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": + \"#/definitions/geodetic_crs\" },\n { \"$ref\": \"#/definitions/parametric_crs\" + },\n { \"$ref\": \"#/definitions/projected_crs\" },\n { \"$ref\": + \"#/definitions/temporal_crs\" },\n { \"$ref\": \"#/definitions/vertical_crs\" + }\n ]\n },\n\n \"datum\": {\n \"oneOf\": [\n { \"$ref\": + \"#/definitions/geodetic_reference_frame\" },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": + \"#/definitions/parametric_datum\" },\n { \"$ref\": \"#/definitions/engineering_datum\" + }\n ]\n },\n\n \"datum_ensemble\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n + \ \"type\": { \"type\": \"string\", \"enum\": [\"DatumEnsemble\"] },\n + \ \"name\": { \"type\": \"string\" },\n \"members\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"name\": { \"type\": + \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" + },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n + \ \"required\" : [ \"name\" ],\n \"allOf\": [\n + \ { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n }\n + \ },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" },\n \"accuracy\": { \"type\": \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"members\", \"accuracy\" ],\n @@ -546,9 +566,9 @@ interactions: \ \"dynamic_geodetic_reference_frame\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicGeodeticReferenceFrame\"] - },\n \"name\": {},\n \"anchor\": {},\n \"ellipsoid\": - {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": { - \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n + },\n \"name\": {},\n \"anchor\": {},\n \"anchor_epoch\": + {},\n \"ellipsoid\": {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": + { \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \ \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", @@ -557,35 +577,35 @@ interactions: \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicVerticalReferenceFrame\"] },\n \"name\": {},\n \"anchor\": - {},\n \"frame_reference_epoch\": { \"type\": \"number\" },\n \"$schema\" - : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n - \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": - {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n - \ \"required\" : [ \"name\", \"frame_reference_epoch\" ],\n \"additionalProperties\": - false\n },\n\n \"ellipsoid\": {\n \"type\": \"object\",\n \"oneOf\":[\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"semi_minor_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", - \"semi_minor_axis\" ],\n \"additionalProperties\": false\n },\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"inverse_flattening\": - { \"type\": \"number\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n - \ \"required\" : [ \"name\", \"semi_major_axis\", \"inverse_flattening\" - ],\n \"additionalProperties\": false\n },\n {\n \"properties\": + {},\n \"anchor_epoch\": {},\n \"frame_reference_epoch\": { \"type\": + \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": + {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"frame_reference_epoch\" + ],\n \"additionalProperties\": false\n },\n\n \"ellipsoid\": {\n + \ \"type\": \"object\",\n \"oneOf\":[\n {\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] },\n \"name\": - { \"type\": \"string\" },\n \"radius\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + { \"type\": \"string\" },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"semi_minor_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"radius\" ],\n \"additionalProperties\": false\n }\n - \ ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + : [ \"name\", \"semi_major_axis\", \"semi_minor_axis\" ],\n \"additionalProperties\": + false\n },\n {\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", + \"enum\": [\"Ellipsoid\"] },\n \"name\": { \"type\": \"string\" + },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"inverse_flattening\": { \"type\": \"number\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", + \"inverse_flattening\" ],\n \"additionalProperties\": false\n },\n + \ {\n \"properties\": {\n \"$schema\" : { \"type\": + \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] + },\n \"name\": { \"type\": \"string\" },\n \"radius\": + { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"radius\" ],\n \"additionalProperties\": + false\n }\n ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ]\n },\n\n \"engineering_crs\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"EngineeringCRS\"] @@ -624,15 +644,16 @@ interactions: {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"GeodeticReferenceFrame\"] },\n \"name\": { \"type\": \"string\" - },\n \"anchor\": { \"type\": \"string\" },\n \"ellipsoid\": - { \"$ref\": \"#/definitions/ellipsoid\" },\n \"prime_meridian\": { - \"$ref\": \"#/definitions/prime_meridian\" },\n \"$schema\" : {},\n - \ \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": - {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": - {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", - \"ellipsoid\" ],\n \"additionalProperties\": false\n },\n\n \"geoid_model\": - {\n \"type\": \"object\",\n \"properties\": {\n \"name\": - { \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"anchor\": { \"type\": \"string\" },\n \"anchor_epoch\": + { \"type\": \"number\" },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + },\n \"prime_meridian\": { \"$ref\": \"#/definitions/prime_meridian\" + },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": {},\n + \ \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"ellipsoid\" ],\n + \ \"additionalProperties\": false\n },\n\n \"geoid_model\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"name\": { + \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"id\": { \"$ref\": \"#/definitions/id\" }\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n },\n\n \"id\": {\n \"type\": \"object\",\n \"properties\": {\n \"authority\": @@ -830,20 +851,21 @@ interactions: [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \ \"type\": { \"type\": \"string\", \"enum\": [\"VerticalReferenceFrame\"] },\n \"name\": { \"type\": \"string\" },\n \"anchor\": { \"type\": - \"string\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": - false\n }\n\n }\n}\n" + \"string\" },\n \"anchor_epoch\": { \"type\": \"number\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n + \ }\n\n }\n}\n" headers: Access-Control-Allow-Origin: - '*' Age: - - '3707' + - '2556' CF-Cache-Status: - HIT CF-Ray: - - 86ba48e42f7e17f1-EWR + - 9017be20fd0e05b0-IAD Cache-Control: - max-age=1200 Connection: @@ -851,13 +873,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:08 GMT + - Mon, 13 Jan 2025 19:20:16 GMT ETag: - - W/"567e3992b5fd3188af907a4cdc4781b3" + - W/"b36c7ce9824d274cfd711a16ef45d221" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=9fGqnd7DULwVUC4AufVk9Q.4p3fiPUbNFt08zXEM4hM-1736796016837-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -871,25 +896,29 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - 1ufqCJ2qGdKGbE87tYBwQtndKVSwHbcLpEby3bxHJlqYtAdgGfScAvivGRqV5s+1M2sox4ksL/s= + - +8oaMXBZJ/+vWMiewYsVzn+FnUSB5VSyadztloDbj3QV9HQFr2Pi89DOhbeAQI79LQMhn98I/fQ= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - 0BT16QCMDVF0MH3X + - ENTRRD75TQ0ERAS4 x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01d0d5755cbc43fe3 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - - /proxito/html/osgeo-proj/latest/schemas/v0.5/projjson.schema.json + - /proxito/html/osgeo-proj/latest/schemas/v0.7/projjson.schema.json x-rtd-project: - osgeo-proj x-rtd-project-method: - custom_domain x-rtd-resolver-filename: - - /schemas/v0.5/projjson.schema.json + - /schemas/v0.7/projjson.schema.json x-rtd-version: - latest x-rtd-version-method: diff --git a/tests/extensions/cassettes/test_projection/ProjectionTest.test_projjson.yaml b/tests/extensions/cassettes/test_projection/ProjectionTest.test_projjson.yaml index b5b818f93..80804ee60 100644 --- a/tests/extensions/cassettes/test_projection/ProjectionTest.test_projjson.yaml +++ b/tests/extensions/cassettes/test_projection/ProjectionTest.test_projjson.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '25' + - '9' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:08 GMT + - Mon, 13 Jan 2025 19:20:16 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6fa7e4443060f73dac21add2cdaebf28bcc63709 + - e5277e8c4733cecd90e4b20000f8a41b10b6f817 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18180-EWR + - cache-bos4685-BOS X-Timer: - - S1711656848.160749,VS0,VE1 + - S1736796017.944259,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '25' + - '8' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:08 GMT + - Mon, 13 Jan 2025 19:20:17 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -233,15 +233,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8665356182fdf627470e0496aabfe032cacefbf7 + - 9e726281906cefc549bf49046a73788369de1211 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18172-EWR + - cache-bos4675-BOS X-Timer: - - S1711656848.235555,VS0,VE1 + - S1736796017.018732,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -259,7 +259,7 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/schemas/v0.5/projjson.schema.json + uri: https://proj.org/schemas/v0.7/projjson.schema.json response: body: string: '' @@ -267,11 +267,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '1164' CF-Cache-Status: - HIT CF-Ray: - - 86ba48e5f91f7ca8-EWR + - 9017be230a805a40-IAD Cache-Control: - max-age=1200 Connection: @@ -283,11 +283,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:08 GMT + - Mon, 13 Jan 2025 19:20:17 GMT Location: - - https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + - https://proj.org/en/latest/schemas/v0.7/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=ZLfpiqwdwOM3KinvgPH_eQvLiN1RcrNINWM4Bq9QWV4-1736796017150-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -301,11 +304,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-012abf2f2e58feea7 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -329,27 +334,32 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + uri: https://proj.org/en/latest/schemas/v0.7/projjson.schema.json response: body: - string: "{\n \"$id\": \"https://proj.org/schemas/v0.5/projjson.schema.json\",\n + string: "{\n \"$id\": \"https://proj.org/schemas/v0.7/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.5)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_DEFAULT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { - \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" - },\n \"parameters\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/parameter_value\" }\n },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"method\", \"parameters\" ],\n - \ \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + \"Schema for PROJJSON (v0.7)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2023, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_DEFAULT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" },\n { \"$ref\": \"#/definitions/coordinate_metadata\" + }\n ],\n\n \"definitions\": {\n\n \"abridged_transformation\": {\n \"type\": + \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" + },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] + },\n \"name\": { \"type\": \"string\" },\n \"source_crs\": {\n + \ \"$ref\": \"#/definitions/crs\",\n \"$comment\": \"Only + present when the source_crs of the bound_crs does not match the source_crs + of the AbridgedTransformation. No equivalent in WKT\"\n },\n \"method\": + { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": + \"array\",\n \"items\": { \"$ref\": \"#/definitions/parameter_value\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", + \"method\", \"parameters\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": false\n },\n\n \"axis\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": @@ -376,17 +386,20 @@ interactions: \ \"awayFrom\",\n \"future\",\n \ \"past\",\n \"unspecified\" ] },\n \"meridian\": { \"$ref\": \"#/definitions/meridian\" },\n \"unit\": - { \"$ref\": \"#/definitions/unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"abbreviation\", \"direction\" ],\n \"allOf\": [\n { - \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n },\n\n \"bbox\": {\n \"type\": \"object\",\n \"properties\": - {\n \"east_longitude\": { \"type\": \"number\" },\n \"west_longitude\": - { \"type\": \"number\" },\n \"south_latitude\": { \"type\": \"number\" - },\n \"north_latitude\": { \"type\": \"number\" }\n },\n \"required\" - : [ \"east_longitude\", \"west_longitude\",\n \"south_latitude\", - \"north_latitude\" ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": - {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" + { \"$ref\": \"#/definitions/unit\" },\n \"minimum_value\": { \"type\": + \"number\" },\n \"maximum_value\": { \"type\": \"number\" },\n \"range_meaning\": + { \"type\": \"string\", \"enum\": [ \"exact\", \"wraparound\"] },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"abbreviation\", \"direction\" + ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"bbox\": + {\n \"type\": \"object\",\n \"properties\": {\n \"east_longitude\": + { \"type\": \"number\" },\n \"west_longitude\": { \"type\": \"number\" + },\n \"south_latitude\": { \"type\": \"number\" },\n \"north_latitude\": + { \"type\": \"number\" }\n },\n \"required\" : [ \"east_longitude\", + \"west_longitude\",\n \"south_latitude\", \"north_latitude\" + ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": {\n + \ \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"BoundCRS\"] },\n \ \"name\": { \"type\": \"string\" },\n \"source_crs\": { \"$ref\": @@ -412,12 +425,13 @@ interactions: \ \"source_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"target_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"steps\": {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/single_operation\" - }\n },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\", \"source_crs\", \"target_crs\", - \"steps\" ],\n \"additionalProperties\": false\n },\n\n \"conversion\": - {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + }\n },\n \"accuracy\": { \"type\": \"string\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\", \"source_crs\", \"target_crs\", \"steps\" + ],\n \"additionalProperties\": false\n },\n\n \"conversion\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Conversion\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": @@ -425,48 +439,54 @@ interactions: }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"method\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" - }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": + }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_metadata\": + {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": + [\"CoordinateMetadata\"] },\n \"crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"coordinateEpoch\": { \"type\": \"number\" }\n },\n \"required\" + : [ \"crs\" ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"CoordinateSystem\"] },\n \"name\": { \"type\": \"string\" },\n \"subtype\": { \"type\": \"string\",\n \"enum\": [\"Cartesian\",\n \ \"spherical\",\n \"ellipsoidal\",\n \ \"vertical\",\n \"ordinal\",\n - \ \"parametric\",\n \"TemporalDateTime\",\n - \ \"TemporalCount\",\n \"TemporalMeasure\"] - \ },\n \"axis\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/axis\" }\n },\n \"id\": { \"$ref\": - \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"subtype\", \"axis\" ],\n \"allOf\": - [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n - \ \"additionalProperties\": false\n },\n\n \"crs\": {\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/bound_crs\" },\n { \"$ref\": - \"#/definitions/compound_crs\" },\n { \"$ref\": \"#/definitions/derived_engineering_crs\" - },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" },\n { - \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { \"$ref\": - \"#/definitions/derived_projected_crs\" },\n { \"$ref\": \"#/definitions/derived_temporal_crs\" - },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" },\n { - \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": \"#/definitions/geodetic_crs\" - },\n { \"$ref\": \"#/definitions/parametric_crs\" },\n { \"$ref\": - \"#/definitions/projected_crs\" },\n { \"$ref\": \"#/definitions/temporal_crs\" - },\n { \"$ref\": \"#/definitions/vertical_crs\" }\n ]\n },\n\n - \ \"datum\": {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/geodetic_reference_frame\" - },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": \"#/definitions/parametric_datum\" - },\n { \"$ref\": \"#/definitions/engineering_datum\" }\n ]\n },\n\n - \ \"datum_ensemble\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"DatumEnsemble\"] },\n \"name\": { \"type\": - \"string\" },\n \"members\": {\n \"type\": \"array\",\n - \ \"items\": {\n \"type\": \"object\",\n \"properties\": - {\n \"name\": { \"type\": \"string\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": - \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\" ],\n \"allOf\": [\n { \"$ref\": - \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n }\n },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + \ \"parametric\",\n \"affine\",\n + \ \"TemporalDateTime\",\n \"TemporalCount\",\n + \ \"TemporalMeasure\"] },\n \"axis\": + {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/axis\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"subtype\", + \"axis\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"crs\": + {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/bound_crs\" },\n + \ { \"$ref\": \"#/definitions/compound_crs\" },\n { \"$ref\": + \"#/definitions/derived_engineering_crs\" },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" + },\n { \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { + \"$ref\": \"#/definitions/derived_projected_crs\" },\n { \"$ref\": + \"#/definitions/derived_temporal_crs\" },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" + },\n { \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": + \"#/definitions/geodetic_crs\" },\n { \"$ref\": \"#/definitions/parametric_crs\" + },\n { \"$ref\": \"#/definitions/projected_crs\" },\n { \"$ref\": + \"#/definitions/temporal_crs\" },\n { \"$ref\": \"#/definitions/vertical_crs\" + }\n ]\n },\n\n \"datum\": {\n \"oneOf\": [\n { \"$ref\": + \"#/definitions/geodetic_reference_frame\" },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": + \"#/definitions/parametric_datum\" },\n { \"$ref\": \"#/definitions/engineering_datum\" + }\n ]\n },\n\n \"datum_ensemble\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n + \ \"type\": { \"type\": \"string\", \"enum\": [\"DatumEnsemble\"] },\n + \ \"name\": { \"type\": \"string\" },\n \"members\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"name\": { \"type\": + \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" + },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n + \ \"required\" : [ \"name\" ],\n \"allOf\": [\n + \ { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n }\n + \ },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" },\n \"accuracy\": { \"type\": \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"members\", \"accuracy\" ],\n @@ -546,9 +566,9 @@ interactions: \ \"dynamic_geodetic_reference_frame\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicGeodeticReferenceFrame\"] - },\n \"name\": {},\n \"anchor\": {},\n \"ellipsoid\": - {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": { - \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n + },\n \"name\": {},\n \"anchor\": {},\n \"anchor_epoch\": + {},\n \"ellipsoid\": {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": + { \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \ \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", @@ -557,35 +577,35 @@ interactions: \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicVerticalReferenceFrame\"] },\n \"name\": {},\n \"anchor\": - {},\n \"frame_reference_epoch\": { \"type\": \"number\" },\n \"$schema\" - : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n - \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": - {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n - \ \"required\" : [ \"name\", \"frame_reference_epoch\" ],\n \"additionalProperties\": - false\n },\n\n \"ellipsoid\": {\n \"type\": \"object\",\n \"oneOf\":[\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"semi_minor_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", - \"semi_minor_axis\" ],\n \"additionalProperties\": false\n },\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"inverse_flattening\": - { \"type\": \"number\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n - \ \"required\" : [ \"name\", \"semi_major_axis\", \"inverse_flattening\" - ],\n \"additionalProperties\": false\n },\n {\n \"properties\": + {},\n \"anchor_epoch\": {},\n \"frame_reference_epoch\": { \"type\": + \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": + {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"frame_reference_epoch\" + ],\n \"additionalProperties\": false\n },\n\n \"ellipsoid\": {\n + \ \"type\": \"object\",\n \"oneOf\":[\n {\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] },\n \"name\": - { \"type\": \"string\" },\n \"radius\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + { \"type\": \"string\" },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"semi_minor_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"radius\" ],\n \"additionalProperties\": false\n }\n - \ ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + : [ \"name\", \"semi_major_axis\", \"semi_minor_axis\" ],\n \"additionalProperties\": + false\n },\n {\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", + \"enum\": [\"Ellipsoid\"] },\n \"name\": { \"type\": \"string\" + },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"inverse_flattening\": { \"type\": \"number\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", + \"inverse_flattening\" ],\n \"additionalProperties\": false\n },\n + \ {\n \"properties\": {\n \"$schema\" : { \"type\": + \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] + },\n \"name\": { \"type\": \"string\" },\n \"radius\": + { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"radius\" ],\n \"additionalProperties\": + false\n }\n ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ]\n },\n\n \"engineering_crs\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"EngineeringCRS\"] @@ -624,15 +644,16 @@ interactions: {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"GeodeticReferenceFrame\"] },\n \"name\": { \"type\": \"string\" - },\n \"anchor\": { \"type\": \"string\" },\n \"ellipsoid\": - { \"$ref\": \"#/definitions/ellipsoid\" },\n \"prime_meridian\": { - \"$ref\": \"#/definitions/prime_meridian\" },\n \"$schema\" : {},\n - \ \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": - {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": - {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", - \"ellipsoid\" ],\n \"additionalProperties\": false\n },\n\n \"geoid_model\": - {\n \"type\": \"object\",\n \"properties\": {\n \"name\": - { \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"anchor\": { \"type\": \"string\" },\n \"anchor_epoch\": + { \"type\": \"number\" },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + },\n \"prime_meridian\": { \"$ref\": \"#/definitions/prime_meridian\" + },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": {},\n + \ \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"ellipsoid\" ],\n + \ \"additionalProperties\": false\n },\n\n \"geoid_model\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"name\": { + \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"id\": { \"$ref\": \"#/definitions/id\" }\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n },\n\n \"id\": {\n \"type\": \"object\",\n \"properties\": {\n \"authority\": @@ -830,20 +851,21 @@ interactions: [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \ \"type\": { \"type\": \"string\", \"enum\": [\"VerticalReferenceFrame\"] },\n \"name\": { \"type\": \"string\" },\n \"anchor\": { \"type\": - \"string\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": - false\n }\n\n }\n}\n" + \"string\" },\n \"anchor_epoch\": { \"type\": \"number\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n + \ }\n\n }\n}\n" headers: Access-Control-Allow-Origin: - '*' Age: - - '3707' + - '2557' CF-Cache-Status: - HIT CF-Ray: - - 86ba48e6afd04405-EWR + - 9017be23dd63c94a-IAD Cache-Control: - max-age=1200 Connection: @@ -851,13 +873,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:08 GMT + - Mon, 13 Jan 2025 19:20:17 GMT ETag: - - W/"567e3992b5fd3188af907a4cdc4781b3" + - W/"b36c7ce9824d274cfd711a16ef45d221" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=AYfGFcpyFhECdX3M5PMaFSJVZbs8UPfBsJ2thxi0EnE-1736796017301-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -871,25 +896,29 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - 1ufqCJ2qGdKGbE87tYBwQtndKVSwHbcLpEby3bxHJlqYtAdgGfScAvivGRqV5s+1M2sox4ksL/s= + - +8oaMXBZJ/+vWMiewYsVzn+FnUSB5VSyadztloDbj3QV9HQFr2Pi89DOhbeAQI79LQMhn98I/fQ= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - 0BT16QCMDVF0MH3X + - ENTRRD75TQ0ERAS4 x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01d0d5755cbc43fe3 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - - /proxito/html/osgeo-proj/latest/schemas/v0.5/projjson.schema.json + - /proxito/html/osgeo-proj/latest/schemas/v0.7/projjson.schema.json x-rtd-project: - osgeo-proj x-rtd-project-method: - custom_domain x-rtd-resolver-filename: - - /schemas/v0.5/projjson.schema.json + - /schemas/v0.7/projjson.schema.json x-rtd-version: - latest x-rtd-version-method: diff --git a/tests/extensions/cassettes/test_projection/ProjectionTest.test_shape.yaml b/tests/extensions/cassettes/test_projection/ProjectionTest.test_shape.yaml index 3400d84d2..970ab61ea 100644 --- a/tests/extensions/cassettes/test_projection/ProjectionTest.test_shape.yaml +++ b/tests/extensions/cassettes/test_projection/ProjectionTest.test_shape.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '26' + - '9' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:08 GMT + - Mon, 13 Jan 2025 19:20:17 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4d660ee2a609d1b57ceca51f211f8a1c84ba2221 + - ad838256d80f83d10cfee3f2d7c3ca5672121101 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18122-EWR + - cache-bos4651-BOS X-Timer: - - S1711656849.615891,VS0,VE1 + - S1736796017.478490,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '26' + - '9' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:08 GMT + - Mon, 13 Jan 2025 19:20:17 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -233,15 +233,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 06146d2f564b3ccedb57822cc715b0f13b4b0823 + - 2d67315a9335b9d8c3b801f0a6e1ea2928930602 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18152-EWR + - cache-bos4641-BOS X-Timer: - - S1711656849.704796,VS0,VE1 + - S1736796018.555129,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -259,7 +259,7 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/schemas/v0.5/projjson.schema.json + uri: https://proj.org/schemas/v0.7/projjson.schema.json response: body: string: '' @@ -267,11 +267,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '1164' CF-Cache-Status: - HIT CF-Ray: - - 86ba48e8ea928c8d-EWR + - 9017be266f57822c-IAD Cache-Control: - max-age=1200 Connection: @@ -283,11 +283,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:08 GMT + - Mon, 13 Jan 2025 19:20:17 GMT Location: - - https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + - https://proj.org/en/latest/schemas/v0.7/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=YwHiqGNnBkKdSnAmqRCIcPk1xZHKYk59yOoMBX4CrRQ-1736796017694-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -301,11 +304,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-012abf2f2e58feea7 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -329,27 +334,32 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + uri: https://proj.org/en/latest/schemas/v0.7/projjson.schema.json response: body: - string: "{\n \"$id\": \"https://proj.org/schemas/v0.5/projjson.schema.json\",\n + string: "{\n \"$id\": \"https://proj.org/schemas/v0.7/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.5)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_DEFAULT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { - \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" - },\n \"parameters\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/parameter_value\" }\n },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"method\", \"parameters\" ],\n - \ \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + \"Schema for PROJJSON (v0.7)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2023, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_DEFAULT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" },\n { \"$ref\": \"#/definitions/coordinate_metadata\" + }\n ],\n\n \"definitions\": {\n\n \"abridged_transformation\": {\n \"type\": + \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" + },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] + },\n \"name\": { \"type\": \"string\" },\n \"source_crs\": {\n + \ \"$ref\": \"#/definitions/crs\",\n \"$comment\": \"Only + present when the source_crs of the bound_crs does not match the source_crs + of the AbridgedTransformation. No equivalent in WKT\"\n },\n \"method\": + { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": + \"array\",\n \"items\": { \"$ref\": \"#/definitions/parameter_value\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", + \"method\", \"parameters\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": false\n },\n\n \"axis\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": @@ -376,17 +386,20 @@ interactions: \ \"awayFrom\",\n \"future\",\n \ \"past\",\n \"unspecified\" ] },\n \"meridian\": { \"$ref\": \"#/definitions/meridian\" },\n \"unit\": - { \"$ref\": \"#/definitions/unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"abbreviation\", \"direction\" ],\n \"allOf\": [\n { - \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n },\n\n \"bbox\": {\n \"type\": \"object\",\n \"properties\": - {\n \"east_longitude\": { \"type\": \"number\" },\n \"west_longitude\": - { \"type\": \"number\" },\n \"south_latitude\": { \"type\": \"number\" - },\n \"north_latitude\": { \"type\": \"number\" }\n },\n \"required\" - : [ \"east_longitude\", \"west_longitude\",\n \"south_latitude\", - \"north_latitude\" ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": - {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" + { \"$ref\": \"#/definitions/unit\" },\n \"minimum_value\": { \"type\": + \"number\" },\n \"maximum_value\": { \"type\": \"number\" },\n \"range_meaning\": + { \"type\": \"string\", \"enum\": [ \"exact\", \"wraparound\"] },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"abbreviation\", \"direction\" + ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"bbox\": + {\n \"type\": \"object\",\n \"properties\": {\n \"east_longitude\": + { \"type\": \"number\" },\n \"west_longitude\": { \"type\": \"number\" + },\n \"south_latitude\": { \"type\": \"number\" },\n \"north_latitude\": + { \"type\": \"number\" }\n },\n \"required\" : [ \"east_longitude\", + \"west_longitude\",\n \"south_latitude\", \"north_latitude\" + ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": {\n + \ \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"BoundCRS\"] },\n \ \"name\": { \"type\": \"string\" },\n \"source_crs\": { \"$ref\": @@ -412,12 +425,13 @@ interactions: \ \"source_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"target_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"steps\": {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/single_operation\" - }\n },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\", \"source_crs\", \"target_crs\", - \"steps\" ],\n \"additionalProperties\": false\n },\n\n \"conversion\": - {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + }\n },\n \"accuracy\": { \"type\": \"string\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\", \"source_crs\", \"target_crs\", \"steps\" + ],\n \"additionalProperties\": false\n },\n\n \"conversion\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Conversion\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": @@ -425,48 +439,54 @@ interactions: }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"method\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" - }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": + }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_metadata\": + {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": + [\"CoordinateMetadata\"] },\n \"crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"coordinateEpoch\": { \"type\": \"number\" }\n },\n \"required\" + : [ \"crs\" ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"CoordinateSystem\"] },\n \"name\": { \"type\": \"string\" },\n \"subtype\": { \"type\": \"string\",\n \"enum\": [\"Cartesian\",\n \ \"spherical\",\n \"ellipsoidal\",\n \ \"vertical\",\n \"ordinal\",\n - \ \"parametric\",\n \"TemporalDateTime\",\n - \ \"TemporalCount\",\n \"TemporalMeasure\"] - \ },\n \"axis\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/axis\" }\n },\n \"id\": { \"$ref\": - \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"subtype\", \"axis\" ],\n \"allOf\": - [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n - \ \"additionalProperties\": false\n },\n\n \"crs\": {\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/bound_crs\" },\n { \"$ref\": - \"#/definitions/compound_crs\" },\n { \"$ref\": \"#/definitions/derived_engineering_crs\" - },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" },\n { - \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { \"$ref\": - \"#/definitions/derived_projected_crs\" },\n { \"$ref\": \"#/definitions/derived_temporal_crs\" - },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" },\n { - \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": \"#/definitions/geodetic_crs\" - },\n { \"$ref\": \"#/definitions/parametric_crs\" },\n { \"$ref\": - \"#/definitions/projected_crs\" },\n { \"$ref\": \"#/definitions/temporal_crs\" - },\n { \"$ref\": \"#/definitions/vertical_crs\" }\n ]\n },\n\n - \ \"datum\": {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/geodetic_reference_frame\" - },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": \"#/definitions/parametric_datum\" - },\n { \"$ref\": \"#/definitions/engineering_datum\" }\n ]\n },\n\n - \ \"datum_ensemble\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"DatumEnsemble\"] },\n \"name\": { \"type\": - \"string\" },\n \"members\": {\n \"type\": \"array\",\n - \ \"items\": {\n \"type\": \"object\",\n \"properties\": - {\n \"name\": { \"type\": \"string\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": - \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\" ],\n \"allOf\": [\n { \"$ref\": - \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n }\n },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + \ \"parametric\",\n \"affine\",\n + \ \"TemporalDateTime\",\n \"TemporalCount\",\n + \ \"TemporalMeasure\"] },\n \"axis\": + {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/axis\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"subtype\", + \"axis\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"crs\": + {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/bound_crs\" },\n + \ { \"$ref\": \"#/definitions/compound_crs\" },\n { \"$ref\": + \"#/definitions/derived_engineering_crs\" },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" + },\n { \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { + \"$ref\": \"#/definitions/derived_projected_crs\" },\n { \"$ref\": + \"#/definitions/derived_temporal_crs\" },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" + },\n { \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": + \"#/definitions/geodetic_crs\" },\n { \"$ref\": \"#/definitions/parametric_crs\" + },\n { \"$ref\": \"#/definitions/projected_crs\" },\n { \"$ref\": + \"#/definitions/temporal_crs\" },\n { \"$ref\": \"#/definitions/vertical_crs\" + }\n ]\n },\n\n \"datum\": {\n \"oneOf\": [\n { \"$ref\": + \"#/definitions/geodetic_reference_frame\" },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": + \"#/definitions/parametric_datum\" },\n { \"$ref\": \"#/definitions/engineering_datum\" + }\n ]\n },\n\n \"datum_ensemble\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n + \ \"type\": { \"type\": \"string\", \"enum\": [\"DatumEnsemble\"] },\n + \ \"name\": { \"type\": \"string\" },\n \"members\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"name\": { \"type\": + \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" + },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n + \ \"required\" : [ \"name\" ],\n \"allOf\": [\n + \ { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n }\n + \ },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" },\n \"accuracy\": { \"type\": \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"members\", \"accuracy\" ],\n @@ -546,9 +566,9 @@ interactions: \ \"dynamic_geodetic_reference_frame\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicGeodeticReferenceFrame\"] - },\n \"name\": {},\n \"anchor\": {},\n \"ellipsoid\": - {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": { - \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n + },\n \"name\": {},\n \"anchor\": {},\n \"anchor_epoch\": + {},\n \"ellipsoid\": {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": + { \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \ \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", @@ -557,35 +577,35 @@ interactions: \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicVerticalReferenceFrame\"] },\n \"name\": {},\n \"anchor\": - {},\n \"frame_reference_epoch\": { \"type\": \"number\" },\n \"$schema\" - : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n - \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": - {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n - \ \"required\" : [ \"name\", \"frame_reference_epoch\" ],\n \"additionalProperties\": - false\n },\n\n \"ellipsoid\": {\n \"type\": \"object\",\n \"oneOf\":[\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"semi_minor_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", - \"semi_minor_axis\" ],\n \"additionalProperties\": false\n },\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"inverse_flattening\": - { \"type\": \"number\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n - \ \"required\" : [ \"name\", \"semi_major_axis\", \"inverse_flattening\" - ],\n \"additionalProperties\": false\n },\n {\n \"properties\": + {},\n \"anchor_epoch\": {},\n \"frame_reference_epoch\": { \"type\": + \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": + {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"frame_reference_epoch\" + ],\n \"additionalProperties\": false\n },\n\n \"ellipsoid\": {\n + \ \"type\": \"object\",\n \"oneOf\":[\n {\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] },\n \"name\": - { \"type\": \"string\" },\n \"radius\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + { \"type\": \"string\" },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"semi_minor_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"radius\" ],\n \"additionalProperties\": false\n }\n - \ ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + : [ \"name\", \"semi_major_axis\", \"semi_minor_axis\" ],\n \"additionalProperties\": + false\n },\n {\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", + \"enum\": [\"Ellipsoid\"] },\n \"name\": { \"type\": \"string\" + },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"inverse_flattening\": { \"type\": \"number\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", + \"inverse_flattening\" ],\n \"additionalProperties\": false\n },\n + \ {\n \"properties\": {\n \"$schema\" : { \"type\": + \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] + },\n \"name\": { \"type\": \"string\" },\n \"radius\": + { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"radius\" ],\n \"additionalProperties\": + false\n }\n ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ]\n },\n\n \"engineering_crs\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"EngineeringCRS\"] @@ -624,15 +644,16 @@ interactions: {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"GeodeticReferenceFrame\"] },\n \"name\": { \"type\": \"string\" - },\n \"anchor\": { \"type\": \"string\" },\n \"ellipsoid\": - { \"$ref\": \"#/definitions/ellipsoid\" },\n \"prime_meridian\": { - \"$ref\": \"#/definitions/prime_meridian\" },\n \"$schema\" : {},\n - \ \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": - {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": - {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", - \"ellipsoid\" ],\n \"additionalProperties\": false\n },\n\n \"geoid_model\": - {\n \"type\": \"object\",\n \"properties\": {\n \"name\": - { \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"anchor\": { \"type\": \"string\" },\n \"anchor_epoch\": + { \"type\": \"number\" },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + },\n \"prime_meridian\": { \"$ref\": \"#/definitions/prime_meridian\" + },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": {},\n + \ \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"ellipsoid\" ],\n + \ \"additionalProperties\": false\n },\n\n \"geoid_model\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"name\": { + \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"id\": { \"$ref\": \"#/definitions/id\" }\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n },\n\n \"id\": {\n \"type\": \"object\",\n \"properties\": {\n \"authority\": @@ -830,20 +851,21 @@ interactions: [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \ \"type\": { \"type\": \"string\", \"enum\": [\"VerticalReferenceFrame\"] },\n \"name\": { \"type\": \"string\" },\n \"anchor\": { \"type\": - \"string\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": - false\n }\n\n }\n}\n" + \"string\" },\n \"anchor_epoch\": { \"type\": \"number\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n + \ }\n\n }\n}\n" headers: Access-Control-Allow-Origin: - '*' Age: - - '3707' + - '2557' CF-Cache-Status: - HIT CF-Ray: - - 86ba48e99ff219cf-EWR + - 9017be274c30390a-IAD Cache-Control: - max-age=1200 Connection: @@ -851,13 +873,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:08 GMT + - Mon, 13 Jan 2025 19:20:17 GMT ETag: - - W/"567e3992b5fd3188af907a4cdc4781b3" + - W/"b36c7ce9824d274cfd711a16ef45d221" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=BSEm8r3XnqvPrLJ5zFVYOMzvPY0m3DJu.tT.lMtDd6U-1736796017834-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -871,25 +896,29 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - 1ufqCJ2qGdKGbE87tYBwQtndKVSwHbcLpEby3bxHJlqYtAdgGfScAvivGRqV5s+1M2sox4ksL/s= + - +8oaMXBZJ/+vWMiewYsVzn+FnUSB5VSyadztloDbj3QV9HQFr2Pi89DOhbeAQI79LQMhn98I/fQ= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - 0BT16QCMDVF0MH3X + - ENTRRD75TQ0ERAS4 x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01d0d5755cbc43fe3 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - - /proxito/html/osgeo-proj/latest/schemas/v0.5/projjson.schema.json + - /proxito/html/osgeo-proj/latest/schemas/v0.7/projjson.schema.json x-rtd-project: - osgeo-proj x-rtd-project-method: - custom_domain x-rtd-resolver-filename: - - /schemas/v0.5/projjson.schema.json + - /schemas/v0.7/projjson.schema.json x-rtd-version: - latest x-rtd-version-method: diff --git a/tests/extensions/cassettes/test_projection/ProjectionTest.test_transform.yaml b/tests/extensions/cassettes/test_projection/ProjectionTest.test_transform.yaml index 6e57f4f74..2e789031a 100644 --- a/tests/extensions/cassettes/test_projection/ProjectionTest.test_transform.yaml +++ b/tests/extensions/cassettes/test_projection/ProjectionTest.test_transform.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '26' + - '10' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:09 GMT + - Mon, 13 Jan 2025 19:20:17 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f38d8541117431c54faf7c3667525efcb271ff51 + - 450b55f758d765da5f496dcdeaddd3cf25197ffe X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18138-EWR + - cache-bos4630-BOS X-Timer: - - S1711656849.055602,VS0,VE1 + - S1736796018.963004,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '26' + - '9' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:09 GMT + - Mon, 13 Jan 2025 19:20:18 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -233,15 +233,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - aca84705d4fbd3f4b999f804ce013a130b15dd87 + - 3cf043b9d1d8a1746a3010eafa4dd2eee05445c7 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18163-EWR + - cache-bos4676-BOS X-Timer: - - S1711656849.127561,VS0,VE2 + - S1736796018.046537,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -259,7 +259,7 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/schemas/v0.5/projjson.schema.json + uri: https://proj.org/schemas/v0.7/projjson.schema.json response: body: string: '' @@ -267,11 +267,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '1165' CF-Cache-Status: - HIT CF-Ray: - - 86ba48eb8ca943ca-EWR + - 9017be298c1858c6-IAD Cache-Control: - max-age=1200 Connection: @@ -283,11 +283,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:09 GMT + - Mon, 13 Jan 2025 19:20:18 GMT Location: - - https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + - https://proj.org/en/latest/schemas/v0.7/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=94f25KzLwngUB0X8segQ1wOF5is3ArTLNIGRTFr9v8o-1736796018212-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -301,11 +304,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-012abf2f2e58feea7 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -329,27 +334,32 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + uri: https://proj.org/en/latest/schemas/v0.7/projjson.schema.json response: body: - string: "{\n \"$id\": \"https://proj.org/schemas/v0.5/projjson.schema.json\",\n + string: "{\n \"$id\": \"https://proj.org/schemas/v0.7/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.5)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_DEFAULT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { - \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" - },\n \"parameters\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/parameter_value\" }\n },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"method\", \"parameters\" ],\n - \ \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + \"Schema for PROJJSON (v0.7)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2023, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_DEFAULT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" },\n { \"$ref\": \"#/definitions/coordinate_metadata\" + }\n ],\n\n \"definitions\": {\n\n \"abridged_transformation\": {\n \"type\": + \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" + },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] + },\n \"name\": { \"type\": \"string\" },\n \"source_crs\": {\n + \ \"$ref\": \"#/definitions/crs\",\n \"$comment\": \"Only + present when the source_crs of the bound_crs does not match the source_crs + of the AbridgedTransformation. No equivalent in WKT\"\n },\n \"method\": + { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": + \"array\",\n \"items\": { \"$ref\": \"#/definitions/parameter_value\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", + \"method\", \"parameters\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": false\n },\n\n \"axis\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": @@ -376,17 +386,20 @@ interactions: \ \"awayFrom\",\n \"future\",\n \ \"past\",\n \"unspecified\" ] },\n \"meridian\": { \"$ref\": \"#/definitions/meridian\" },\n \"unit\": - { \"$ref\": \"#/definitions/unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"abbreviation\", \"direction\" ],\n \"allOf\": [\n { - \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n },\n\n \"bbox\": {\n \"type\": \"object\",\n \"properties\": - {\n \"east_longitude\": { \"type\": \"number\" },\n \"west_longitude\": - { \"type\": \"number\" },\n \"south_latitude\": { \"type\": \"number\" - },\n \"north_latitude\": { \"type\": \"number\" }\n },\n \"required\" - : [ \"east_longitude\", \"west_longitude\",\n \"south_latitude\", - \"north_latitude\" ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": - {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" + { \"$ref\": \"#/definitions/unit\" },\n \"minimum_value\": { \"type\": + \"number\" },\n \"maximum_value\": { \"type\": \"number\" },\n \"range_meaning\": + { \"type\": \"string\", \"enum\": [ \"exact\", \"wraparound\"] },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"abbreviation\", \"direction\" + ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"bbox\": + {\n \"type\": \"object\",\n \"properties\": {\n \"east_longitude\": + { \"type\": \"number\" },\n \"west_longitude\": { \"type\": \"number\" + },\n \"south_latitude\": { \"type\": \"number\" },\n \"north_latitude\": + { \"type\": \"number\" }\n },\n \"required\" : [ \"east_longitude\", + \"west_longitude\",\n \"south_latitude\", \"north_latitude\" + ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": {\n + \ \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"BoundCRS\"] },\n \ \"name\": { \"type\": \"string\" },\n \"source_crs\": { \"$ref\": @@ -412,12 +425,13 @@ interactions: \ \"source_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"target_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"steps\": {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/single_operation\" - }\n },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\", \"source_crs\", \"target_crs\", - \"steps\" ],\n \"additionalProperties\": false\n },\n\n \"conversion\": - {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + }\n },\n \"accuracy\": { \"type\": \"string\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\", \"source_crs\", \"target_crs\", \"steps\" + ],\n \"additionalProperties\": false\n },\n\n \"conversion\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Conversion\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": @@ -425,48 +439,54 @@ interactions: }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"method\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" - }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": + }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_metadata\": + {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": + [\"CoordinateMetadata\"] },\n \"crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"coordinateEpoch\": { \"type\": \"number\" }\n },\n \"required\" + : [ \"crs\" ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"CoordinateSystem\"] },\n \"name\": { \"type\": \"string\" },\n \"subtype\": { \"type\": \"string\",\n \"enum\": [\"Cartesian\",\n \ \"spherical\",\n \"ellipsoidal\",\n \ \"vertical\",\n \"ordinal\",\n - \ \"parametric\",\n \"TemporalDateTime\",\n - \ \"TemporalCount\",\n \"TemporalMeasure\"] - \ },\n \"axis\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/axis\" }\n },\n \"id\": { \"$ref\": - \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"subtype\", \"axis\" ],\n \"allOf\": - [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n - \ \"additionalProperties\": false\n },\n\n \"crs\": {\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/bound_crs\" },\n { \"$ref\": - \"#/definitions/compound_crs\" },\n { \"$ref\": \"#/definitions/derived_engineering_crs\" - },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" },\n { - \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { \"$ref\": - \"#/definitions/derived_projected_crs\" },\n { \"$ref\": \"#/definitions/derived_temporal_crs\" - },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" },\n { - \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": \"#/definitions/geodetic_crs\" - },\n { \"$ref\": \"#/definitions/parametric_crs\" },\n { \"$ref\": - \"#/definitions/projected_crs\" },\n { \"$ref\": \"#/definitions/temporal_crs\" - },\n { \"$ref\": \"#/definitions/vertical_crs\" }\n ]\n },\n\n - \ \"datum\": {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/geodetic_reference_frame\" - },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": \"#/definitions/parametric_datum\" - },\n { \"$ref\": \"#/definitions/engineering_datum\" }\n ]\n },\n\n - \ \"datum_ensemble\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"DatumEnsemble\"] },\n \"name\": { \"type\": - \"string\" },\n \"members\": {\n \"type\": \"array\",\n - \ \"items\": {\n \"type\": \"object\",\n \"properties\": - {\n \"name\": { \"type\": \"string\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": - \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\" ],\n \"allOf\": [\n { \"$ref\": - \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n }\n },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + \ \"parametric\",\n \"affine\",\n + \ \"TemporalDateTime\",\n \"TemporalCount\",\n + \ \"TemporalMeasure\"] },\n \"axis\": + {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/axis\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"subtype\", + \"axis\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"crs\": + {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/bound_crs\" },\n + \ { \"$ref\": \"#/definitions/compound_crs\" },\n { \"$ref\": + \"#/definitions/derived_engineering_crs\" },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" + },\n { \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { + \"$ref\": \"#/definitions/derived_projected_crs\" },\n { \"$ref\": + \"#/definitions/derived_temporal_crs\" },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" + },\n { \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": + \"#/definitions/geodetic_crs\" },\n { \"$ref\": \"#/definitions/parametric_crs\" + },\n { \"$ref\": \"#/definitions/projected_crs\" },\n { \"$ref\": + \"#/definitions/temporal_crs\" },\n { \"$ref\": \"#/definitions/vertical_crs\" + }\n ]\n },\n\n \"datum\": {\n \"oneOf\": [\n { \"$ref\": + \"#/definitions/geodetic_reference_frame\" },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": + \"#/definitions/parametric_datum\" },\n { \"$ref\": \"#/definitions/engineering_datum\" + }\n ]\n },\n\n \"datum_ensemble\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n + \ \"type\": { \"type\": \"string\", \"enum\": [\"DatumEnsemble\"] },\n + \ \"name\": { \"type\": \"string\" },\n \"members\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"name\": { \"type\": + \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" + },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n + \ \"required\" : [ \"name\" ],\n \"allOf\": [\n + \ { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n }\n + \ },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" },\n \"accuracy\": { \"type\": \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"members\", \"accuracy\" ],\n @@ -546,9 +566,9 @@ interactions: \ \"dynamic_geodetic_reference_frame\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicGeodeticReferenceFrame\"] - },\n \"name\": {},\n \"anchor\": {},\n \"ellipsoid\": - {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": { - \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n + },\n \"name\": {},\n \"anchor\": {},\n \"anchor_epoch\": + {},\n \"ellipsoid\": {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": + { \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \ \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", @@ -557,35 +577,35 @@ interactions: \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicVerticalReferenceFrame\"] },\n \"name\": {},\n \"anchor\": - {},\n \"frame_reference_epoch\": { \"type\": \"number\" },\n \"$schema\" - : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n - \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": - {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n - \ \"required\" : [ \"name\", \"frame_reference_epoch\" ],\n \"additionalProperties\": - false\n },\n\n \"ellipsoid\": {\n \"type\": \"object\",\n \"oneOf\":[\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"semi_minor_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", - \"semi_minor_axis\" ],\n \"additionalProperties\": false\n },\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"inverse_flattening\": - { \"type\": \"number\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n - \ \"required\" : [ \"name\", \"semi_major_axis\", \"inverse_flattening\" - ],\n \"additionalProperties\": false\n },\n {\n \"properties\": + {},\n \"anchor_epoch\": {},\n \"frame_reference_epoch\": { \"type\": + \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": + {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"frame_reference_epoch\" + ],\n \"additionalProperties\": false\n },\n\n \"ellipsoid\": {\n + \ \"type\": \"object\",\n \"oneOf\":[\n {\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] },\n \"name\": - { \"type\": \"string\" },\n \"radius\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + { \"type\": \"string\" },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"semi_minor_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"radius\" ],\n \"additionalProperties\": false\n }\n - \ ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + : [ \"name\", \"semi_major_axis\", \"semi_minor_axis\" ],\n \"additionalProperties\": + false\n },\n {\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", + \"enum\": [\"Ellipsoid\"] },\n \"name\": { \"type\": \"string\" + },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"inverse_flattening\": { \"type\": \"number\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", + \"inverse_flattening\" ],\n \"additionalProperties\": false\n },\n + \ {\n \"properties\": {\n \"$schema\" : { \"type\": + \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] + },\n \"name\": { \"type\": \"string\" },\n \"radius\": + { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"radius\" ],\n \"additionalProperties\": + false\n }\n ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ]\n },\n\n \"engineering_crs\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"EngineeringCRS\"] @@ -624,15 +644,16 @@ interactions: {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"GeodeticReferenceFrame\"] },\n \"name\": { \"type\": \"string\" - },\n \"anchor\": { \"type\": \"string\" },\n \"ellipsoid\": - { \"$ref\": \"#/definitions/ellipsoid\" },\n \"prime_meridian\": { - \"$ref\": \"#/definitions/prime_meridian\" },\n \"$schema\" : {},\n - \ \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": - {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": - {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", - \"ellipsoid\" ],\n \"additionalProperties\": false\n },\n\n \"geoid_model\": - {\n \"type\": \"object\",\n \"properties\": {\n \"name\": - { \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"anchor\": { \"type\": \"string\" },\n \"anchor_epoch\": + { \"type\": \"number\" },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + },\n \"prime_meridian\": { \"$ref\": \"#/definitions/prime_meridian\" + },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": {},\n + \ \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"ellipsoid\" ],\n + \ \"additionalProperties\": false\n },\n\n \"geoid_model\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"name\": { + \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"id\": { \"$ref\": \"#/definitions/id\" }\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n },\n\n \"id\": {\n \"type\": \"object\",\n \"properties\": {\n \"authority\": @@ -830,20 +851,21 @@ interactions: [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \ \"type\": { \"type\": \"string\", \"enum\": [\"VerticalReferenceFrame\"] },\n \"name\": { \"type\": \"string\" },\n \"anchor\": { \"type\": - \"string\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": - false\n }\n\n }\n}\n" + \"string\" },\n \"anchor_epoch\": { \"type\": \"number\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n + \ }\n\n }\n}\n" headers: Access-Control-Allow-Origin: - '*' Age: - - '3708' + - '2558' CF-Cache-Status: - HIT CF-Ray: - - 86ba48ec3f8d1906-EWR + - 9017be2a7b7c0581-IAD Cache-Control: - max-age=1200 Connection: @@ -851,13 +873,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:09 GMT + - Mon, 13 Jan 2025 19:20:18 GMT ETag: - - W/"567e3992b5fd3188af907a4cdc4781b3" + - W/"b36c7ce9824d274cfd711a16ef45d221" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=_WHDCN7IYPIAP7Cp.58YfmNwHjmqWYA8pyS7U3MWCsI-1736796018349-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -871,25 +896,29 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - 1ufqCJ2qGdKGbE87tYBwQtndKVSwHbcLpEby3bxHJlqYtAdgGfScAvivGRqV5s+1M2sox4ksL/s= + - +8oaMXBZJ/+vWMiewYsVzn+FnUSB5VSyadztloDbj3QV9HQFr2Pi89DOhbeAQI79LQMhn98I/fQ= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - 0BT16QCMDVF0MH3X + - ENTRRD75TQ0ERAS4 x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01d0d5755cbc43fe3 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - - /proxito/html/osgeo-proj/latest/schemas/v0.5/projjson.schema.json + - /proxito/html/osgeo-proj/latest/schemas/v0.7/projjson.schema.json x-rtd-project: - osgeo-proj x-rtd-project-method: - custom_domain x-rtd-resolver-filename: - - /schemas/v0.5/projjson.schema.json + - /schemas/v0.7/projjson.schema.json x-rtd-version: - latest x-rtd-version-method: diff --git a/tests/extensions/cassettes/test_projection/ProjectionTest.test_validate_proj.yaml b/tests/extensions/cassettes/test_projection/ProjectionTest.test_validate_proj.yaml index 459b9a70a..f9540b1b1 100644 --- a/tests/extensions/cassettes/test_projection/ProjectionTest.test_validate_proj.yaml +++ b/tests/extensions/cassettes/test_projection/ProjectionTest.test_validate_proj.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '27' + - '10' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:09 GMT + - Mon, 13 Jan 2025 19:20:18 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -111,17 +111,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '20' + - '1' X-Fastly-Request-ID: - - b6a61478c95e7a639901454f43851458ad8f6a43 + - 3a412a6af73946287f54ed90e9769701477d9d6f X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18183-EWR + - cache-bos4648-BOS X-Timer: - - S1711656849.451786,VS0,VE1 + - S1736796018.472934,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '26' + - '10' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:09 GMT + - Mon, 13 Jan 2025 19:20:18 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -231,17 +231,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - e0179ad3b988931b88fe2ccb1a321a6a788927f0 + - 08c58e3a75697dfb40b2ebc0625cf8ea486fb40d X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18145-EWR + - cache-bos4668-BOS X-Timer: - - S1711656850.527792,VS0,VE1 + - S1736796019.558554,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -259,7 +259,7 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/schemas/v0.5/projjson.schema.json + uri: https://proj.org/schemas/v0.7/projjson.schema.json response: body: string: '' @@ -267,11 +267,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '1165' CF-Cache-Status: - HIT CF-Ray: - - 86ba48ee0eb88cd4-EWR + - 9017be2c9d712d08-IAD Cache-Control: - max-age=1200 Connection: @@ -283,11 +283,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:09 GMT + - Mon, 13 Jan 2025 19:20:18 GMT Location: - - https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + - https://proj.org/en/latest/schemas/v0.7/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=eqRfbbxFRWTJME3XA3pPYw4SrQpIU8otl7Gja2fTMbY-1736796018699-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -301,11 +304,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-012abf2f2e58feea7 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -329,27 +334,32 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + uri: https://proj.org/en/latest/schemas/v0.7/projjson.schema.json response: body: - string: "{\n \"$id\": \"https://proj.org/schemas/v0.5/projjson.schema.json\",\n + string: "{\n \"$id\": \"https://proj.org/schemas/v0.7/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.5)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_DEFAULT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { - \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" - },\n \"parameters\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/parameter_value\" }\n },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"method\", \"parameters\" ],\n - \ \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + \"Schema for PROJJSON (v0.7)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2023, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_DEFAULT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" },\n { \"$ref\": \"#/definitions/coordinate_metadata\" + }\n ],\n\n \"definitions\": {\n\n \"abridged_transformation\": {\n \"type\": + \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" + },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] + },\n \"name\": { \"type\": \"string\" },\n \"source_crs\": {\n + \ \"$ref\": \"#/definitions/crs\",\n \"$comment\": \"Only + present when the source_crs of the bound_crs does not match the source_crs + of the AbridgedTransformation. No equivalent in WKT\"\n },\n \"method\": + { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": + \"array\",\n \"items\": { \"$ref\": \"#/definitions/parameter_value\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", + \"method\", \"parameters\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": false\n },\n\n \"axis\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": @@ -376,17 +386,20 @@ interactions: \ \"awayFrom\",\n \"future\",\n \ \"past\",\n \"unspecified\" ] },\n \"meridian\": { \"$ref\": \"#/definitions/meridian\" },\n \"unit\": - { \"$ref\": \"#/definitions/unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"abbreviation\", \"direction\" ],\n \"allOf\": [\n { - \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n },\n\n \"bbox\": {\n \"type\": \"object\",\n \"properties\": - {\n \"east_longitude\": { \"type\": \"number\" },\n \"west_longitude\": - { \"type\": \"number\" },\n \"south_latitude\": { \"type\": \"number\" - },\n \"north_latitude\": { \"type\": \"number\" }\n },\n \"required\" - : [ \"east_longitude\", \"west_longitude\",\n \"south_latitude\", - \"north_latitude\" ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": - {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" + { \"$ref\": \"#/definitions/unit\" },\n \"minimum_value\": { \"type\": + \"number\" },\n \"maximum_value\": { \"type\": \"number\" },\n \"range_meaning\": + { \"type\": \"string\", \"enum\": [ \"exact\", \"wraparound\"] },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"abbreviation\", \"direction\" + ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"bbox\": + {\n \"type\": \"object\",\n \"properties\": {\n \"east_longitude\": + { \"type\": \"number\" },\n \"west_longitude\": { \"type\": \"number\" + },\n \"south_latitude\": { \"type\": \"number\" },\n \"north_latitude\": + { \"type\": \"number\" }\n },\n \"required\" : [ \"east_longitude\", + \"west_longitude\",\n \"south_latitude\", \"north_latitude\" + ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": {\n + \ \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"BoundCRS\"] },\n \ \"name\": { \"type\": \"string\" },\n \"source_crs\": { \"$ref\": @@ -412,12 +425,13 @@ interactions: \ \"source_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"target_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"steps\": {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/single_operation\" - }\n },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\", \"source_crs\", \"target_crs\", - \"steps\" ],\n \"additionalProperties\": false\n },\n\n \"conversion\": - {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + }\n },\n \"accuracy\": { \"type\": \"string\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\", \"source_crs\", \"target_crs\", \"steps\" + ],\n \"additionalProperties\": false\n },\n\n \"conversion\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Conversion\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": @@ -425,48 +439,54 @@ interactions: }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"method\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" - }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": + }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_metadata\": + {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": + [\"CoordinateMetadata\"] },\n \"crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"coordinateEpoch\": { \"type\": \"number\" }\n },\n \"required\" + : [ \"crs\" ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"CoordinateSystem\"] },\n \"name\": { \"type\": \"string\" },\n \"subtype\": { \"type\": \"string\",\n \"enum\": [\"Cartesian\",\n \ \"spherical\",\n \"ellipsoidal\",\n \ \"vertical\",\n \"ordinal\",\n - \ \"parametric\",\n \"TemporalDateTime\",\n - \ \"TemporalCount\",\n \"TemporalMeasure\"] - \ },\n \"axis\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/axis\" }\n },\n \"id\": { \"$ref\": - \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"subtype\", \"axis\" ],\n \"allOf\": - [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n - \ \"additionalProperties\": false\n },\n\n \"crs\": {\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/bound_crs\" },\n { \"$ref\": - \"#/definitions/compound_crs\" },\n { \"$ref\": \"#/definitions/derived_engineering_crs\" - },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" },\n { - \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { \"$ref\": - \"#/definitions/derived_projected_crs\" },\n { \"$ref\": \"#/definitions/derived_temporal_crs\" - },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" },\n { - \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": \"#/definitions/geodetic_crs\" - },\n { \"$ref\": \"#/definitions/parametric_crs\" },\n { \"$ref\": - \"#/definitions/projected_crs\" },\n { \"$ref\": \"#/definitions/temporal_crs\" - },\n { \"$ref\": \"#/definitions/vertical_crs\" }\n ]\n },\n\n - \ \"datum\": {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/geodetic_reference_frame\" - },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": \"#/definitions/parametric_datum\" - },\n { \"$ref\": \"#/definitions/engineering_datum\" }\n ]\n },\n\n - \ \"datum_ensemble\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"DatumEnsemble\"] },\n \"name\": { \"type\": - \"string\" },\n \"members\": {\n \"type\": \"array\",\n - \ \"items\": {\n \"type\": \"object\",\n \"properties\": - {\n \"name\": { \"type\": \"string\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": - \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\" ],\n \"allOf\": [\n { \"$ref\": - \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n }\n },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + \ \"parametric\",\n \"affine\",\n + \ \"TemporalDateTime\",\n \"TemporalCount\",\n + \ \"TemporalMeasure\"] },\n \"axis\": + {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/axis\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"subtype\", + \"axis\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"crs\": + {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/bound_crs\" },\n + \ { \"$ref\": \"#/definitions/compound_crs\" },\n { \"$ref\": + \"#/definitions/derived_engineering_crs\" },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" + },\n { \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { + \"$ref\": \"#/definitions/derived_projected_crs\" },\n { \"$ref\": + \"#/definitions/derived_temporal_crs\" },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" + },\n { \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": + \"#/definitions/geodetic_crs\" },\n { \"$ref\": \"#/definitions/parametric_crs\" + },\n { \"$ref\": \"#/definitions/projected_crs\" },\n { \"$ref\": + \"#/definitions/temporal_crs\" },\n { \"$ref\": \"#/definitions/vertical_crs\" + }\n ]\n },\n\n \"datum\": {\n \"oneOf\": [\n { \"$ref\": + \"#/definitions/geodetic_reference_frame\" },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": + \"#/definitions/parametric_datum\" },\n { \"$ref\": \"#/definitions/engineering_datum\" + }\n ]\n },\n\n \"datum_ensemble\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n + \ \"type\": { \"type\": \"string\", \"enum\": [\"DatumEnsemble\"] },\n + \ \"name\": { \"type\": \"string\" },\n \"members\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"name\": { \"type\": + \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" + },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n + \ \"required\" : [ \"name\" ],\n \"allOf\": [\n + \ { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n }\n + \ },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" },\n \"accuracy\": { \"type\": \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"members\", \"accuracy\" ],\n @@ -546,9 +566,9 @@ interactions: \ \"dynamic_geodetic_reference_frame\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicGeodeticReferenceFrame\"] - },\n \"name\": {},\n \"anchor\": {},\n \"ellipsoid\": - {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": { - \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n + },\n \"name\": {},\n \"anchor\": {},\n \"anchor_epoch\": + {},\n \"ellipsoid\": {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": + { \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \ \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", @@ -557,35 +577,35 @@ interactions: \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicVerticalReferenceFrame\"] },\n \"name\": {},\n \"anchor\": - {},\n \"frame_reference_epoch\": { \"type\": \"number\" },\n \"$schema\" - : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n - \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": - {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n - \ \"required\" : [ \"name\", \"frame_reference_epoch\" ],\n \"additionalProperties\": - false\n },\n\n \"ellipsoid\": {\n \"type\": \"object\",\n \"oneOf\":[\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"semi_minor_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", - \"semi_minor_axis\" ],\n \"additionalProperties\": false\n },\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"inverse_flattening\": - { \"type\": \"number\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n - \ \"required\" : [ \"name\", \"semi_major_axis\", \"inverse_flattening\" - ],\n \"additionalProperties\": false\n },\n {\n \"properties\": + {},\n \"anchor_epoch\": {},\n \"frame_reference_epoch\": { \"type\": + \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": + {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"frame_reference_epoch\" + ],\n \"additionalProperties\": false\n },\n\n \"ellipsoid\": {\n + \ \"type\": \"object\",\n \"oneOf\":[\n {\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] },\n \"name\": - { \"type\": \"string\" },\n \"radius\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + { \"type\": \"string\" },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"semi_minor_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"radius\" ],\n \"additionalProperties\": false\n }\n - \ ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + : [ \"name\", \"semi_major_axis\", \"semi_minor_axis\" ],\n \"additionalProperties\": + false\n },\n {\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", + \"enum\": [\"Ellipsoid\"] },\n \"name\": { \"type\": \"string\" + },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"inverse_flattening\": { \"type\": \"number\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", + \"inverse_flattening\" ],\n \"additionalProperties\": false\n },\n + \ {\n \"properties\": {\n \"$schema\" : { \"type\": + \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] + },\n \"name\": { \"type\": \"string\" },\n \"radius\": + { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"radius\" ],\n \"additionalProperties\": + false\n }\n ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ]\n },\n\n \"engineering_crs\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"EngineeringCRS\"] @@ -624,15 +644,16 @@ interactions: {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"GeodeticReferenceFrame\"] },\n \"name\": { \"type\": \"string\" - },\n \"anchor\": { \"type\": \"string\" },\n \"ellipsoid\": - { \"$ref\": \"#/definitions/ellipsoid\" },\n \"prime_meridian\": { - \"$ref\": \"#/definitions/prime_meridian\" },\n \"$schema\" : {},\n - \ \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": - {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": - {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", - \"ellipsoid\" ],\n \"additionalProperties\": false\n },\n\n \"geoid_model\": - {\n \"type\": \"object\",\n \"properties\": {\n \"name\": - { \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"anchor\": { \"type\": \"string\" },\n \"anchor_epoch\": + { \"type\": \"number\" },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + },\n \"prime_meridian\": { \"$ref\": \"#/definitions/prime_meridian\" + },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": {},\n + \ \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"ellipsoid\" ],\n + \ \"additionalProperties\": false\n },\n\n \"geoid_model\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"name\": { + \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"id\": { \"$ref\": \"#/definitions/id\" }\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n },\n\n \"id\": {\n \"type\": \"object\",\n \"properties\": {\n \"authority\": @@ -830,20 +851,21 @@ interactions: [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \ \"type\": { \"type\": \"string\", \"enum\": [\"VerticalReferenceFrame\"] },\n \"name\": { \"type\": \"string\" },\n \"anchor\": { \"type\": - \"string\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": - false\n }\n\n }\n}\n" + \"string\" },\n \"anchor_epoch\": { \"type\": \"number\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n + \ }\n\n }\n}\n" headers: Access-Control-Allow-Origin: - '*' Age: - - '3708' + - '2558' CF-Cache-Status: - HIT CF-Ray: - - 86ba48eea9fb4380-EWR + - 9017be2d78658847-IAD Cache-Control: - max-age=1200 Connection: @@ -851,13 +873,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:09 GMT + - Mon, 13 Jan 2025 19:20:18 GMT ETag: - - W/"567e3992b5fd3188af907a4cdc4781b3" + - W/"b36c7ce9824d274cfd711a16ef45d221" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=WEPaGGEN5vsBrIODcXXuZQn.aupl_w7eER.blho9hCc-1736796018839-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -871,25 +896,29 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - 1ufqCJ2qGdKGbE87tYBwQtndKVSwHbcLpEby3bxHJlqYtAdgGfScAvivGRqV5s+1M2sox4ksL/s= + - +8oaMXBZJ/+vWMiewYsVzn+FnUSB5VSyadztloDbj3QV9HQFr2Pi89DOhbeAQI79LQMhn98I/fQ= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - 0BT16QCMDVF0MH3X + - ENTRRD75TQ0ERAS4 x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01d0d5755cbc43fe3 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - - /proxito/html/osgeo-proj/latest/schemas/v0.5/projjson.schema.json + - /proxito/html/osgeo-proj/latest/schemas/v0.7/projjson.schema.json x-rtd-project: - osgeo-proj x-rtd-project-method: - custom_domain x-rtd-resolver-filename: - - /schemas/v0.5/projjson.schema.json + - /schemas/v0.7/projjson.schema.json x-rtd-version: - latest x-rtd-version-method: diff --git a/tests/extensions/cassettes/test_projection/ProjectionTest.test_wkt2.yaml b/tests/extensions/cassettes/test_projection/ProjectionTest.test_wkt2.yaml index d80917f4d..6002a10d2 100644 --- a/tests/extensions/cassettes/test_projection/ProjectionTest.test_wkt2.yaml +++ b/tests/extensions/cassettes/test_projection/ProjectionTest.test_wkt2.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '27' + - '11' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:09 GMT + - Mon, 13 Jan 2025 19:20:18 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -111,17 +111,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 447490c9092f08c5189eef5bf8e7ede4cd18addf + - 4f54830648f2fd0630a1c999c61973f1f268c4d4 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18138-EWR + - cache-bos4667-BOS X-Timer: - - S1711656850.843792,VS0,VE1 + - S1736796019.961545,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,11 +139,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -168,15 +168,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -205,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '27' + - '10' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:09 GMT + - Mon, 13 Jan 2025 19:20:19 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -231,17 +231,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 136cd7c4212886272c44574105e84724f225ee57 + - 4eb7cff6d8be9acd4d880c732ecad6b0579d4383 X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18181-EWR + - cache-bos4643-BOS X-Timer: - - S1711656850.915609,VS0,VE1 + - S1736796019.030633,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -259,7 +259,7 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/schemas/v0.5/projjson.schema.json + uri: https://proj.org/schemas/v0.7/projjson.schema.json response: body: string: '' @@ -267,11 +267,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '1166' CF-Cache-Status: - HIT CF-Ray: - - 86ba48f068a0c411-EWR + - 9017be2f8b13c979-IAD Cache-Control: - max-age=1200 Connection: @@ -283,11 +283,14 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:10 GMT + - Mon, 13 Jan 2025 19:20:19 GMT Location: - - https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + - https://proj.org/en/latest/schemas/v0.7/projjson.schema.json Server: - cloudflare + Set-Cookie: + - _cfuvid=veJNxpm0EIs8gru1X0SsCvCOseQkJjs78DiKNXN6XeQ-1736796019146-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: @@ -301,11 +304,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-012abf2f2e58feea7 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -329,27 +334,32 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://proj.org/en/latest/schemas/v0.5/projjson.schema.json + uri: https://proj.org/en/latest/schemas/v0.7/projjson.schema.json response: body: - string: "{\n \"$id\": \"https://proj.org/schemas/v0.5/projjson.schema.json\",\n + string: "{\n \"$id\": \"https://proj.org/schemas/v0.7/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.5)\",\n \"$comment\": \"This file exists both in - data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of - $id, change PROJJSON_DEFAULT_VERSION accordingly in io.cpp\",\n\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/crs\" },\n { \"$ref\": \"#/definitions/datum\" - },\n { \"$ref\": \"#/definitions/datum_ensemble\" },\n { \"$ref\": \"#/definitions/ellipsoid\" - },\n { \"$ref\": \"#/definitions/prime_meridian\" },\n { \"$ref\": \"#/definitions/single_operation\" - },\n { \"$ref\": \"#/definitions/concatenated_operation\" }\n ],\n\n \"definitions\": - {\n\n \"abridged_transformation\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"AbridgedTransformation\"] },\n \"name\": { - \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" - },\n \"parameters\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/parameter_value\" }\n },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"method\", \"parameters\" ],\n - \ \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + \"Schema for PROJJSON (v0.7)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2023, and subject to the MIT license. + This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And + if changing the value of $id, change PROJJSON_DEFAULT_VERSION accordingly + in io.cpp\",\n\n \"oneOf\": [\n { \"$ref\": \"#/definitions/crs\" },\n + \ { \"$ref\": \"#/definitions/datum\" },\n { \"$ref\": \"#/definitions/datum_ensemble\" + },\n { \"$ref\": \"#/definitions/ellipsoid\" },\n { \"$ref\": \"#/definitions/prime_meridian\" + },\n { \"$ref\": \"#/definitions/single_operation\" },\n { \"$ref\": + \"#/definitions/concatenated_operation\" },\n { \"$ref\": \"#/definitions/coordinate_metadata\" + }\n ],\n\n \"definitions\": {\n\n \"abridged_transformation\": {\n \"type\": + \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" + },\n \"type\": { \"type\": \"string\", \"enum\": [\"AbridgedTransformation\"] + },\n \"name\": { \"type\": \"string\" },\n \"source_crs\": {\n + \ \"$ref\": \"#/definitions/crs\",\n \"$comment\": \"Only + present when the source_crs of the bound_crs does not match the source_crs + of the AbridgedTransformation. No equivalent in WKT\"\n },\n \"method\": + { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": + \"array\",\n \"items\": { \"$ref\": \"#/definitions/parameter_value\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", + \"method\", \"parameters\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": false\n },\n\n \"axis\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": @@ -376,17 +386,20 @@ interactions: \ \"awayFrom\",\n \"future\",\n \ \"past\",\n \"unspecified\" ] },\n \"meridian\": { \"$ref\": \"#/definitions/meridian\" },\n \"unit\": - { \"$ref\": \"#/definitions/unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"abbreviation\", \"direction\" ],\n \"allOf\": [\n { - \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n },\n\n \"bbox\": {\n \"type\": \"object\",\n \"properties\": - {\n \"east_longitude\": { \"type\": \"number\" },\n \"west_longitude\": - { \"type\": \"number\" },\n \"south_latitude\": { \"type\": \"number\" - },\n \"north_latitude\": { \"type\": \"number\" }\n },\n \"required\" - : [ \"east_longitude\", \"west_longitude\",\n \"south_latitude\", - \"north_latitude\" ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": - {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" + { \"$ref\": \"#/definitions/unit\" },\n \"minimum_value\": { \"type\": + \"number\" },\n \"maximum_value\": { \"type\": \"number\" },\n \"range_meaning\": + { \"type\": \"string\", \"enum\": [ \"exact\", \"wraparound\"] },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"abbreviation\", \"direction\" + ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"bbox\": + {\n \"type\": \"object\",\n \"properties\": {\n \"east_longitude\": + { \"type\": \"number\" },\n \"west_longitude\": { \"type\": \"number\" + },\n \"south_latitude\": { \"type\": \"number\" },\n \"north_latitude\": + { \"type\": \"number\" }\n },\n \"required\" : [ \"east_longitude\", + \"west_longitude\",\n \"south_latitude\", \"north_latitude\" + ],\n \"additionalProperties\": false\n },\n\n \"bound_crs\": {\n + \ \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"BoundCRS\"] },\n \ \"name\": { \"type\": \"string\" },\n \"source_crs\": { \"$ref\": @@ -412,12 +425,13 @@ interactions: \ \"source_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"target_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"steps\": {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/single_operation\" - }\n },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\", \"source_crs\", \"target_crs\", - \"steps\" ],\n \"additionalProperties\": false\n },\n\n \"conversion\": - {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + }\n },\n \"accuracy\": { \"type\": \"string\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\", \"source_crs\", \"target_crs\", \"steps\" + ],\n \"additionalProperties\": false\n },\n\n \"conversion\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Conversion\"] },\n \"name\": { \"type\": \"string\" },\n \"method\": { \"$ref\": \"#/definitions/method\" },\n \"parameters\": {\n \"type\": @@ -425,48 +439,54 @@ interactions: }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"method\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" - }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": + }\n ],\n \"additionalProperties\": false\n },\n\n \"coordinate_metadata\": + {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": + [\"CoordinateMetadata\"] },\n \"crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"coordinateEpoch\": { \"type\": \"number\" }\n },\n \"required\" + : [ \"crs\" ],\n \"additionalProperties\": false\n },\n\n \"coordinate_system\": {\n \"type\": \"object\",\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"CoordinateSystem\"] },\n \"name\": { \"type\": \"string\" },\n \"subtype\": { \"type\": \"string\",\n \"enum\": [\"Cartesian\",\n \ \"spherical\",\n \"ellipsoidal\",\n \ \"vertical\",\n \"ordinal\",\n - \ \"parametric\",\n \"TemporalDateTime\",\n - \ \"TemporalCount\",\n \"TemporalMeasure\"] - \ },\n \"axis\": {\n \"type\": \"array\",\n \"items\": - { \"$ref\": \"#/definitions/axis\" }\n },\n \"id\": { \"$ref\": - \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"subtype\", \"axis\" ],\n \"allOf\": - [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n - \ \"additionalProperties\": false\n },\n\n \"crs\": {\n \"oneOf\": - [\n { \"$ref\": \"#/definitions/bound_crs\" },\n { \"$ref\": - \"#/definitions/compound_crs\" },\n { \"$ref\": \"#/definitions/derived_engineering_crs\" - },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" },\n { - \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { \"$ref\": - \"#/definitions/derived_projected_crs\" },\n { \"$ref\": \"#/definitions/derived_temporal_crs\" - },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" },\n { - \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": \"#/definitions/geodetic_crs\" - },\n { \"$ref\": \"#/definitions/parametric_crs\" },\n { \"$ref\": - \"#/definitions/projected_crs\" },\n { \"$ref\": \"#/definitions/temporal_crs\" - },\n { \"$ref\": \"#/definitions/vertical_crs\" }\n ]\n },\n\n - \ \"datum\": {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/geodetic_reference_frame\" - },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" },\n { - \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" },\n { - \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": \"#/definitions/parametric_datum\" - },\n { \"$ref\": \"#/definitions/engineering_datum\" }\n ]\n },\n\n - \ \"datum_ensemble\": {\n \"type\": \"object\",\n \"properties\": - {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": - \"string\", \"enum\": [\"DatumEnsemble\"] },\n \"name\": { \"type\": - \"string\" },\n \"members\": {\n \"type\": \"array\",\n - \ \"items\": {\n \"type\": \"object\",\n \"properties\": - {\n \"name\": { \"type\": \"string\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": - \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\" ],\n \"allOf\": [\n { \"$ref\": - \"#/definitions/id_ids_mutually_exclusive\" }\n ],\n \"additionalProperties\": - false\n }\n },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + \ \"parametric\",\n \"affine\",\n + \ \"TemporalDateTime\",\n \"TemporalCount\",\n + \ \"TemporalMeasure\"] },\n \"axis\": + {\n \"type\": \"array\",\n \"items\": { \"$ref\": \"#/definitions/axis\" + }\n },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": + { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"subtype\", + \"axis\" ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n },\n\n \"crs\": + {\n \"oneOf\": [\n { \"$ref\": \"#/definitions/bound_crs\" },\n + \ { \"$ref\": \"#/definitions/compound_crs\" },\n { \"$ref\": + \"#/definitions/derived_engineering_crs\" },\n { \"$ref\": \"#/definitions/derived_geodetic_crs\" + },\n { \"$ref\": \"#/definitions/derived_parametric_crs\" },\n { + \"$ref\": \"#/definitions/derived_projected_crs\" },\n { \"$ref\": + \"#/definitions/derived_temporal_crs\" },\n { \"$ref\": \"#/definitions/derived_vertical_crs\" + },\n { \"$ref\": \"#/definitions/engineering_crs\" },\n { \"$ref\": + \"#/definitions/geodetic_crs\" },\n { \"$ref\": \"#/definitions/parametric_crs\" + },\n { \"$ref\": \"#/definitions/projected_crs\" },\n { \"$ref\": + \"#/definitions/temporal_crs\" },\n { \"$ref\": \"#/definitions/vertical_crs\" + }\n ]\n },\n\n \"datum\": {\n \"oneOf\": [\n { \"$ref\": + \"#/definitions/geodetic_reference_frame\" },\n { \"$ref\": \"#/definitions/vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_geodetic_reference_frame\" + },\n { \"$ref\": \"#/definitions/dynamic_vertical_reference_frame\" + },\n { \"$ref\": \"#/definitions/temporal_datum\" },\n { \"$ref\": + \"#/definitions/parametric_datum\" },\n { \"$ref\": \"#/definitions/engineering_datum\" + }\n ]\n },\n\n \"datum_ensemble\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n + \ \"type\": { \"type\": \"string\", \"enum\": [\"DatumEnsemble\"] },\n + \ \"name\": { \"type\": \"string\" },\n \"members\": {\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n + \ \"properties\": {\n \"name\": { \"type\": + \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" + },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n + \ \"required\" : [ \"name\" ],\n \"allOf\": [\n + \ { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + }\n ],\n \"additionalProperties\": false\n }\n + \ },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" },\n \"accuracy\": { \"type\": \"string\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" : [ \"name\", \"members\", \"accuracy\" ],\n @@ -546,9 +566,9 @@ interactions: \ \"dynamic_geodetic_reference_frame\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicGeodeticReferenceFrame\"] - },\n \"name\": {},\n \"anchor\": {},\n \"ellipsoid\": - {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": { - \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n + },\n \"name\": {},\n \"anchor\": {},\n \"anchor_epoch\": + {},\n \"ellipsoid\": {},\n \"prime_meridian\": {},\n \"frame_reference_epoch\": + { \"type\": \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \ \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", @@ -557,35 +577,35 @@ interactions: \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"DynamicVerticalReferenceFrame\"] },\n \"name\": {},\n \"anchor\": - {},\n \"frame_reference_epoch\": { \"type\": \"number\" },\n \"$schema\" - : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n - \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": - {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n - \ \"required\" : [ \"name\", \"frame_reference_epoch\" ],\n \"additionalProperties\": - false\n },\n\n \"ellipsoid\": {\n \"type\": \"object\",\n \"oneOf\":[\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"semi_minor_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": - { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" - }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", - \"semi_minor_axis\" ],\n \"additionalProperties\": false\n },\n - \ {\n \"properties\": {\n \"$schema\" : { \"type\": - \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] - },\n \"name\": { \"type\": \"string\" },\n \"semi_major_axis\": - { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"inverse_flattening\": - { \"type\": \"number\" },\n \"id\": { \"$ref\": \"#/definitions/id\" - },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n - \ \"required\" : [ \"name\", \"semi_major_axis\", \"inverse_flattening\" - ],\n \"additionalProperties\": false\n },\n {\n \"properties\": + {},\n \"anchor_epoch\": {},\n \"frame_reference_epoch\": { \"type\": + \"number\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": + {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"frame_reference_epoch\" + ],\n \"additionalProperties\": false\n },\n\n \"ellipsoid\": {\n + \ \"type\": \"object\",\n \"oneOf\":[\n {\n \"properties\": {\n \"$schema\" : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] },\n \"name\": - { \"type\": \"string\" },\n \"radius\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + { \"type\": \"string\" },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"semi_minor_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" }\n },\n \"required\" - : [ \"name\", \"radius\" ],\n \"additionalProperties\": false\n }\n - \ ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" + : [ \"name\", \"semi_major_axis\", \"semi_minor_axis\" ],\n \"additionalProperties\": + false\n },\n {\n \"properties\": {\n \"$schema\" + : { \"type\": \"string\" },\n \"type\": { \"type\": \"string\", + \"enum\": [\"Ellipsoid\"] },\n \"name\": { \"type\": \"string\" + },\n \"semi_major_axis\": { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" + },\n \"inverse_flattening\": { \"type\": \"number\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"semi_major_axis\", + \"inverse_flattening\" ],\n \"additionalProperties\": false\n },\n + \ {\n \"properties\": {\n \"$schema\" : { \"type\": + \"string\" },\n \"type\": { \"type\": \"string\", \"enum\": [\"Ellipsoid\"] + },\n \"name\": { \"type\": \"string\" },\n \"radius\": + { \"$ref\": \"#/definitions/value_in_metre_or_value_and_unit\" },\n \"id\": + { \"$ref\": \"#/definitions/id\" },\n \"ids\": { \"$ref\": \"#/definitions/ids\" + }\n },\n \"required\" : [ \"name\", \"radius\" ],\n \"additionalProperties\": + false\n }\n ],\n \"allOf\": [\n { \"$ref\": \"#/definitions/id_ids_mutually_exclusive\" }\n ]\n },\n\n \"engineering_crs\": {\n \"type\": \"object\",\n \ \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"EngineeringCRS\"] @@ -624,15 +644,16 @@ interactions: {\n \"type\": \"object\",\n \"allOf\": [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \"type\": { \"type\": \"string\", \"enum\": [\"GeodeticReferenceFrame\"] },\n \"name\": { \"type\": \"string\" - },\n \"anchor\": { \"type\": \"string\" },\n \"ellipsoid\": - { \"$ref\": \"#/definitions/ellipsoid\" },\n \"prime_meridian\": { - \"$ref\": \"#/definitions/prime_meridian\" },\n \"$schema\" : {},\n - \ \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n \"vertical_extent\": - {},\n \"temporal_extent\": {},\n \"usages\": {},\n \"remarks\": - {},\n \"id\": {}, \"ids\": {}\n },\n \"required\" : [ \"name\", - \"ellipsoid\" ],\n \"additionalProperties\": false\n },\n\n \"geoid_model\": - {\n \"type\": \"object\",\n \"properties\": {\n \"name\": - { \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" + },\n \"anchor\": { \"type\": \"string\" },\n \"anchor_epoch\": + { \"type\": \"number\" },\n \"ellipsoid\": { \"$ref\": \"#/definitions/ellipsoid\" + },\n \"prime_meridian\": { \"$ref\": \"#/definitions/prime_meridian\" + },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": {},\n + \ \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": + {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, + \"ids\": {}\n },\n \"required\" : [ \"name\", \"ellipsoid\" ],\n + \ \"additionalProperties\": false\n },\n\n \"geoid_model\": {\n + \ \"type\": \"object\",\n \"properties\": {\n \"name\": { + \"type\": \"string\" },\n \"interpolation_crs\": { \"$ref\": \"#/definitions/crs\" },\n \"id\": { \"$ref\": \"#/definitions/id\" }\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n },\n\n \"id\": {\n \"type\": \"object\",\n \"properties\": {\n \"authority\": @@ -830,20 +851,21 @@ interactions: [{ \"$ref\": \"#/definitions/object_usage\" }],\n \"properties\": {\n \ \"type\": { \"type\": \"string\", \"enum\": [\"VerticalReferenceFrame\"] },\n \"name\": { \"type\": \"string\" },\n \"anchor\": { \"type\": - \"string\" },\n \"$schema\" : {},\n \"scope\": {},\n \"area\": - {},\n \"bbox\": {},\n \"vertical_extent\": {},\n \"temporal_extent\": - {},\n \"usages\": {},\n \"remarks\": {},\n \"id\": {}, - \"ids\": {}\n },\n \"required\" : [ \"name\" ],\n \"additionalProperties\": - false\n }\n\n }\n}\n" + \"string\" },\n \"anchor_epoch\": { \"type\": \"number\" },\n \"$schema\" + : {},\n \"scope\": {},\n \"area\": {},\n \"bbox\": {},\n + \ \"vertical_extent\": {},\n \"temporal_extent\": {},\n \"usages\": + {},\n \"remarks\": {},\n \"id\": {}, \"ids\": {}\n },\n + \ \"required\" : [ \"name\" ],\n \"additionalProperties\": false\n + \ }\n\n }\n}\n" headers: Access-Control-Allow-Origin: - '*' Age: - - '3709' + - '2559' CF-Cache-Status: - HIT CF-Ray: - - 86ba48f11a684314-EWR + - 9017be304fb3061a-IAD Cache-Control: - max-age=1200 Connection: @@ -851,13 +873,16 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:14:10 GMT + - Mon, 13 Jan 2025 19:20:19 GMT ETag: - - W/"567e3992b5fd3188af907a4cdc4781b3" + - W/"b36c7ce9824d274cfd711a16ef45d221" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=udM1GyR0CwInEFHPxn4BtpynjeSTE_QFzCh9RxME5eM-1736796019274-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: @@ -871,25 +896,29 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - 1ufqCJ2qGdKGbE87tYBwQtndKVSwHbcLpEby3bxHJlqYtAdgGfScAvivGRqV5s+1M2sox4ksL/s= + - +8oaMXBZJ/+vWMiewYsVzn+FnUSB5VSyadztloDbj3QV9HQFr2Pi89DOhbeAQI79LQMhn98I/fQ= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - 0BT16QCMDVF0MH3X + - ENTRRD75TQ0ERAS4 x-amz-server-side-encryption: - AES256 x-backend: - - web-i-01d0d5755cbc43fe3 + - web-ext-theme-i-0424321e567628222 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - - /proxito/html/osgeo-proj/latest/schemas/v0.5/projjson.schema.json + - /proxito/html/osgeo-proj/latest/schemas/v0.7/projjson.schema.json x-rtd-project: - osgeo-proj x-rtd-project-method: - custom_domain x-rtd-resolver-filename: - - /schemas/v0.5/projjson.schema.json + - /schemas/v0.7/projjson.schema.json x-rtd-version: - latest x-rtd-version-method: diff --git a/tests/extensions/cassettes/test_raster/RasterTest.test_asset_bands.yaml b/tests/extensions/cassettes/test_raster/RasterTest.test_asset_bands.yaml index 5143831e1..a69feb86c 100644 --- a/tests/extensions/cassettes/test_raster/RasterTest.test_asset_bands.yaml +++ b/tests/extensions/cassettes/test_raster/RasterTest.test_asset_bands.yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '27' + - '11' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:10 GMT + - Mon, 13 Jan 2025 19:20:19 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -111,17 +111,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - b2a4edc7a9ef1abbdafc1780f114af69fa957808 + - 4c53ea90d70329410265f34bfcd6c6ad02b79e87 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18133-EWR + - cache-bos4684-BOS X-Timer: - - S1711656850.239790,VS0,VE1 + - S1736796019.420136,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -195,7 +195,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '27' + - '11' Cache-Control: - max-age=600 Connection: @@ -205,7 +205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:10 GMT + - Mon, 13 Jan 2025 19:20:19 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +223,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - bb1c748b83ff2a8146d220798309759672d99353 + - f2d4a98c33495ac783025622d7becede3aadb334 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18182-EWR + - cache-bos4648-BOS X-Timer: - - S1711656850.323848,VS0,VE1 + - S1736796020.516583,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -249,11 +249,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -278,15 +278,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -315,21 +315,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '27' + - '11' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:10 GMT + - Mon, 13 Jan 2025 19:20:19 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -343,15 +343,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8219bf9fd27b3103f9de70de8e6e1a9cda19f005 + - 086660fe642795f77eee8682575cb403a5e9429a X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18122-EWR + - cache-bos4653-BOS X-Timer: - - S1711656850.411478,VS0,VE2 + - S1736796020.594584,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -464,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '11' Cache-Control: - max-age=600 Connection: @@ -474,11 +474,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:10 GMT + - Mon, 13 Jan 2025 19:20:19 GMT ETag: - - '"60e44dd0-18ae"' + - '"66df5c80-18ae"' Last-Modified: - - Tue, 06 Jul 2021 12:34:24 GMT + - Mon, 09 Sep 2024 20:37:20 GMT Server: - GitHub.com Strict-Transport-Security: @@ -492,15 +492,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 49956d92576c3dffa40f9d8f6a5b491c80393efa + - 7b5d0fa96ba15ef66e5cd83b313f9c2a8723eaf9 X-GitHub-Request-Id: - - B43C:3D15:F31CD7:13449A2:6605CF86 + - 18D3:3C98C4:45D3413:4EABD7C:67856768 X-Served-By: - - cache-ewr18154-EWR + - cache-bos4672-BOS X-Timer: - - S1711656850.499606,VS0,VE1 + - S1736796020.662662,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:58 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_raster/RasterTest.test_validate_raster.yaml b/tests/extensions/cassettes/test_raster/RasterTest.test_validate_raster.yaml index 893edddb0..95d1be1c4 100644 --- a/tests/extensions/cassettes/test_raster/RasterTest.test_validate_raster.yaml +++ b/tests/extensions/cassettes/test_raster/RasterTest.test_validate_raster.yaml @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:10 GMT + - Mon, 13 Jan 2025 19:20:19 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -95,15 +95,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 29d6a8f902d1198759b1840923d4b1d9da434ed9 + - 8b799b9a540fef11244df15a5c5be76314359253 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18147-EWR + - cache-bos4686-BOS X-Timer: - - S1711656851.615804,VS0,VE23 + - S1736796020.755638,VS0,VE33 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -177,7 +177,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '28' + - '11' Cache-Control: - max-age=600 Connection: @@ -187,7 +187,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:10 GMT + - Mon, 13 Jan 2025 19:20:19 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -205,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b37fd799bd1dbb3cab16ab19d90940d36e0412ad + - b5c74812049d542695b9304ccc34dd49d389369c X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18179-EWR + - cache-bos4661-BOS X-Timer: - - S1711656851.723814,VS0,VE1 + - S1736796020.857026,VS0,VE2 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -231,11 +231,11 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.1.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n @@ -260,15 +260,15 @@ interactions: \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n \ }\n }\n }\n },\n \"fields\": {\n \"type\": - \"object\",\n \"properties\": {\n \"proj:epsg\":{\n \"title\":\"EPSG - code\",\n \"type\":[\n \"integer\",\n \"null\"\n + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.5/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -297,21 +297,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '28' + - '11' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4369' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:10 GMT + - Mon, 13 Jan 2025 19:20:19 GMT ETag: - - '"63e6651b-1111"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -325,15 +325,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - af46065da5f9124ca12eb17016c30092ff728aa1 + - 736e7651da2ddd5276c980f99ac7212e53cb05ca X-GitHub-Request-Id: - - 3C38:3106DE:EFEE58:131462C:6605CF76 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18132-EWR + - cache-bos4625-BOS X-Timer: - - S1711656851.826237,VS0,VE2 + - S1736796020.930620,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:43 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -427,7 +427,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '28' + - '12' Cache-Control: - max-age=600 Connection: @@ -437,11 +437,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:10 GMT + - Mon, 13 Jan 2025 19:20:20 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -455,15 +455,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - 656319ec42ff204ae78b84b2c754dff0ce2c7159 + - 9bb7b2c2c647103f75b2fd806d04ccd9de432426 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18120-EWR + - cache-bos4627-BOS X-Timer: - - S1711656851.908274,VS0,VE1 + - S1736796020.014313,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -574,11 +574,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:11 GMT + - Mon, 13 Jan 2025 19:20:20 GMT ETag: - - '"63cb122e-1661"' + - '"663cfd3e-1661"' Last-Modified: - - Fri, 20 Jan 2023 22:14:06 GMT + - Thu, 09 May 2024 16:43:42 GMT Server: - GitHub.com Strict-Transport-Security: @@ -592,15 +592,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 06e2f925e4b109150f5a3b092dce8c081a5839fe + - b789d5d8930828828c5b628f8599fab9e53fab92 X-GitHub-Request-Id: - - C416:46DB:E0DCFF:1222E47:6605CF92 + - 9D86:C36C:42EA765:4BC2B9C:67856773 X-Served-By: - - cache-ewr18125-EWR + - cache-bos4633-BOS X-Timer: - - S1711656851.999589,VS0,VE24 + - S1736796020.094356,VS0,VE25 expires: - - Thu, 28 Mar 2024 20:24:11 GMT + - Mon, 13 Jan 2025 19:30:20 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -713,7 +713,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '12' Cache-Control: - max-age=600 Connection: @@ -723,11 +723,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:11 GMT + - Mon, 13 Jan 2025 19:20:20 GMT ETag: - - '"60e44dd0-18ae"' + - '"66df5c80-18ae"' Last-Modified: - - Tue, 06 Jul 2021 12:34:24 GMT + - Mon, 09 Sep 2024 20:37:20 GMT Server: - GitHub.com Strict-Transport-Security: @@ -741,15 +741,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b8d991d72e481e828798e677c17641492d6c4795 + - 36c4b8a4ff83b1bd29bc59689cc893d7fdf4e50d X-GitHub-Request-Id: - - B43C:3D15:F31CD7:13449A2:6605CF86 + - 18D3:3C98C4:45D3413:4EABD7C:67856768 X-Served-By: - - cache-ewr18171-EWR + - cache-bos4624-BOS X-Timer: - - S1711656851.111749,VS0,VE2 + - S1736796020.197020,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:58 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sar/SarItemExtTest.test_all.yaml b/tests/extensions/cassettes/test_sar/SarItemExtTest.test_all.yaml index c3686e8e2..a8a5e08ba 100644 --- a/tests/extensions/cassettes/test_sar/SarItemExtTest.test_all.yaml +++ b/tests/extensions/cassettes/test_sar/SarItemExtTest.test_all.yaml @@ -96,11 +96,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:11 GMT + - Mon, 13 Jan 2025 19:20:20 GMT ETag: - - '"60414cc0-13df"' + - '"676219a3-13df"' Last-Modified: - - Thu, 04 Mar 2021 21:10:24 GMT + - Wed, 18 Dec 2024 00:38:59 GMT Server: - GitHub.com Strict-Transport-Security: @@ -110,19 +110,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - e5d9298268c7bdd7067a72e4ea8783db8d88e446 + - b8d4b3a2f552a15c87fdd3316c3b50e370796ea9 X-GitHub-Request-Id: - - 7618:48C7:FA895C:13B7379:6605BE0D + - 5B40:2C71CC:435F8D9:4C37733:67856773 X-Served-By: - - cache-ewr18138-EWR + - cache-bos4629-BOS X-Timer: - - S1711656851.227854,VS0,VE18 + - S1736796020.301895,VS0,VE46 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:20 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sar/SarItemExtTest.test_required.yaml b/tests/extensions/cassettes/test_sar/SarItemExtTest.test_required.yaml index 0e7e3be62..5b1cedf8a 100644 --- a/tests/extensions/cassettes/test_sar/SarItemExtTest.test_required.yaml +++ b/tests/extensions/cassettes/test_sar/SarItemExtTest.test_required.yaml @@ -96,11 +96,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:11 GMT + - Mon, 13 Jan 2025 19:20:20 GMT ETag: - - '"60414cc0-13df"' + - '"676219a3-13df"' Last-Modified: - - Thu, 04 Mar 2021 21:10:24 GMT + - Wed, 18 Dec 2024 00:38:59 GMT Server: - GitHub.com Strict-Transport-Security: @@ -114,15 +114,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d397019d607aed31b2a04f66d0b25dd450b41316 + - 1506de95766fed759af26b446df264ba423d0c74 X-GitHub-Request-Id: - - 7618:48C7:FA895C:13B7379:6605BE0D + - 5B40:2C71CC:435F8D9:4C37733:67856773 X-Served-By: - - cache-ewr18162-EWR + - cache-bos4633-BOS X-Timer: - - S1711656851.335659,VS0,VE2 + - S1736796020.432947,VS0,VE2 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:20 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sat/SatTest.test_absolute_orbit.yaml b/tests/extensions/cassettes/test_sat/SatTest.test_absolute_orbit.yaml index 8d695d11e..f79e55d50 100644 --- a/tests/extensions/cassettes/test_sat/SatTest.test_absolute_orbit.yaml +++ b/tests/extensions/cassettes/test_sat/SatTest.test_absolute_orbit.yaml @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:11 GMT + - Mon, 13 Jan 2025 19:20:20 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -95,15 +95,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - bcfb538165f1ed6eb713842c5f8c23c670658431 + - ada010c355c4d01d867fb8c9d23b195aacd0c801 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18155-EWR + - cache-bos4626-BOS X-Timer: - - S1711656851.440045,VS0,VE1 + - S1736796021.524468,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sat/SatTest.test_anx_datetime.yaml b/tests/extensions/cassettes/test_sat/SatTest.test_anx_datetime.yaml index f6cedf452..d68d55d1a 100644 --- a/tests/extensions/cassettes/test_sat/SatTest.test_anx_datetime.yaml +++ b/tests/extensions/cassettes/test_sat/SatTest.test_anx_datetime.yaml @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:11 GMT + - Mon, 13 Jan 2025 19:20:20 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -95,15 +95,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5855d55c3129ed7c463643bad42e740c2496f6ed + - 0f48d55ab114115b9405256ba2579febd992aaf7 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18133-EWR + - cache-bos4671-BOS X-Timer: - - S1711656852.523668,VS0,VE1 + - S1736796021.602518,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sat/SatTest.test_both.yaml b/tests/extensions/cassettes/test_sat/SatTest.test_both.yaml index 3a798a007..2464bbb3f 100644 --- a/tests/extensions/cassettes/test_sat/SatTest.test_both.yaml +++ b/tests/extensions/cassettes/test_sat/SatTest.test_both.yaml @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:11 GMT + - Mon, 13 Jan 2025 19:20:20 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -95,15 +95,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - bb8f84f1e1d20b264dc4be681040061cd8b9cd3e + - d1741ebd7a2da1ed046b481eac548a1717afd625 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18182-EWR + - cache-bos4679-BOS X-Timer: - - S1711656852.619960,VS0,VE1 + - S1736796021.678301,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sat/SatTest.test_clear_orbit_state.yaml b/tests/extensions/cassettes/test_sat/SatTest.test_clear_orbit_state.yaml index d4071c4ec..2052adace 100644 --- a/tests/extensions/cassettes/test_sat/SatTest.test_clear_orbit_state.yaml +++ b/tests/extensions/cassettes/test_sat/SatTest.test_clear_orbit_state.yaml @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:11 GMT + - Mon, 13 Jan 2025 19:20:20 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -95,15 +95,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b2f3bfb0ad6d5823743d3501ae1a8963dae8167c + - 2b904a238f1fb05b36f8d45c77f5c5d6406a3aa3 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18124-EWR + - cache-bos4640-BOS X-Timer: - - S1711656852.712335,VS0,VE1 + - S1736796021.754722,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sat/SatTest.test_clear_relative_orbit.yaml b/tests/extensions/cassettes/test_sat/SatTest.test_clear_relative_orbit.yaml index 3c05aa26e..45cdf6d8b 100644 --- a/tests/extensions/cassettes/test_sat/SatTest.test_clear_relative_orbit.yaml +++ b/tests/extensions/cassettes/test_sat/SatTest.test_clear_relative_orbit.yaml @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:11 GMT + - Mon, 13 Jan 2025 19:20:20 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -95,15 +95,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 304de9ef04d23c114fe89c0518a14658d198d539 + - f7c81143941c93c5e6d64b1bbca1619da813b48b X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18172-EWR + - cache-bos4656-BOS X-Timer: - - S1711656852.792111,VS0,VE2 + - S1736796021.840542,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sat/SatTest.test_modify.yaml b/tests/extensions/cassettes/test_sat/SatTest.test_modify.yaml index c7b9ec8ea..81a8ee6f2 100644 --- a/tests/extensions/cassettes/test_sat/SatTest.test_modify.yaml +++ b/tests/extensions/cassettes/test_sat/SatTest.test_modify.yaml @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:11 GMT + - Mon, 13 Jan 2025 19:20:20 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -95,15 +95,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e8759f17b42a190d6596824e1d3f3ae189ee15df + - 472b0f0730c3ab9a48886a264cc21513999140a1 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18131-EWR + - cache-bos4648-BOS X-Timer: - - S1711656852.879966,VS0,VE2 + - S1736796021.930244,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sat/SatTest.test_no_args_fails.yaml b/tests/extensions/cassettes/test_sat/SatTest.test_no_args_fails.yaml index c21cbdda8..547da7930 100644 --- a/tests/extensions/cassettes/test_sat/SatTest.test_no_args_fails.yaml +++ b/tests/extensions/cassettes/test_sat/SatTest.test_no_args_fails.yaml @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:11 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -95,15 +95,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e4bf80856ac8ccee28bb80ec332ca3b1eba47a3c + - 1a4f80f00715724f7896f2201004bdd01c0befd2 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18167-EWR + - cache-bos4684-BOS X-Timer: - - S1711656852.959987,VS0,VE1 + - S1736796021.006232,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sat/SatTest.test_orbit_state.yaml b/tests/extensions/cassettes/test_sat/SatTest.test_orbit_state.yaml index 529b6fa63..314a3d22c 100644 --- a/tests/extensions/cassettes/test_sat/SatTest.test_orbit_state.yaml +++ b/tests/extensions/cassettes/test_sat/SatTest.test_orbit_state.yaml @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:12 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -95,15 +95,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c759393b0b029b910309365709ab3190d5641355 + - 3fb7a84d2c12be9ed1ca8c38cd52a7cf50a300ad X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18137-EWR + - cache-bos4647-BOS X-Timer: - - S1711656852.047860,VS0,VE1 + - S1736796021.088780,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sat/SatTest.test_platform_international_designator.yaml b/tests/extensions/cassettes/test_sat/SatTest.test_platform_international_designator.yaml index a015fb77c..541ca7679 100644 --- a/tests/extensions/cassettes/test_sat/SatTest.test_platform_international_designator.yaml +++ b/tests/extensions/cassettes/test_sat/SatTest.test_platform_international_designator.yaml @@ -67,7 +67,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '1' Cache-Control: - max-age=600 Connection: @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:12 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -95,15 +95,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b2c16a0135a19c27163f0acbb18af3d1065db6ad + - 00488de58ffa739a5a7a0b08a8f2d4ae05f6b41c X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18135-EWR + - cache-bos4624-BOS X-Timer: - - S1711656852.148045,VS0,VE1 + - S1736796021.167013,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sat/SatTest.test_relative_orbit.yaml b/tests/extensions/cassettes/test_sat/SatTest.test_relative_orbit.yaml index 4dddbb953..01df7ff7c 100644 --- a/tests/extensions/cassettes/test_sat/SatTest.test_relative_orbit.yaml +++ b/tests/extensions/cassettes/test_sat/SatTest.test_relative_orbit.yaml @@ -67,7 +67,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '1' Cache-Control: - max-age=600 Connection: @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:12 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -95,15 +95,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1b96d3f1c89001aaea9536d15623fb31a6df848a + - e6c1d806469ef0fc562852f42e6976af5e484092 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18123-EWR + - cache-bos4664-BOS X-Timer: - - S1711656852.235715,VS0,VE2 + - S1736796021.248646,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_sat/SatTest.test_relative_orbit_no_negative.yaml b/tests/extensions/cassettes/test_sat/SatTest.test_relative_orbit_no_negative.yaml index 1d7591463..48011fdf8 100644 --- a/tests/extensions/cassettes/test_sat/SatTest.test_relative_orbit_no_negative.yaml +++ b/tests/extensions/cassettes/test_sat/SatTest.test_relative_orbit_no_negative.yaml @@ -67,7 +67,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '1' Cache-Control: - max-age=600 Connection: @@ -77,11 +77,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:12 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -93,17 +93,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 00e73c4ceb28e1f11f6cc643aabee3ef4d97f139 + - bc20348b2d35f6c142687a45159acf4f4dc65395 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18143-EWR + - cache-bos4656-BOS X-Timer: - - S1711656852.323764,VS0,VE1 + - S1736796021.332376,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_citation.yaml b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_citation.yaml index 313c33736..e1c72defa 100644 --- a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_citation.yaml +++ b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_citation.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '13' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 35e9697f5a6bd4ec9ac662012523b7bc3bc14fb0 + - 8f7d62a327f4c4636cc656dbcb60e000d696fce0 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18157-EWR + - cache-bos4637-BOS X-Timer: - - S1711656853.299977,VS0,VE2 + - S1736796022.298712,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_doi.yaml b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_doi.yaml index f406f58db..7e5656c07 100644 --- a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_doi.yaml +++ b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_doi.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '13' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f3832ea79d0a5145f714fff77203bc49615980f9 + - 6248bc891e72cc70d9c51fbb7360bfb5c105844d X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18168-EWR + - cache-bos4676-BOS X-Timer: - - S1711656853.383860,VS0,VE2 + - S1736796022.372783,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_publications.yaml b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_publications.yaml index 26c42059e..809eba104 100644 --- a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_publications.yaml +++ b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_publications.yaml @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -119,17 +119,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - bc7f127ebfbfc781ce76eb5997ed26f8b390e4a8 + - 9df05e54b2a4c36dfbe7a7517fec913fd25c3b1f X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18172-EWR + - cache-bos4629-BOS X-Timer: - - S1711656853.468089,VS0,VE1 + - S1736796022.468672,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_publications_one.yaml b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_publications_one.yaml index 8cf48c28d..e15889b4f 100644 --- a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_publications_one.yaml +++ b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_publications_one.yaml @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 38bb4777f4f1fe40e4ef6d437ec1b95f0bdc5fb6 + - ffd523e43c55bc5bd70607a2a317341357f9ea3e X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18141-EWR + - cache-bos4680-BOS X-Timer: - - S1711656854.551901,VS0,VE4 + - S1736796023.554354,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_one.yaml b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_one.yaml index 8e0354f86..79113de79 100644 --- a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_one.yaml +++ b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_one.yaml @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -119,17 +119,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 70fff9293c4b36a3722c254aba9c008f6bae9217 + - 50f9439e9f59fb30c841f46263d4ca5565f2ba21 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18131-EWR + - cache-bos4661-BOS X-Timer: - - S1711656854.640471,VS0,VE1 + - S1736796023.661625,VS0,VE16 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_with_none.yaml b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_with_none.yaml index 4532a4fda..4e5f38eed 100644 --- a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_with_none.yaml +++ b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_with_none.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '14' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -119,17 +119,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Fastly-Request-ID: - - 647b12e5a8d154de3f62188b8cda8147d05d8b5a + - 9bf5fe2dd19d64b93a1bd2a2641f5481eb2484b1 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18140-EWR + - cache-bos4665-BOS X-Timer: - - S1711656854.731764,VS0,VE2 + - S1736796023.755128,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_with_some.yaml b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_with_some.yaml index 7e406f2d0..837a02534 100644 --- a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_with_some.yaml +++ b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_all_publications_with_some.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '14' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -119,17 +119,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '15' X-Fastly-Request-ID: - - 0dd3ecdac0c403f38415593dc66ed06318761b9c + - 112608cc555c934869fe997cba94d753c0d13da2 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18138-EWR + - cache-bos4646-BOS X-Timer: - - S1711656854.832231,VS0,VE1 + - S1736796023.830379,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_forward.yaml b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_forward.yaml index bfb270f03..8b2e9a8f9 100644 --- a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_forward.yaml +++ b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_forward.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '14' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 52bdb0ecbce007355d09d9f0d8ed90a09952a35d + - 93e8d3ad4f71a684a1e45582a75ff37e29805aa9 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18143-EWR + - cache-bos4627-BOS X-Timer: - - S1711656854.916145,VS0,VE1 + - S1736796023.898283,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_one.yaml b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_one.yaml index 7d06c828a..81314811a 100644 --- a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_one.yaml +++ b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_one.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '14' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -119,17 +119,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - ec2bd870acaab88506930c067300272611e41805 + - 57dc1fee80b8a8b38009a041d5c4ac192871ca6e X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18154-EWR + - cache-bos4630-BOS X-Timer: - - S1711656854.991805,VS0,VE1 + - S1736796023.976360,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_reverse.yaml b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_reverse.yaml index a218bef15..b47100ee4 100644 --- a/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_reverse.yaml +++ b/tests/extensions/cassettes/test_scientific/CollectionScientificExtensionTest.test_remove_publication_reverse.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '14' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:14 GMT + - Mon, 13 Jan 2025 19:20:23 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 66b5e6f186cde732b2a527562994d4ec59e19525 + - 73a9e08fb9ac6087ac99cbf59fcd939817098036 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18158-EWR + - cache-bos4648-BOS X-Timer: - - S1711656854.076107,VS0,VE1 + - S1736796023.048296,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_citation.yaml b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_citation.yaml index 52d4cb7f5..1ae7245e4 100644 --- a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_citation.yaml +++ b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_citation.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '12' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:12 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9e8ef4993330eef0431924c54bca4cab0cff31e3 + - b3e94bbc95e9efa14c94e86265e196e29114a181 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18154-EWR + - cache-bos4685-BOS X-Timer: - - S1711656852.415663,VS0,VE1 + - S1736796021.432272,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_doi.yaml b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_doi.yaml index 57701a4f9..62398583e 100644 --- a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_doi.yaml +++ b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_doi.yaml @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:12 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c726cbe63cc39bd50636f2ebdd993f61757ff9db + - f83ddfa3632558c35e337aa7dcbd7b52d10924c2 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18131-EWR + - cache-bos4665-BOS X-Timer: - - S1711656852.499847,VS0,VE2 + - S1736796022.510563,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_publications.yaml b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_publications.yaml index c6c018e95..e0ec9415b 100644 --- a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_publications.yaml +++ b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_publications.yaml @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:12 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2f11b5e92119132c0ed28c292ff5c6f3cff52d1e + - 4aeddbb1ad37622ce33aba0940371e4075ede91a X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18172-EWR + - cache-bos4633-BOS X-Timer: - - S1711656853.599640,VS0,VE2 + - S1736796022.608921,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_publications_one.yaml b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_publications_one.yaml index 002cb3029..972f34840 100644 --- a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_publications_one.yaml +++ b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_publications_one.yaml @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:12 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c48d964b472446e5e797db1461dbe68769a1625a + - 3b3cf33c748b0c8ef29a81e5d7bed363c0887272 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18182-EWR + - cache-bos4671-BOS X-Timer: - - S1711656853.683847,VS0,VE1 + - S1736796022.688500,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_one.yaml b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_one.yaml index a6cd149a6..34000ffed 100644 --- a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_one.yaml +++ b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_one.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '13' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:12 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -119,17 +119,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 461951d8fb09dd5e330440b5a61a47775d195862 + - 233ea9c8aa9881ccbaa1a5f4fb50f096238088cb X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18155-EWR + - cache-bos4665-BOS X-Timer: - - S1711656853.764373,VS0,VE1 + - S1736796022.779207,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_with_none.yaml b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_with_none.yaml index 6b36d113b..8aad61f2a 100644 --- a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_with_none.yaml +++ b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_with_none.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '13' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:12 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 589f42576fe72da861a1cd4a915f519d3b33db55 + - 269cfbc5506bf5c90cfe79d5f0881deec767175b X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18148-EWR + - cache-bos4657-BOS X-Timer: - - S1711656853.851960,VS0,VE1 + - S1736796022.870247,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_with_some.yaml b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_with_some.yaml index 475f81a7c..b9a5224a8 100644 --- a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_with_some.yaml +++ b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_all_publications_with_some.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '13' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:12 GMT + - Mon, 13 Jan 2025 19:20:21 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 71fa436cd00bf9cbbef795fb9a4da30e75fe834e + - bbfd23c4fb270a74f88ad0972f3e764a6c3479a4 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18152-EWR + - cache-bos4624-BOS X-Timer: - - S1711656853.939503,VS0,VE2 + - S1736796022.961263,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_forward.yaml b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_forward.yaml index 970dde0ff..4ab502aff 100644 --- a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_forward.yaml +++ b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_forward.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '13' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 740f483bf21ddf48c0adec653a31a0c9b42b7613 + - 9de56d15e9507321b42fc28f369ec6615b2e2f25 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18122-EWR + - cache-bos4651-BOS X-Timer: - - S1711656853.029043,VS0,VE1 + - S1736796022.040642,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_one.yaml b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_one.yaml index 62f567058..9dc533a69 100644 --- a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_one.yaml +++ b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_one.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '13' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 31e1d3fd5618328290582fd033d2b79b02ac0aef + - 69dedaa64290a46aa2b57762c9385aef97707d4c X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18149-EWR + - cache-bos4626-BOS X-Timer: - - S1711656853.120042,VS0,VE2 + - S1736796022.136307,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_reverse.yaml b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_reverse.yaml index a93cb403a..9efb51359 100644 --- a/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_reverse.yaml +++ b/tests/extensions/cassettes/test_scientific/ItemScientificExtensionTest.test_remove_publication_reverse.yaml @@ -93,7 +93,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '13' Cache-Control: - max-age=600 Connection: @@ -103,7 +103,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:13 GMT + - Mon, 13 Jan 2025 19:20:22 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -121,15 +121,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b586ca384b628edf61e77526834e6eab0258a44a + - c80b3c24a4ca9c7505c5030a996e8e3697886565 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-ewr18171-EWR + - cache-bos4663-BOS X-Timer: - - S1711656853.207696,VS0,VE2 + - S1736796022.214390,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_platform.yaml b/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_platform.yaml index 858bba4a6..655d571e2 100644 --- a/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_platform.yaml +++ b/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_platform.yaml @@ -67,11 +67,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:14 GMT + - Mon, 13 Jan 2025 19:20:23 GMT ETag: - - '"60d2ba4e-b93"' + - '"6718ce4f-b93"' Last-Modified: - - Wed, 23 Jun 2021 04:36:30 GMT + - Wed, 23 Oct 2024 10:22:07 GMT Server: - GitHub.com Strict-Transport-Security: @@ -85,15 +85,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 20fc8ac6c74986d6f0ff8c2a4d14308eecb1d894 + - 252f053cfcaebd13270e729c42605903ffc3647f X-GitHub-Request-Id: - - D66A:2AA28D:E2920B:123DE87:6605CF96 + - 174F:F7148:415A840:47E73E1:67856777 X-Served-By: - - cache-ewr18138-EWR + - cache-bos4640-BOS X-Timer: - - S1711656854.293204,VS0,VE2 + - S1736796023.312185,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:14 GMT + - Mon, 13 Jan 2025 19:30:23 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_region.yaml b/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_region.yaml index 1c85cb382..5989a8c83 100644 --- a/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_region.yaml +++ b/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_region.yaml @@ -67,11 +67,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:14 GMT + - Mon, 13 Jan 2025 19:20:23 GMT ETag: - - '"60d2ba4e-b93"' + - '"6718ce4f-b93"' Last-Modified: - - Wed, 23 Jun 2021 04:36:30 GMT + - Wed, 23 Oct 2024 10:22:07 GMT Server: - GitHub.com Strict-Transport-Security: @@ -85,15 +85,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 37948171bc4d6b5ab74a23b9cc7602b1a25af2e0 + - 36183b706395ff4847ca51da9e7775fc9236d608 X-GitHub-Request-Id: - - D66A:2AA28D:E2920B:123DE87:6605CF96 + - 174F:F7148:415A840:47E73E1:67856777 X-Served-By: - - cache-ewr18154-EWR + - cache-bos4623-BOS X-Timer: - - S1711656854.380800,VS0,VE2 + - S1736796023.393312,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:14 GMT + - Mon, 13 Jan 2025 19:30:23 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_requester_pays.yaml b/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_requester_pays.yaml index 44e15cee2..09ee43443 100644 --- a/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_requester_pays.yaml +++ b/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_requester_pays.yaml @@ -67,11 +67,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:14 GMT + - Mon, 13 Jan 2025 19:20:23 GMT ETag: - - '"60d2ba4e-b93"' + - '"6718ce4f-b93"' Last-Modified: - - Wed, 23 Jun 2021 04:36:30 GMT + - Wed, 23 Oct 2024 10:22:07 GMT Server: - GitHub.com Strict-Transport-Security: @@ -83,17 +83,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Fastly-Request-ID: - - c450a180c015532b98a4e405d7defb717cfea02a + - be1e8c939ffc4a75d9b26adfa88052482b0df9cd X-GitHub-Request-Id: - - D66A:2AA28D:E2920B:123DE87:6605CF96 + - 174F:F7148:415A840:47E73E1:67856777 X-Served-By: - - cache-ewr18166-EWR + - cache-bos4652-BOS X-Timer: - - S1711656854.472524,VS0,VE2 + - S1736796023.476157,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:24:14 GMT + - Mon, 13 Jan 2025 19:30:23 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_tier.yaml b/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_tier.yaml index 4268f44a1..b44132675 100644 --- a/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_tier.yaml +++ b/tests/extensions/cassettes/test_storage/AssetStorageExtensionTest.test_tier.yaml @@ -67,11 +67,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:14 GMT + - Mon, 13 Jan 2025 19:20:23 GMT ETag: - - '"60d2ba4e-b93"' + - '"6718ce4f-b93"' Last-Modified: - - Wed, 23 Jun 2021 04:36:30 GMT + - Wed, 23 Oct 2024 10:22:07 GMT Server: - GitHub.com Strict-Transport-Security: @@ -85,15 +85,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6808de99ccc30e822a8488a3adf2000eb0035722 + - 0683566939928fce12051e9e97d730190eb64c22 X-GitHub-Request-Id: - - D66A:2AA28D:E2920B:123DE87:6605CF96 + - 174F:F7148:415A840:47E73E1:67856777 X-Served-By: - - cache-ewr18167-EWR + - cache-bos4636-BOS X-Timer: - - S1711656855.559905,VS0,VE1 + - S1736796024.548794,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:14 GMT + - Mon, 13 Jan 2025 19:30:23 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_storage/ItemStorageExtensionTest.test_validate_storage.yaml b/tests/extensions/cassettes/test_storage/ItemStorageExtensionTest.test_validate_storage.yaml index 39de00c5d..0795d1cad 100644 --- a/tests/extensions/cassettes/test_storage/ItemStorageExtensionTest.test_validate_storage.yaml +++ b/tests/extensions/cassettes/test_storage/ItemStorageExtensionTest.test_validate_storage.yaml @@ -67,11 +67,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:14 GMT + - Mon, 13 Jan 2025 19:20:23 GMT ETag: - - '"60d2ba4e-b93"' + - '"6718ce4f-b93"' Last-Modified: - - Wed, 23 Jun 2021 04:36:30 GMT + - Wed, 23 Oct 2024 10:22:07 GMT Server: - GitHub.com Strict-Transport-Security: @@ -85,15 +85,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 7522fd5fa320651e6e489ad0fb4c39c2fad66527 + - 5580b036b7b524ccd92e81e63e3658e9a889b2dc X-GitHub-Request-Id: - - D66A:2AA28D:E2920B:123DE87:6605CF96 + - 174F:F7148:415A840:47E73E1:67856777 X-Served-By: - - cache-ewr18172-EWR + - cache-bos4632-BOS X-Timer: - - S1711656854.184342,VS0,VE19 + - S1736796023.147101,VS0,VE74 expires: - - Thu, 28 Mar 2024 20:24:14 GMT + - Mon, 13 Jan 2025 19:30:23 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_table/TableTest.test_validate.yaml b/tests/extensions/cassettes/test_table/TableTest.test_validate.yaml index 9f2743b9d..86a6db7a7 100644 --- a/tests/extensions/cassettes/test_table/TableTest.test_validate.yaml +++ b/tests/extensions/cassettes/test_table/TableTest.test_validate.yaml @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:14 GMT + - Mon, 13 Jan 2025 19:20:23 GMT ETag: - '"612cf691-16c2"' Last-Modified: @@ -123,15 +123,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - da46d326688d2f1563b8236239543a5c4162f9f7 + - ce31305a474f7527cd42d0b7d98cfb90fa8d16a9 X-GitHub-Request-Id: - - 5588:2AA28D:E29260:123DED6:6605CF96 + - 55DF:288381:40D82D2:4764DAB:67856777 X-Served-By: - - cache-ewr18123-EWR + - cache-bos4640-BOS X-Timer: - - S1711656855.655748,VS0,VE20 + - S1736796024.622905,VS0,VE27 expires: - - Thu, 28 Mar 2024 20:24:14 GMT + - Mon, 13 Jan 2025 19:30:23 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_expires.yaml b/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_expires.yaml index c4f8fc6ef..63ef3aeea 100644 --- a/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_expires.yaml +++ b/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_expires.yaml @@ -73,7 +73,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:14 GMT + - Mon, 13 Jan 2025 19:20:23 GMT ETag: - '"63b6c089-d09"' Last-Modified: @@ -91,15 +91,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - da64a5cb232d07d7c5aed8347cb48866f29822b2 + - b01df611ac13c2d8ea783f9e39be785576ad456e X-GitHub-Request-Id: - - 214C:2AA28D:E2926E:123DEE8:6605CF96 + - BDDE:382945:41549DD:47E1752:67856777 X-Served-By: - - cache-ewr18128-EWR + - cache-bos4670-BOS X-Timer: - - S1711656855.767597,VS0,VE41 + - S1736796024.734338,VS0,VE47 expires: - - Thu, 28 Mar 2024 20:24:14 GMT + - Mon, 13 Jan 2025 19:30:23 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_published.yaml b/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_published.yaml index 18fc94e3b..119005341 100644 --- a/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_published.yaml +++ b/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_published.yaml @@ -73,7 +73,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:14 GMT + - Mon, 13 Jan 2025 19:20:23 GMT ETag: - '"63b6c089-d09"' Last-Modified: @@ -91,15 +91,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - febedc40dda2e56b2ae4e9373b9330299a7a794d + - 92fdbb6b7d3482134e6dfc70f79ff23fb882eafb X-GitHub-Request-Id: - - 214C:2AA28D:E2926E:123DEE8:6605CF96 + - BDDE:382945:41549DD:47E1752:67856777 X-Served-By: - - cache-ewr18163-EWR + - cache-bos4669-BOS X-Timer: - - S1711656855.887902,VS0,VE1 + - S1736796024.852751,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:14 GMT + - Mon, 13 Jan 2025 19:30:23 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_unpublished.yaml b/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_unpublished.yaml index 0116891e8..b9b9e127e 100644 --- a/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_unpublished.yaml +++ b/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_unpublished.yaml @@ -73,7 +73,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:14 GMT + - Mon, 13 Jan 2025 19:20:23 GMT ETag: - '"63b6c089-d09"' Last-Modified: @@ -91,15 +91,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4d9f2a3f4683516515e8199f43ec9ec87460f376 + - cd1dcdf913fa2c945565b0b8dad4b8c4603df8b1 X-GitHub-Request-Id: - - 214C:2AA28D:E2926E:123DEE8:6605CF96 + - BDDE:382945:41549DD:47E1752:67856777 X-Served-By: - - cache-ewr18152-EWR + - cache-bos4679-BOS X-Timer: - - S1711656855.975720,VS0,VE1 + - S1736796024.923355,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:14 GMT + - Mon, 13 Jan 2025 19:30:23 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_validate_timestamps.yaml b/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_validate_timestamps.yaml index 95f50b708..a7490a72f 100644 --- a/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_validate_timestamps.yaml +++ b/tests/extensions/cassettes/test_timestamps/TimestampsTest.test_validate_timestamps.yaml @@ -73,7 +73,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:15 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"63b6c089-d09"' Last-Modified: @@ -91,15 +91,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 747b22f536bd29e27eacd57ee1224faf812d845d + - e42db9c9186232ce3eab740c78403267f0746efc X-GitHub-Request-Id: - - 214C:2AA28D:E2926E:123DEE8:6605CF96 + - BDDE:382945:41549DD:47E1752:67856777 X-Served-By: - - cache-ewr18161-EWR + - cache-bos4676-BOS X-Timer: - - S1711656855.052801,VS0,VE1 + - S1736796024.998698,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:14 GMT + - Mon, 13 Jan 2025 19:30:23 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_add_deprecated_version.yaml b/tests/extensions/cassettes/test_version/test_add_deprecated_version.yaml index 31d2aae45..09dcc7384 100644 --- a/tests/extensions/cassettes/test_version/test_add_deprecated_version.yaml +++ b/tests/extensions/cassettes/test_version/test_add_deprecated_version.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:15 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 54fc722eb562f8b241da276eb167c733aee63f3c + - b79d5f53a2964f52a526e0dd47bfb383a6ff580d X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18183-EWR + - cache-bos4686-BOS X-Timer: - - S1711656855.468746,VS0,VE2 + - S1736796024.322321,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_add_not_deprecated_version.yaml b/tests/extensions/cassettes/test_version/test_add_not_deprecated_version.yaml index 7d6dc2422..993fb9640 100644 --- a/tests/extensions/cassettes/test_version/test_add_not_deprecated_version.yaml +++ b/tests/extensions/cassettes/test_version/test_add_not_deprecated_version.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:15 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - dc0db08fcee723974d0502852ae47573cdf383ce + - b4bf0e11bbcb426172777b7d991a83488824d45a X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18146-EWR + - cache-bos4684-BOS X-Timer: - - S1711656855.387802,VS0,VE1 + - S1736796024.240216,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_add_version.yaml b/tests/extensions/cassettes/test_version/test_add_version.yaml index 5bc8a8cde..77ba4a393 100644 --- a/tests/extensions/cassettes/test_version/test_add_version.yaml +++ b/tests/extensions/cassettes/test_version/test_add_version.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:15 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 4ccf736922aeb79dde0c1b70b90aa39857effcbb + - e7a5d37ac88cde496a4317b8ba2d9ce95d7eb51d X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18143-EWR + - cache-bos4646-BOS X-Timer: - - S1711656855.195949,VS0,VE21 + - S1736796024.074244,VS0,VE25 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_all_links.yaml b/tests/extensions/cassettes/test_version/test_all_links.yaml index dd6417fb7..4ac825d8c 100644 --- a/tests/extensions/cassettes/test_version/test_all_links.yaml +++ b/tests/extensions/cassettes/test_version/test_all_links.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:15 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e713a14e13edfdc0a6b37375913ff01d84061c48 + - 55f4a88f24c263794494204918e1c26ad801c748 X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18182-EWR + - cache-bos4652-BOS X-Timer: - - S1711656856.835577,VS0,VE1 + - S1736796025.646043,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_assets.yaml b/tests/extensions/cassettes/test_version/test_assets.yaml index 3713061ed..ca9a79d0a 100644 --- a/tests/extensions/cassettes/test_version/test_assets.yaml +++ b/tests/extensions/cassettes/test_version/test_assets.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:16 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 47d3507a606e8c94547cac8281cfa44ed86f7eea + - ffe2258c5fc93c0b3dc25ef68ec2d889adb39441 X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18149-EWR + - cache-bos4670-BOS X-Timer: - - S1711656856.352712,VS0,VE1 + - S1736796025.134458,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_catalog_add_version.yaml b/tests/extensions/cassettes/test_version/test_catalog_add_version.yaml index 212078f2e..8c159c419 100644 --- a/tests/extensions/cassettes/test_version/test_catalog_add_version.yaml +++ b/tests/extensions/cassettes/test_version/test_catalog_add_version.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:16 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f00357c91fb17d7f94d26fbe7af49983fbe19701 + - e2b9787de67554e82ac2991455f5d74255a64105 X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18124-EWR + - cache-bos4645-BOS X-Timer: - - S1711656856.099848,VS0,VE2 + - S1736796025.906427,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_catalog_validate_all.yaml b/tests/extensions/cassettes/test_version/test_catalog_validate_all.yaml index fe8b09016..880b4f6c9 100644 --- a/tests/extensions/cassettes/test_version/test_catalog_validate_all.yaml +++ b/tests/extensions/cassettes/test_version/test_catalog_validate_all.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:16 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -91,17 +91,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 2a7c1566f89edd6b33c1826e458880be9f68c0cf + - 701fb7c28624930f0cf64e3c91070ff3a8feabfe X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18159-EWR + - cache-bos4676-BOS X-Timer: - - S1711656856.175934,VS0,VE1 + - S1736796025.980400,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_collection_add_version.yaml b/tests/extensions/cassettes/test_version/test_collection_add_version.yaml index 73d8cb4d7..edaa4acd4 100644 --- a/tests/extensions/cassettes/test_version/test_collection_add_version.yaml +++ b/tests/extensions/cassettes/test_version/test_collection_add_version.yaml @@ -65,7 +65,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '1' Cache-Control: - max-age=600 Connection: @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:15 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -91,17 +91,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - ef2f1807808f816eca56f6638524480c74415859 + - aa1ad300b49c3f711d2c8f4de2cf474015a1e6ea X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18178-EWR + - cache-bos4675-BOS X-Timer: - - S1711656856.939431,VS0,VE1 + - S1736796025.740618,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_collection_validate_all.yaml b/tests/extensions/cassettes/test_version/test_collection_validate_all.yaml index 66281a236..b0eac6a7c 100644 --- a/tests/extensions/cassettes/test_version/test_collection_validate_all.yaml +++ b/tests/extensions/cassettes/test_version/test_collection_validate_all.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:16 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b92e04eb1c0f1f0ef96f7bf3fe9dfa1d2ba93c6d + - 559acbdbd394789a272ee34e95f23e1556243091 X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18170-EWR + - cache-bos4685-BOS X-Timer: - - S1711656856.023776,VS0,VE2 + - S1736796025.822154,VS0,VE3 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_latest.yaml b/tests/extensions/cassettes/test_version/test_latest.yaml index bfe797a06..45e4b5217 100644 --- a/tests/extensions/cassettes/test_version/test_latest.yaml +++ b/tests/extensions/cassettes/test_version/test_latest.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:15 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2ba1e5fe4a6c12a0abb967ba6c8b69a504c3a327 + - 7fbe0f7eece8db0f90f3ca02af6a2e4bd5672d61 X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18178-EWR + - cache-bos4668-BOS X-Timer: - - S1711656856.548722,VS0,VE1 + - S1736796024.386501,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_optional_version.yaml b/tests/extensions/cassettes/test_version/test_optional_version.yaml index 9e934014f..098eaa17b 100644 --- a/tests/extensions/cassettes/test_version/test_optional_version.yaml +++ b/tests/extensions/cassettes/test_version/test_optional_version.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:16 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2d5f153958d83b0ac42b072d1a7569343d66f0cf + - 5c8f7d7384053c971ee5eacdcfabf24ee2d84aa9 X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18129-EWR + - cache-bos4658-BOS X-Timer: - - S1711656856.268714,VS0,VE1 + - S1736796025.056603,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_predecessor.yaml b/tests/extensions/cassettes/test_version/test_predecessor.yaml index 4428d5d70..e4766dbbf 100644 --- a/tests/extensions/cassettes/test_version/test_predecessor.yaml +++ b/tests/extensions/cassettes/test_version/test_predecessor.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:15 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 24603ef34571bce7178355bea0d2fb27a6c54095 + - 1cd19a2ef3b1e73726b7c0e94806cc974ae70507 X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18150-EWR + - cache-bos4676-BOS X-Timer: - - S1711656856.639423,VS0,VE1 + - S1736796024.466737,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_successor.yaml b/tests/extensions/cassettes/test_version/test_successor.yaml index 104d2e209..53750f04f 100644 --- a/tests/extensions/cassettes/test_version/test_successor.yaml +++ b/tests/extensions/cassettes/test_version/test_successor.yaml @@ -65,7 +65,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '0' Cache-Control: - max-age=600 Connection: @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:15 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -91,17 +91,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - d335c8512f492a4ab51ad44226fb7f3bf06948fb + - b9720817582bc0d23db7f9d5964b2018a46f2eda X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18175-EWR + - cache-bos4668-BOS X-Timer: - - S1711656856.731800,VS0,VE2 + - S1736796025.562845,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_version/test_version_in_properties.yaml b/tests/extensions/cassettes/test_version/test_version_in_properties.yaml index cd1e776ac..d73ce11bc 100644 --- a/tests/extensions/cassettes/test_version/test_version_in_properties.yaml +++ b/tests/extensions/cassettes/test_version/test_version_in_properties.yaml @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:15 GMT + - Mon, 13 Jan 2025 19:20:24 GMT ETag: - '"645249bd-d4d"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5cb87899f51067596b6ab23971e9489c262175d5 + - b8347ce9febf5cab6c6f22b5f2231fe407a1f88a X-GitHub-Request-Id: - - A0A8:7C51:E731A8:1285E70:6605CF97 + - ED3A:3FCA78:425D7B6:48EA5F3:67856778 X-Served-By: - - cache-ewr18179-EWR + - cache-bos4665-BOS X-Timer: - - S1711656855.295886,VS0,VE1 + - S1736796024.166593,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:15 GMT + - Mon, 13 Jan 2025 19:30:24 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_view/ViewTest.test_azimuth.yaml b/tests/extensions/cassettes/test_view/ViewTest.test_azimuth.yaml index 6864d1a02..cd39f1baa 100644 --- a/tests/extensions/cassettes/test_view/ViewTest.test_azimuth.yaml +++ b/tests/extensions/cassettes/test_view/ViewTest.test_azimuth.yaml @@ -65,7 +65,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '33' + - '17' Cache-Control: - max-age=600 Connection: @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:16 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 079d79e9583d00461c195c334a89a77c37b2099d + - 5764fb6865ab270f9a95d669ea51542c51956a7f X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18158-EWR + - cache-bos4679-BOS X-Timer: - - S1711656856.444540,VS0,VE2 + - S1736796025.218432,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -187,11 +187,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:16 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -203,17 +203,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - a7d732463cb07d2c71238558ad49bb679fd62834 + - f1ff48ea08349a9154c255da49b0883420d8f3f5 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18143-EWR + - cache-bos4666-BOS X-Timer: - - S1711656857.543018,VS0,VE1 + - S1736796025.288342,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_view/ViewTest.test_incidence_angle.yaml b/tests/extensions/cassettes/test_view/ViewTest.test_incidence_angle.yaml index 13886648c..8218b4a6d 100644 --- a/tests/extensions/cassettes/test_view/ViewTest.test_incidence_angle.yaml +++ b/tests/extensions/cassettes/test_view/ViewTest.test_incidence_angle.yaml @@ -65,7 +65,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '34' + - '17' Cache-Control: - max-age=600 Connection: @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:16 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8acc0a35330a7c1eab5d5c9372e0246eb283b848 + - 4859a79dbc3181146736ea5ea7d07a611d2a7288 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18151-EWR + - cache-bos4620-BOS X-Timer: - - S1711656857.647802,VS0,VE10 + - S1736796025.362478,VS0,VE2 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -187,11 +187,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:16 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -205,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - decc3a381ba265a151a001c249a008d831b5128a + - 10bc5aad05b2d1b3d166ceda7d76ccea20707076 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18183-EWR + - cache-bos4676-BOS X-Timer: - - S1711656857.735959,VS0,VE1 + - S1736796025.436880,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_view/ViewTest.test_off_nadir.yaml b/tests/extensions/cassettes/test_view/ViewTest.test_off_nadir.yaml index 644078bf1..4bb064d73 100644 --- a/tests/extensions/cassettes/test_view/ViewTest.test_off_nadir.yaml +++ b/tests/extensions/cassettes/test_view/ViewTest.test_off_nadir.yaml @@ -65,7 +65,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '33' + - '17' Cache-Control: - max-age=600 Connection: @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:16 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -91,17 +91,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - d0378eba2858ecd5e78fd731f012e8a54d1d661e + - 30e4f1da3839e0e9ab2774b06b7f0d644ffd8947 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18155-EWR + - cache-bos4626-BOS X-Timer: - - S1711656857.832326,VS0,VE1 + - S1736796026.518244,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -187,11 +187,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:16 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -205,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - cc9b6aaa9d66ed565a852d77d83cf588012b815e + - 3efd4457cd8546b94691c0eef2c077e70c8f638a X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18132-EWR + - cache-bos4668-BOS X-Timer: - - S1711656857.916931,VS0,VE1 + - S1736796026.588359,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_view/ViewTest.test_sun_azimuth.yaml b/tests/extensions/cassettes/test_view/ViewTest.test_sun_azimuth.yaml index 5e2fa54c0..31b712384 100644 --- a/tests/extensions/cassettes/test_view/ViewTest.test_sun_azimuth.yaml +++ b/tests/extensions/cassettes/test_view/ViewTest.test_sun_azimuth.yaml @@ -65,7 +65,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '34' + - '17' Cache-Control: - max-age=600 Connection: @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:17 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - c3bb0e1e97abf619667b74c9fd7ce66e9e2c0ca9 + - cf9f58c5c09d5c8fca7160bf48949e579613540c X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18172-EWR + - cache-bos4679-BOS X-Timer: - - S1711656857.003637,VS0,VE0 + - S1736796026.665286,VS0,VE0 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -177,7 +177,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '6' Cache-Control: - max-age=600 Connection: @@ -187,11 +187,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:17 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -203,17 +203,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 0c9c36c81709d8debd9e9c8646664d70cf3c5af1 + - bb58e6138d953d5ee082a63b6fed11d72a5ab476 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18123-EWR + - cache-bos4681-BOS X-Timer: - - S1711656857.084002,VS0,VE1 + - S1736796026.723047,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_view/ViewTest.test_sun_elevation.yaml b/tests/extensions/cassettes/test_view/ViewTest.test_sun_elevation.yaml index 61e497f42..297be9e59 100644 --- a/tests/extensions/cassettes/test_view/ViewTest.test_sun_elevation.yaml +++ b/tests/extensions/cassettes/test_view/ViewTest.test_sun_elevation.yaml @@ -65,7 +65,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '34' + - '17' Cache-Control: - max-age=600 Connection: @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:17 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5b2d7f35c240c1a766167a98ce8b98c6c2f2d397 + - 05c1b95d02c4941716b7daf97b4327627ea31ee4 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18132-EWR + - cache-bos4681-BOS X-Timer: - - S1711656857.175807,VS0,VE2 + - S1736796026.797097,VS0,VE2 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -177,7 +177,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '6' Cache-Control: - max-age=600 Connection: @@ -187,11 +187,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:17 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -205,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8053c1df14918f24fd630f3724c120e1ccf7f3b6 + - e9bb5205c6510c0c299bf4fc6e4cf59f1af3a66a X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18128-EWR + - cache-bos4667-BOS X-Timer: - - S1711656857.244578,VS0,VE2 + - S1736796026.876469,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_view/ViewTest.test_validate_view.yaml b/tests/extensions/cassettes/test_view/ViewTest.test_validate_view.yaml index af1fb84ad..c72b98eff 100644 --- a/tests/extensions/cassettes/test_view/ViewTest.test_validate_view.yaml +++ b/tests/extensions/cassettes/test_view/ViewTest.test_validate_view.yaml @@ -65,7 +65,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '34' + - '17' Cache-Control: - max-age=600 Connection: @@ -75,7 +75,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:17 GMT + - Mon, 13 Jan 2025 19:20:25 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -93,15 +93,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - c6c8ff2dc7c4568e6ab1fe41a20d722d3c355053 + - 17ca76693480e855a35d1e2a18f905b8a4063b6d X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18129-EWR + - cache-bos4639-BOS X-Timer: - - S1711656857.332008,VS0,VE0 + - S1736796026.950708,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -177,7 +177,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '6' Cache-Control: - max-age=600 Connection: @@ -187,11 +187,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:17 GMT + - Mon, 13 Jan 2025 19:20:26 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -205,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c2a046b443092ddae449c87581f4e15e02e7f28a + - 0e8c541c17c903aff284f982db7d5d04433996a4 X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-ewr18166-EWR + - cache-bos4660-BOS X-Timer: - - S1711656857.411514,VS0,VE2 + - S1736796026.020395,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_xarray_assets/test_collection_validate.yaml b/tests/extensions/cassettes/test_xarray_assets/test_collection_validate.yaml index f5328ceb4..c41b3211e 100644 --- a/tests/extensions/cassettes/test_xarray_assets/test_collection_validate.yaml +++ b/tests/extensions/cassettes/test_xarray_assets/test_collection_validate.yaml @@ -69,7 +69,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:17 GMT + - Mon, 13 Jan 2025 19:20:26 GMT ETag: - '"60dcd7ae-bb0"' Last-Modified: @@ -87,15 +87,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - bc63109291265e603d4fec866091753d0e6d994f + - f886909b8c56a01b5b031d823ed4045a67a89daa X-GitHub-Request-Id: - - F49C:276508:DB1C23:11C682C:6605CF99 + - 8DC2:3528DA:40A9F37:4736A49:6785677A X-Served-By: - - cache-ewr18156-EWR + - cache-bos4620-BOS X-Timer: - - S1711656858.663582,VS0,VE1 + - S1736796026.218622,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:17 GMT + - Mon, 13 Jan 2025 19:30:26 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_xarray_assets/test_item_validate.yaml b/tests/extensions/cassettes/test_xarray_assets/test_item_validate.yaml index 68ef1e885..c17fe3198 100644 --- a/tests/extensions/cassettes/test_xarray_assets/test_item_validate.yaml +++ b/tests/extensions/cassettes/test_xarray_assets/test_item_validate.yaml @@ -69,7 +69,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:17 GMT + - Mon, 13 Jan 2025 19:20:26 GMT ETag: - '"60dcd7ae-bb0"' Last-Modified: @@ -87,15 +87,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 73f8febc41032a67c9bfd1327bf7c42753f2bcb9 + - ae70de0b7f3c3cebb2d43f7513e0fe93edb4b631 X-GitHub-Request-Id: - - F49C:276508:DB1C23:11C682C:6605CF99 + - 8DC2:3528DA:40A9F37:4736A49:6785677A X-Served-By: - - cache-ewr18134-EWR + - cache-bos4652-BOS X-Timer: - - S1711656858.532665,VS0,VE38 + - S1736796026.106440,VS0,VE41 expires: - - Thu, 28 Mar 2024 20:24:17 GMT + - Mon, 13 Jan 2025 19:30:26 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_xarray_assets/test_set_field[open_kwargs-value1].yaml b/tests/extensions/cassettes/test_xarray_assets/test_set_field[open_kwargs-value1].yaml index e5f9d4861..754de284c 100644 --- a/tests/extensions/cassettes/test_xarray_assets/test_set_field[open_kwargs-value1].yaml +++ b/tests/extensions/cassettes/test_xarray_assets/test_set_field[open_kwargs-value1].yaml @@ -69,7 +69,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:17 GMT + - Mon, 13 Jan 2025 19:20:26 GMT ETag: - '"60dcd7ae-bb0"' Last-Modified: @@ -85,17 +85,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 9b0af03233b57657694c8d3015b7ca1869796c8e + - 065f4bc056a7dbce6c0f22dede74a711242de6d9 X-GitHub-Request-Id: - - F49C:276508:DB1C23:11C682C:6605CF99 + - 8DC2:3528DA:40A9F37:4736A49:6785677A X-Served-By: - - cache-ewr18139-EWR + - cache-bos4652-BOS X-Timer: - - S1711656858.836187,VS0,VE1 + - S1736796026.382069,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:17 GMT + - Mon, 13 Jan 2025 19:30:26 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/cassettes/test_xarray_assets/test_set_field[storage_options-value0].yaml b/tests/extensions/cassettes/test_xarray_assets/test_set_field[storage_options-value0].yaml index 488783a44..8efaa394f 100644 --- a/tests/extensions/cassettes/test_xarray_assets/test_set_field[storage_options-value0].yaml +++ b/tests/extensions/cassettes/test_xarray_assets/test_set_field[storage_options-value0].yaml @@ -69,7 +69,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:17 GMT + - Mon, 13 Jan 2025 19:20:26 GMT ETag: - '"60dcd7ae-bb0"' Last-Modified: @@ -87,15 +87,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 31d6b10ea8d5c0d793c7c4f408a9e75b7ace0e32 + - ec92d23e55abf129323930c0e896029a0fb3d48a X-GitHub-Request-Id: - - F49C:276508:DB1C23:11C682C:6605CF99 + - 8DC2:3528DA:40A9F37:4736A49:6785677A X-Served-By: - - cache-ewr18139-EWR + - cache-bos4664-BOS X-Timer: - - S1711656858.752650,VS0,VE2 + - S1736796026.308024,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:17 GMT + - Mon, 13 Jan 2025 19:30:26 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/extensions/test_eo.py b/tests/extensions/test_eo.py index a51ac6c10..b0b1703c2 100644 --- a/tests/extensions/test_eo.py +++ b/tests/extensions/test_eo.py @@ -366,8 +366,9 @@ def test_migration(self) -> None: item = Item.from_file(self.item_0_8_path) self.assertNotIn("eo:epsg", item.properties) - self.assertIn("proj:epsg", item.properties) + self.assertIn("proj:code", item.properties) self.assertIn(ProjectionExtension.get_schema_uri(), item.stac_extensions) + assert item.ext.proj.epsg == item_dict["properties"]["eo:epsg"] @pytest.fixture diff --git a/tests/extensions/test_projection.py b/tests/extensions/test_projection.py index 74d36cc35..3ddf27c21 100644 --- a/tests/extensions/test_projection.py +++ b/tests/extensions/test_projection.py @@ -92,7 +92,7 @@ def test_apply(self) -> None: ProjectionExtension.add_to(item) ProjectionExtension.ext(item).apply( - 4326, + epsg=4326, wkt2=WKT2, projjson=PROJJSON, geometry=item.geometry, @@ -121,14 +121,15 @@ def test_epsg(self) -> None: proj_item = pystac.Item.from_file(self.example_uri) # Get - self.assertIn("proj:epsg", proj_item.properties) + self.assertNotIn("proj:epsg", proj_item.properties) + self.assertIn("proj:code", proj_item.properties) proj_epsg = ProjectionExtension.ext(proj_item).epsg - self.assertEqual(proj_epsg, proj_item.properties["proj:epsg"]) + self.assertEqual(f"EPSG:{proj_epsg}", proj_item.properties["proj:code"]) # Set assert proj_epsg is not None ProjectionExtension.ext(proj_item).epsg = proj_epsg + 100 - self.assertEqual(proj_epsg + 100, proj_item.properties["proj:epsg"]) + self.assertEqual(f"EPSG:{proj_epsg + 100}", proj_item.properties["proj:code"]) # Get from Asset asset_no_prop = proj_item.assets["B1"] @@ -156,6 +157,7 @@ def test_optional_epsg(self) -> None: # No proj info on item self.assertNotIn("proj:epsg", proj_item.properties) + self.assertNotIn("proj:code", proj_item.properties) # Some proj info on assets asset_no_prop = proj_item.assets["metadata"] @@ -250,6 +252,7 @@ def test_crs_string(self) -> None: for key in list(item.properties.keys()): if key.startswith("proj:"): item.properties.pop(key) + self.assertIsNone(item.properties.get("proj:code")) self.assertIsNone(item.properties.get("proj:epsg")) self.assertIsNone(item.properties.get("proj:wkt2")) self.assertIsNone(item.properties.get("proj:projjson")) @@ -266,6 +269,9 @@ def test_crs_string(self) -> None: projection.epsg = 4326 self.assertEqual(projection.crs_string, "EPSG:4326") + projection.code = "IAU_2015:49900" + self.assertEqual(projection.crs_string, "IAU_2015:49900") + @pytest.mark.vcr() def test_geometry(self) -> None: proj_item = pystac.Item.from_file(self.example_uri) @@ -530,8 +536,7 @@ def test_set_summaries(self) -> None: proj_summaries.epsg = [4326] col_dict = col.to_dict() - self.assertEqual(len(col_dict["summaries"]["proj:epsg"]), 1) - self.assertEqual(col_dict["summaries"]["proj:epsg"][0], 4326) + self.assertEqual(col_dict["summaries"]["proj:code"], ["EPSG:4326"]) def test_summaries_adds_uri(self) -> None: col = pystac.Collection.from_file(self.example_uri) @@ -549,9 +554,46 @@ def test_summaries_adds_uri(self) -> None: self.assertNotIn(ProjectionExtension.get_schema_uri(), col.stac_extensions) +def test_no_args_for_extension_class(item: Item) -> None: + item.ext.add("proj") + with pytest.raises(TypeError, match="takes 1 positional argument but 2 were given"): + item.ext.proj.apply(32614) # type:ignore + + +def test_set_both_code_and_epsg(item: Item) -> None: + item.ext.add("proj") + with pytest.raises(KeyError, match="Only one of the options"): + item.ext.proj.apply(epsg=32614, code="EPSG:32614") + + +@pytest.mark.vcr() +def test_get_set_code(projection_landsat8_item: Item) -> None: + proj_item = projection_landsat8_item + assert proj_item.ext.proj.code == proj_item.properties["proj:code"] + assert proj_item.ext.proj.epsg == 32614 + + proj_item.ext.proj.code = "IAU_2015:30100" + assert proj_item.ext.proj.epsg is None + assert proj_item.properties["proj:code"] == "IAU_2015:30100" + + +def test_migrate() -> None: + old = "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + current = "https://stac-extensions.github.io/projection/v2.0.0/schema.json" + + path = TestCases.get_path("data-files/projection/example-with-version-1.1.json") + item = Item.from_file(path) + + assert old not in item.stac_extensions + assert current in item.stac_extensions + + assert item.ext.proj.epsg == 32614 + assert item.ext.proj.code == "EPSG:32614" + + def test_older_extension_version(projection_landsat8_item: Item) -> None: old = "https://stac-extensions.github.io/projection/v1.0.0/schema.json" - current = "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + current = "https://stac-extensions.github.io/projection/v2.0.0/schema.json" stac_extensions = set(projection_landsat8_item.stac_extensions) stac_extensions.remove(current) @@ -570,8 +612,8 @@ def test_older_extension_version(projection_landsat8_item: Item) -> None: def test_newer_extension_version(projection_landsat8_item: Item) -> None: - new = "https://stac-extensions.github.io/projection/v2.0.0/schema.json" - current = "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + new = "https://stac-extensions.github.io/projection/v2.1.0/schema.json" + current = "https://stac-extensions.github.io/projection/v2.0.0/schema.json" stac_extensions = set(projection_landsat8_item.stac_extensions) stac_extensions.remove(current) diff --git a/tests/test_summaries.py b/tests/test_summaries.py index 208e2632d..a37aabd2d 100644 --- a/tests/test_summaries.py +++ b/tests/test_summaries.py @@ -12,7 +12,7 @@ def test_summary(self) -> None: summaries = Summarizer().summarize(coll.get_items(recursive=True)) summaries_dict = summaries.to_dict() self.assertEqual(len(summaries_dict["eo:bands"]), 4) - self.assertEqual(len(summaries_dict["proj:epsg"]), 1) + self.assertEqual(len(summaries_dict["proj:code"]), 1) def test_summary_limit(self) -> None: coll = TestCases.case_5() @@ -20,7 +20,7 @@ def test_summary_limit(self) -> None: summaries.maxcount = 2 summaries_dict = summaries.to_dict() self.assertIsNone(summaries_dict.get("eo:bands")) - self.assertEqual(len(summaries_dict["proj:epsg"]), 1) + self.assertEqual(len(summaries_dict["proj:code"]), 1) def test_summary_custom_fields_file(self) -> None: coll = TestCases.case_5() @@ -28,21 +28,21 @@ def test_summary_custom_fields_file(self) -> None: summaries = Summarizer(path).summarize(coll.get_items(recursive=True)) summaries_dict = summaries.to_dict() self.assertIsNone(summaries_dict.get("eo:bands")) - self.assertEqual(len(summaries_dict["proj:epsg"]), 1) + self.assertEqual(len(summaries_dict["proj:code"]), 1) def test_summary_custom_fields_dict(self) -> None: coll = TestCases.case_5() spec = { "eo:bands": SummaryStrategy.DONT_SUMMARIZE, - "proj:epsg": SummaryStrategy.ARRAY, + "proj:code": SummaryStrategy.ARRAY, } obj = Summarizer(spec) self.assertTrue("eo:bands" not in obj.summaryfields) - self.assertEqual(obj.summaryfields["proj:epsg"], SummaryStrategy.ARRAY) + self.assertEqual(obj.summaryfields["proj:code"], SummaryStrategy.ARRAY) summaries = obj.summarize(coll.get_items(recursive=True)) summaries_dict = summaries.to_dict() self.assertIsNone(summaries_dict.get("eo:bands")) - self.assertEqual(len(summaries_dict["proj:epsg"]), 1) + self.assertEqual(len(summaries_dict["proj:code"]), 1) def test_summary_wrong_custom_fields_file(self) -> None: coll = TestCases.case_5() @@ -77,8 +77,6 @@ def test_clone_summary(self) -> None: coll = TestCases.case_5() summaries = Summarizer().summarize(coll.get_items(recursive=True)) summaries_dict = summaries.to_dict() - self.assertEqual(len(summaries_dict["eo:bands"]), 4) - self.assertEqual(len(summaries_dict["proj:epsg"]), 1) clone = summaries.clone() self.assertTrue(isinstance(clone, Summaries)) clone_dict = clone.to_dict() diff --git a/tests/utils/test_cases.py b/tests/utils/test_cases.py index 220814513..97184d836 100644 --- a/tests/utils/test_cases.py +++ b/tests/utils/test_cases.py @@ -214,6 +214,6 @@ def case_8() -> Collection: """Planet disaster data example catalog, 1.0.0-beta.2""" return Collection.from_file( TestCases.get_path( - "data-files/catalogs/" "planet-example-v1.0.0-beta.2/collection.json" + "data-files/catalogs/planet-example-v1.0.0-beta.2/collection.json" ) ) diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all.yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all.yaml index 5faa4bd0f..c4f830da0 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all.yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all.yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '96' + - '83' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:17 GMT + - Mon, 13 Jan 2025 19:21:51 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -136,17 +136,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Fastly-Request-ID: - - 337f79c45b418f160209fa97216eaf1dcff4f2dd + - ce30ef0c0ccf4d7c7545ee30cf469f9270abc3a5 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18137-EWR + - cache-bos4621-BOS X-Timer: - - S1711656918.812349,VS0,VE1 + - S1736796112.640353,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_deprecated_dict_arg.yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_deprecated_dict_arg.yaml index 672737282..f9a09e1a2 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_deprecated_dict_arg.yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_deprecated_dict_arg.yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '96' + - '83' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:17 GMT + - Mon, 13 Jan 2025 19:21:51 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -136,17 +136,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - f4b5756c757059d160c1b32a542f4ffd06e00f08 + - 79d7099a0f84d2b8f2ceb6d77c62ec18ecf5bf55 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18153-EWR + - cache-bos4676-BOS X-Timer: - - S1711656918.672135,VS0,VE2 + - S1736796111.484742,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case0].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case0].yaml index 8b69831f2..0db431c89 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case0].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case0].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '96' + - '83' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:17 GMT + - Mon, 13 Jan 2025 19:21:51 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c2b1f3b2dba7847868fee939b6b074f0fed558ba + - 9efab83feeed88e94d8f8dccb4d4a13b08c2f0cf X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18147-EWR + - cache-bos4633-BOS X-Timer: - - S1711656918.935538,VS0,VE2 + - S1736796112.792366,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -223,13 +223,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:18 GMT + - Mon, 13 Jan 2025 19:21:51 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:20:18 GMT + - Mon, 13 Jan 2025 19:26:51 GMT Source-Age: - - '60' + - '64' Strict-Transport-Security: - max-age=31536000 Vary: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b3a5bef4df6a0ad15bf390aa53361a9ad5820754 + - cee81892a875a8eac322bdd487c84d7df254fad3 X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-ewr18128-EWR + - cache-bos4683-BOS X-Timer: - - S1711656918.064033,VS0,VE1 + - S1736796112.932124,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -347,13 +347,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:18 GMT + - Mon, 13 Jan 2025 19:21:52 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:20:18 GMT + - Mon, 13 Jan 2025 19:26:52 GMT Source-Age: - - '59' + - '63' Strict-Transport-Security: - max-age=31536000 Vary: @@ -363,19 +363,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2fa67d31b4f0fccc1b966f4ac7c93c4121ec9fc8 + - 720c7da1e9e3acbc3b625fd8efe57629a190b0a6 X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-ewr18176-EWR + - cache-bos4663-BOS X-Timer: - - S1711656918.144194,VS0,VE1 + - S1736796112.006588,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -503,11 +503,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:18 GMT + - Mon, 13 Jan 2025 19:21:52 GMT ETag: - - '"65bd0237-1b3a"' + - '"66e1651c-1b3a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -519,15 +519,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 30d2ae6fbadbd4344e3aabd9019ee55b98106a2a + - 6f6c954d41d546c1aa0437d2b6fa0c0a9c6708bc X-GitHub-Request-Id: - - 5344:EFB2:19A019B:1D70D25:6605CFD5 + - F56B:389225:4353F9D:49E11FC:678567CF X-Served-By: - - cache-ewr18164-EWR + - cache-bos4683-BOS X-Timer: - - S1711656918.224247,VS0,VE25 + - S1736796112.102884,VS0,VE47 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -570,11 +570,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:18 GMT + - Mon, 13 Jan 2025 19:21:52 GMT ETag: - - '"65bd0237-21a"' + - '"66e1651c-21a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -586,17 +586,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - f508efab6b82a218c813b54a68c9befade08fcc2 + - eaf6f7a9ad4691e848d75a6adb3f01a74bb173b9 X-GitHub-Request-Id: - - 66A0:23BA3B:1BC78BF:1F9BD8C:6605CFD1 + - B8B6:EC30A:40FF2D0:478C2E1:678567D0 X-Served-By: - - cache-ewr18177-EWR + - cache-bos4649-BOS X-Timer: - - S1711656918.343929,VS0,VE14 + - S1736796112.240147,VS0,VE36 expires: - - Thu, 28 Mar 2024 20:25:18 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -652,11 +650,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:18 GMT + - Mon, 13 Jan 2025 19:21:52 GMT ETag: - - '"65bd0237-5c5"' + - '"66e1651c-5c5"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -668,15 +666,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 7e8007d7c9d590b150b0835edbf6a58c9e35d3c0 + - c54782207905b8dd52314475212dba10738d4fb1 X-GitHub-Request-Id: - - BBE4:2EEE1A:1A5C275:1E2F199:6605CFD6 + - F554:3528DA:40AFF50:473D1A7:678567CE X-Served-By: - - cache-ewr18181-EWR + - cache-bos4662-BOS X-Timer: - - S1711656918.439503,VS0,VE173 + - S1736796112.358565,VS0,VE40 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -721,11 +721,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:18 GMT + - Mon, 13 Jan 2025 19:21:52 GMT ETag: - - '"65bd0237-2bd"' + - '"66e1651c-2bd"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -737,15 +737,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - e49c1cde5e7e937d1ec77cb1118dc48ed7dc9471 + - 51d6663f09a089619e88e91f19ac1140463653aa X-GitHub-Request-Id: - - 7FB6:26EB4F:19C05FB:1D93464:6605CFD6 + - BC49:19EC47:4201D70:488EEBD:678567D0 X-Served-By: - - cache-ewr18134-EWR + - cache-bos4661-BOS X-Timer: - - S1711656919.691585,VS0,VE155 + - S1736796112.478569,VS0,VE36 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -785,11 +787,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:19 GMT + - Mon, 13 Jan 2025 19:21:52 GMT ETag: - - '"65bd0237-133"' + - '"66e1651c-133"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -801,15 +803,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - aea98cc12c6eb3e0847eff68f830d6049d8f999a + - f558e67fa153b2c49601c53e3b5e9917bd4a9c56 X-GitHub-Request-Id: - - 3954:9F5C8:194C687:1D1E226:6605CFD6 + - ABD0:19EC47:4201D8E:488EEDF:678567D0 X-Served-By: - - cache-ewr18170-EWR + - cache-bos4659-BOS X-Timer: - - S1711656919.919727,VS0,VE229 + - S1736796113.602814,VS0,VE21 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -860,11 +864,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:19 GMT + - Mon, 13 Jan 2025 19:21:52 GMT ETag: - - '"65bd0237-474"' + - '"66e1651c-474"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -876,15 +880,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 7d7bbbdfbd0e21114c0ce779f6d0c1e6a90366a5 + - 6a3773148325c496d0ca1be7e8b7335ecfdca8df X-GitHub-Request-Id: - - 3084:2B8D2:1AF23B5:1EC4E00:6605CFD7 + - 2AC2:1660B9:4194629:4821ACF:678567D0 X-Served-By: - - cache-ewr18127-EWR + - cache-bos4633-BOS X-Timer: - - S1711656919.224269,VS0,VE79 + - S1736796113.724015,VS0,VE32 expires: - - Thu, 28 Mar 2024 20:25:19 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-origin-cache: - HIT x-proxy-cache: @@ -937,13 +941,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:19 GMT + - Mon, 13 Jan 2025 19:21:53 GMT ETag: - '"cffbb0036f526b016f24477e0ad674e75b6fefb89708ca796686de9d2e2a67ed"' Expires: - - Thu, 28 Mar 2024 20:20:19 GMT + - Mon, 13 Jan 2025 19:26:53 GMT Source-Age: - - '60' + - '64' Strict-Transport-Security: - max-age=31536000 Vary: @@ -953,19 +957,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '0' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - af6904e3dffaffe849e2267ca9516036835b9931 + - 194a3357217733c3c7f5354bc2b292fd63079b79 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:44861F:52C78A:6605CF9B + - F063:3A423C:2590406:29A0D36:67856790 X-Served-By: - - cache-ewr18159-EWR + - cache-bos4641-BOS X-Timer: - - S1711656920.844304,VS0,VE1 + - S1736796113.348738,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case1].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case1].yaml index 5f9e562d5..9ad251af7 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case1].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case1].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '98' + - '85' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:19 GMT + - Mon, 13 Jan 2025 19:21:53 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -138,15 +138,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c01d85c9cf3f080ef35e307d180dc3cb96f34979 + - 189d706ce814c80a0562d97f87048779e9e80b2e X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18134-EWR + - cache-bos4663-BOS X-Timer: - - S1711656920.943928,VS0,VE1 + - S1736796113.485295,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -223,13 +223,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:20 GMT + - Mon, 13 Jan 2025 19:21:53 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:20:20 GMT + - Mon, 13 Jan 2025 19:26:53 GMT Source-Age: - - '62' + - '66' Strict-Transport-Security: - max-age=31536000 Vary: @@ -239,19 +239,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 98012152799626197b1c2c482028360e0ea9601f + - c759ccdccb537fc8ebec8c6398d328ddc06dc72a X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-ewr18128-EWR + - cache-bos4665-BOS X-Timer: - - S1711656920.032204,VS0,VE0 + - S1736796114.578917,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -347,13 +347,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:20 GMT + - Mon, 13 Jan 2025 19:21:53 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:20:20 GMT + - Mon, 13 Jan 2025 19:26:53 GMT Source-Age: - - '61' + - '66' Strict-Transport-Security: - max-age=31536000 Vary: @@ -367,15 +367,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6e2075fd36f4a5a8c9b70fc8f90316b481b26b2a + - 96578e47c40b9b0e2768a5c71ab2ae5cc49a7dae X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-ewr18153-EWR + - cache-bos4641-BOS X-Timer: - - S1711656920.111801,VS0,VE1 + - S1736796114.651239,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -503,11 +503,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:20 GMT + - Mon, 13 Jan 2025 19:21:53 GMT ETag: - - '"65bd0237-1b3a"' + - '"66e1651c-1b3a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -519,15 +519,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 65ac5e0dcb39fbce3330dfcae861e36c7bd78b1e + - 621def3b66abd9d76c946e39b2a7134fc0378c3e X-GitHub-Request-Id: - - 5344:EFB2:19A019B:1D70D25:6605CFD5 + - F56B:389225:4353F9D:49E11FC:678567CF X-Served-By: - - cache-ewr18176-EWR + - cache-bos4626-BOS X-Timer: - - S1711656920.237823,VS0,VE4 + - S1736796114.735902,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -570,11 +570,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:20 GMT + - Mon, 13 Jan 2025 19:21:53 GMT ETag: - - '"65bd0237-21a"' + - '"66e1651c-21a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -586,17 +586,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2327b5b5baf08d6eb4f7ba936d58aac91ccb2098 + - 9721a5d34df828eff4d8f4e2aea1a14c77af4be0 X-GitHub-Request-Id: - - 66A0:23BA3B:1BC78BF:1F9BD8C:6605CFD1 + - B8B6:EC30A:40FF2D0:478C2E1:678567D0 X-Served-By: - - cache-ewr18147-EWR + - cache-bos4631-BOS X-Timer: - - S1711656920.320125,VS0,VE1 + - S1736796114.817083,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -652,11 +650,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:20 GMT + - Mon, 13 Jan 2025 19:21:53 GMT ETag: - - '"65bd0237-5c5"' + - '"66e1651c-5c5"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -668,15 +666,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f99810c41d815768eba98d4f572d272dcfa142bb + - 6c0eef2505432e5b8d994100a93cfe0365deb0d4 X-GitHub-Request-Id: - - BBE4:2EEE1A:1A5C275:1E2F199:6605CFD6 + - F554:3528DA:40AFF50:473D1A7:678567CE X-Served-By: - - cache-ewr18176-EWR + - cache-bos4634-BOS X-Timer: - - S1711656920.407842,VS0,VE1 + - S1736796114.907083,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -711,7 +711,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '1' Cache-Control: - max-age=600 Connection: @@ -721,11 +721,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:20 GMT + - Mon, 13 Jan 2025 19:21:54 GMT ETag: - - '"65bd0237-2bd"' + - '"66e1651c-2bd"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -737,15 +737,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - dc4f76f02176da45e42139a9035066a320b5ca60 + - 618281262cda7a29e5e613ce036821f31d2c2835 X-GitHub-Request-Id: - - 7FB6:26EB4F:19C05FB:1D93464:6605CFD6 + - BC49:19EC47:4201D70:488EEBD:678567D0 X-Served-By: - - cache-ewr18180-EWR + - cache-bos4650-BOS X-Timer: - - S1711656920.487764,VS0,VE1 + - S1736796114.004257,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -785,11 +787,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:20 GMT + - Mon, 13 Jan 2025 19:21:54 GMT ETag: - - '"65bd0237-133"' + - '"66e1651c-133"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -801,15 +803,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a97a7952abdde1788fc3814f8770c61f78c2082e + - 7ad421ab6e13f2b167123bb0dba41f772d243fcc X-GitHub-Request-Id: - - 3954:9F5C8:194C687:1D1E226:6605CFD6 + - ABD0:19EC47:4201D8E:488EEDF:678567D0 X-Served-By: - - cache-ewr18171-EWR + - cache-bos4672-BOS X-Timer: - - S1711656921.567550,VS0,VE1 + - S1736796114.090447,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -860,11 +864,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:20 GMT + - Mon, 13 Jan 2025 19:21:54 GMT ETag: - - '"65bd0237-474"' + - '"66e1651c-474"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -876,15 +880,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - bf853f2847b6508b2b744ff606e14d03ae7d3d19 + - 38d645f04acc857e2d8897aaaf5ebca47aa076ec X-GitHub-Request-Id: - - 3084:2B8D2:1AF23B5:1EC4E00:6605CFD7 + - 2AC2:1660B9:4194629:4821ACF:678567D0 X-Served-By: - - cache-ewr18142-EWR + - cache-bos4674-BOS X-Timer: - - S1711656921.651611,VS0,VE1 + - S1736796114.177081,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:19 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-origin-cache: - HIT x-proxy-cache: @@ -937,13 +941,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:21 GMT + - Mon, 13 Jan 2025 19:21:54 GMT ETag: - '"cffbb0036f526b016f24477e0ad674e75b6fefb89708ca796686de9d2e2a67ed"' Expires: - - Thu, 28 Mar 2024 20:20:21 GMT + - Mon, 13 Jan 2025 19:26:54 GMT Source-Age: - - '62' + - '66' Strict-Transport-Security: - max-age=31536000 Vary: @@ -957,15 +961,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - cd8cdd05a54f7c580827c96cbb46ac3f3db7a237 + - 89134e58f9fbfe630507ecf1417e740804eb820a X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:44861F:52C78A:6605CF9B + - F063:3A423C:2590406:29A0D36:67856790 X-Served-By: - - cache-ewr18124-EWR + - cache-bos4637-BOS X-Timer: - - S1711656921.183750,VS0,VE1 + - S1736796115.770588,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case2].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case2].yaml index 4b248e8a7..1088ee621 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case2].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case2].yaml @@ -68,13 +68,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:21 GMT + - Mon, 13 Jan 2025 19:21:54 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:20:21 GMT + - Mon, 13 Jan 2025 19:26:54 GMT Source-Age: - - '63' + - '67' Strict-Transport-Security: - max-age=31536000 Vary: @@ -84,19 +84,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 72752f92b577821cc857260a6e0be3728931c1f6 + - 4f29ee82e7d44dc2729f2fed261a7809a9353b2c X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-ewr18140-EWR + - cache-bos4660-BOS X-Timer: - - S1711656921.276370,VS0,VE1 + - S1736796115.858429,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -192,13 +192,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:21 GMT + - Mon, 13 Jan 2025 19:21:54 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:20:21 GMT + - Mon, 13 Jan 2025 19:26:54 GMT Source-Age: - - '63' + - '67' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d060993c327a713fc6c6f187e4b241fcd16a68db + - f29ba6990746c04cb6bd3d5f567cb6da20d2b96f X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-ewr18171-EWR + - cache-bos4665-BOS X-Timer: - - S1711656921.359707,VS0,VE1 + - S1736796115.934935,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -348,11 +348,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:21 GMT + - Mon, 13 Jan 2025 19:21:55 GMT ETag: - - '"65bd0237-1b3a"' + - '"66e1651c-1b3a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -364,15 +364,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b946513b078cc998d34135413a29517c334dd320 + - f4efd4646faa68ed5f89ae1b682b6cffb41985ce X-GitHub-Request-Id: - - 5344:EFB2:19A019B:1D70D25:6605CFD5 + - F56B:389225:4353F9D:49E11FC:678567CF X-Served-By: - - cache-ewr18134-EWR + - cache-bos4677-BOS X-Timer: - - S1711656921.435825,VS0,VE2 + - S1736796115.026460,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -415,11 +415,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:21 GMT + - Mon, 13 Jan 2025 19:21:55 GMT ETag: - - '"65bd0237-21a"' + - '"66e1651c-21a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -431,17 +431,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a2c2eb0a6d0b619b49ccb04d43775766d3d1d018 + - a0928b534e62149c16521cf570701defbbb37627 X-GitHub-Request-Id: - - 66A0:23BA3B:1BC78BF:1F9BD8C:6605CFD1 + - B8B6:EC30A:40FF2D0:478C2E1:678567D0 X-Served-By: - - cache-ewr18124-EWR + - cache-bos4684-BOS X-Timer: - - S1711656922.519677,VS0,VE1 + - S1736796115.118290,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -497,11 +495,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:21 GMT + - Mon, 13 Jan 2025 19:21:55 GMT ETag: - - '"65bd0237-5c5"' + - '"66e1651c-5c5"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -513,15 +511,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c048ab5e6e8d85a1035f16d7a16c639d747c8f75 + - 79cfc3e5a2a5bb7c3cc88ece1bb3dd0aeb9e6327 X-GitHub-Request-Id: - - BBE4:2EEE1A:1A5C275:1E2F199:6605CFD6 + - F554:3528DA:40AFF50:473D1A7:678567CE X-Served-By: - - cache-ewr18154-EWR + - cache-bos4642-BOS X-Timer: - - S1711656922.599799,VS0,VE1 + - S1736796115.195313,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -566,11 +566,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:21 GMT + - Mon, 13 Jan 2025 19:21:55 GMT ETag: - - '"65bd0237-2bd"' + - '"66e1651c-2bd"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -582,15 +582,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 96e727715535dd93c7bb8846ddc23531af08922c + - 42998382a08b280b7773a5ad9c5794ba92271a59 X-GitHub-Request-Id: - - 7FB6:26EB4F:19C05FB:1D93464:6605CFD6 + - BC49:19EC47:4201D70:488EEBD:678567D0 X-Served-By: - - cache-ewr18183-EWR + - cache-bos4684-BOS X-Timer: - - S1711656922.686807,VS0,VE2 + - S1736796115.296030,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -630,11 +632,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:21 GMT + - Mon, 13 Jan 2025 19:21:55 GMT ETag: - - '"65bd0237-133"' + - '"66e1651c-133"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -646,15 +648,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4ea70d3a94cd2be72e0774f4dcb0b6bb4db21c25 + - ceff6cb5edaca4ed0a23a32de23091f09f3f5129 X-GitHub-Request-Id: - - 3954:9F5C8:194C687:1D1E226:6605CFD6 + - ABD0:19EC47:4201D8E:488EEDF:678567D0 X-Served-By: - - cache-ewr18155-EWR + - cache-bos4627-BOS X-Timer: - - S1711656922.784300,VS0,VE1 + - S1736796115.384858,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -705,11 +709,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:21 GMT + - Mon, 13 Jan 2025 19:21:55 GMT ETag: - - '"65bd0237-474"' + - '"66e1651c-474"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -721,15 +725,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 05479bddc2361bef8876d616461d6bfa4351fb7f + - a84392ae215ea61340e02e0cf352c198de16e9f4 X-GitHub-Request-Id: - - 3084:2B8D2:1AF23B5:1EC4E00:6605CFD7 + - 2AC2:1660B9:4194629:4821ACF:678567D0 X-Served-By: - - cache-ewr18149-EWR + - cache-bos4679-BOS X-Timer: - - S1711656922.860459,VS0,VE2 + - S1736796115.468398,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:19 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-origin-cache: - HIT x-proxy-cache: @@ -848,7 +852,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '100' + - '87' Cache-Control: - max-age=600 Connection: @@ -858,7 +862,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:21 GMT + - Mon, 13 Jan 2025 19:21:55 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -876,15 +880,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 178a19127a121e4e54f9dbdf2beaea6dd69d35ba + - de1b4ba2f10cd549f64fd96bab9356ee52849c03 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18165-EWR + - cache-bos4676-BOS X-Timer: - - S1711656922.956369,VS0,VE2 + - S1736796116.550718,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -937,13 +941,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:22 GMT + - Mon, 13 Jan 2025 19:21:56 GMT ETag: - '"cffbb0036f526b016f24477e0ad674e75b6fefb89708ca796686de9d2e2a67ed"' Expires: - - Thu, 28 Mar 2024 20:20:22 GMT + - Mon, 13 Jan 2025 19:26:56 GMT Source-Age: - - '63' + - '67' Strict-Transport-Security: - max-age=31536000 Vary: @@ -957,15 +961,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - afae28b3edd2eed70fd0b37c6c2151c2538e9002 + - 2128a85f777c3a63fdf074ed5057d823d63ea8ef X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:44861F:52C78A:6605CF9B + - F063:3A423C:2590406:29A0D36:67856790 X-Served-By: - - cache-ewr18137-EWR + - cache-bos4630-BOS X-Timer: - - S1711656923.536225,VS0,VE1 + - S1736796116.138482,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case3].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case3].yaml index 114714d57..c3543202f 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case3].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case3].yaml @@ -110,7 +110,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '101' + - '88' Cache-Control: - max-age=600 Connection: @@ -120,7 +120,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:22 GMT + - Mon, 13 Jan 2025 19:21:56 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -136,17 +136,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 712c6a393c063bd97bdf3ae928405c3b82efc5b2 + - abdb9a1484a3293c34c26b51dcec763ddad2bfa4 X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18158-EWR + - cache-bos4676-BOS X-Timer: - - S1711656923.675526,VS0,VE2 + - S1736796116.236734,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -223,13 +223,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:23 GMT + - Mon, 13 Jan 2025 19:21:56 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:20:23 GMT + - Mon, 13 Jan 2025 19:26:56 GMT Source-Age: - - '65' + - '69' Strict-Transport-Security: - max-age=31536000 Vary: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4b844a11c8ddd274319ff594a2cd3047e0179ef2 + - 2c204185477efd654997d962ffd42143cb17e39c X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-ewr18131-EWR + - cache-bos4622-BOS X-Timer: - - S1711656923.203697,VS0,VE1 + - S1736796117.872017,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -347,13 +347,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:23 GMT + - Mon, 13 Jan 2025 19:21:56 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:20:23 GMT + - Mon, 13 Jan 2025 19:26:56 GMT Source-Age: - - '64' + - '69' Strict-Transport-Security: - max-age=31536000 Vary: @@ -363,19 +363,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b55866993f521c979df8970e8fc421786b3f6bd8 + - 11c68fe392a48a6b98f97ce79430e8bb618044c3 X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-ewr18153-EWR + - cache-bos4636-BOS X-Timer: - - S1711656923.288309,VS0,VE0 + - S1736796117.928705,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -503,11 +503,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:23 GMT + - Mon, 13 Jan 2025 19:21:57 GMT ETag: - - '"65bd0237-1b3a"' + - '"66e1651c-1b3a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -519,15 +519,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a9f7d7bb69cec34e674996702cce6cc5b510073b + - a291b3b0056103c0addd5caddfecbde159389e67 X-GitHub-Request-Id: - - 5344:EFB2:19A019B:1D70D25:6605CFD5 + - F56B:389225:4353F9D:49E11FC:678567CF X-Served-By: - - cache-ewr18130-EWR + - cache-bos4675-BOS X-Timer: - - S1711656923.375700,VS0,VE1 + - S1736796117.006114,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -570,11 +570,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:23 GMT + - Mon, 13 Jan 2025 19:21:57 GMT ETag: - - '"65bd0237-21a"' + - '"66e1651c-21a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -586,17 +586,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3437eb2ef90cfe5525b25a06ec5703bbfb07ec24 + - 41f01164b8e1391a957813e257f16ef4a17e7c3a X-GitHub-Request-Id: - - 66A0:23BA3B:1BC78BF:1F9BD8C:6605CFD1 + - B8B6:EC30A:40FF2D0:478C2E1:678567D0 X-Served-By: - - cache-ewr18176-EWR + - cache-bos4624-BOS X-Timer: - - S1711656923.463774,VS0,VE1 + - S1736796117.103005,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -652,11 +650,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:23 GMT + - Mon, 13 Jan 2025 19:21:57 GMT ETag: - - '"65bd0237-5c5"' + - '"66e1651c-5c5"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -668,15 +666,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1927c0ed093762bc8302477c405ea83824776c8d + - 121801d6b201afd6ed8ffaa945e90e012898b796 X-GitHub-Request-Id: - - BBE4:2EEE1A:1A5C275:1E2F199:6605CFD6 + - F554:3528DA:40AFF50:473D1A7:678567CE X-Served-By: - - cache-ewr18177-EWR + - cache-bos4656-BOS X-Timer: - - S1711656924.541082,VS0,VE1 + - S1736796117.176538,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -721,11 +721,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:23 GMT + - Mon, 13 Jan 2025 19:21:57 GMT ETag: - - '"65bd0237-2bd"' + - '"66e1651c-2bd"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -737,15 +737,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 52da39f0f1758bd0abfc3695829d3ff60bd0c248 + - f94dd4e10b213fa07118a7c22c4e2fb2ffeeacbc X-GitHub-Request-Id: - - 7FB6:26EB4F:19C05FB:1D93464:6605CFD6 + - BC49:19EC47:4201D70:488EEBD:678567D0 X-Served-By: - - cache-ewr18158-EWR + - cache-bos4627-BOS X-Timer: - - S1711656924.619893,VS0,VE2 + - S1736796117.248402,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -785,11 +787,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:23 GMT + - Mon, 13 Jan 2025 19:21:57 GMT ETag: - - '"65bd0237-133"' + - '"66e1651c-133"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -801,15 +803,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 92754471f6932cd0515139fc448b2d21dbb83d7c + - 32d9e5f6385a689a985d4d496b74af8b4fc92685 X-GitHub-Request-Id: - - 3954:9F5C8:194C687:1D1E226:6605CFD6 + - ABD0:19EC47:4201D8E:488EEDF:678567D0 X-Served-By: - - cache-ewr18137-EWR + - cache-bos4631-BOS X-Timer: - - S1711656924.700578,VS0,VE1 + - S1736796117.342230,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -850,7 +854,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '5' Cache-Control: - max-age=600 Connection: @@ -860,11 +864,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:23 GMT + - Mon, 13 Jan 2025 19:21:57 GMT ETag: - - '"65bd0237-474"' + - '"66e1651c-474"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -876,15 +880,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 390cdc056b1adc8a355cc1041b1470c771628c91 + - 59efc72a9bb7d8d5ff254761daefc42ebbe57ea6 X-GitHub-Request-Id: - - 3084:2B8D2:1AF23B5:1EC4E00:6605CFD7 + - 2AC2:1660B9:4194629:4821ACF:678567D0 X-Served-By: - - cache-ewr18179-EWR + - cache-bos4639-BOS X-Timer: - - S1711656924.780161,VS0,VE1 + - S1736796117.428675,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:19 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-origin-cache: - HIT x-proxy-cache: @@ -937,13 +941,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:24 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - '"cffbb0036f526b016f24477e0ad674e75b6fefb89708ca796686de9d2e2a67ed"' Expires: - - Thu, 28 Mar 2024 20:20:24 GMT + - Mon, 13 Jan 2025 19:26:58 GMT Source-Age: - - '65' + - '69' Strict-Transport-Security: - max-age=31536000 Vary: @@ -957,15 +961,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3f5a87ca664857e852406b64c78aa6614f650652 + - 1b9edadd4651f1eadd1d7ff2129e3fa4c856232e X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:44861F:52C78A:6605CF9B + - F063:3A423C:2590406:29A0D36:67856790 X-Served-By: - - cache-ewr18147-EWR + - cache-bos4632-BOS X-Timer: - - S1711656924.344582,VS0,VE2 + - S1736796118.015014,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case4].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case4].yaml index aceaaed5e..4a19b4c70 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case4].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case4].yaml @@ -85,7 +85,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '102' + - '110' Cache-Control: - max-age=600 Connection: @@ -95,11 +95,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:24 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -113,15 +113,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - e6df36fd686a6ac51b21939d533e7c922d46e59a + - bc2efb65a04adc3e00632bd20cf083dd58730db6 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18142-EWR + - cache-bos4667-BOS X-Timer: - - S1711656924.444215,VS0,VE1 + - S1736796118.114427,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -139,48 +139,44 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension - for STAC Items.\",\n \"oneOf\": [\n {\n \"$comment\": \"This is the - schema for STAC Items.\",\n \"allOf\": [\n {\n \"type\": - \"object\",\n \"required\": [\n \"type\",\n \"properties\",\n - \ \"assets\"\n ],\n \"properties\": {\n \"type\": - {\n \"const\": \"Feature\"\n },\n \"properties\": - {\n \"allOf\": [\n {\n \"$comment\": - \"Require fields here for item properties.\",\n \"required\": - [\n \"proj:epsg\"\n ]\n },\n - \ {\n \"$ref\": \"#/definitions/fields\"\n - \ }\n ]\n },\n \"assets\": - {\n \"type\": \"object\",\n \"additionalProperties\": - {\n \"$ref\": \"#/definitions/fields\"\n }\n }\n - \ }\n },\n {\n \"$ref\": \"#/definitions/stac_extensions\"\n - \ }\n ]\n },\n {\n \"$comment\": \"This is the schema - for STAC Collections.\",\n \"allOf\": [\n {\n \"type\": - \"object\",\n \"required\": [\n \"type\"\n ],\n - \ \"properties\": {\n \"type\": {\n \"const\": - \"Collection\"\n },\n \"assets\": {\n \"type\": - \"object\",\n \"additionalProperties\": {\n \"$ref\": - \"#/definitions/fields\"\n }\n },\n \"item_assets\": + for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields + are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n + \ \"$comment\": \"This is the schema for STAC Items.\",\n \"allOf\": + [\n {\n \"$ref\": \"#/definitions/stac_extensions\"\n },\n + \ {\n \"type\": \"object\",\n \"required\": [\n \"type\",\n + \ \"properties\",\n \"assets\"\n ],\n \"properties\": + {\n \"type\": {\n \"const\": \"Feature\"\n },\n + \ \"properties\": {\n \"$ref\": \"#/definitions/fields\"\n + \ },\n \"assets\": {\n \"type\": \"object\",\n + \ \"additionalProperties\": {\n \"$ref\": \"#/definitions/fields\"\n + \ }\n }\n }\n }\n ]\n },\n + \ {\n \"$comment\": \"This is the schema for STAC Collections.\",\n + \ \"allOf\": [\n {\n \"type\": \"object\",\n \"required\": + [\n \"type\"\n ],\n \"properties\": {\n \"type\": + {\n \"const\": \"Collection\"\n },\n \"assets\": {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"$ref\": \"#/definitions/fields\"\n }\n },\n + \ \"item_assets\": {\n \"type\": \"object\",\n \"additionalProperties\": {\n \"$ref\": \"#/definitions/fields\"\n }\n }\n \ }\n },\n {\n \"$ref\": \"#/definitions/stac_extensions\"\n \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.0.0/schema.json\"\n - \ }\n }\n }\n },\n \"fields\": {\n \"$comment\": - \"Add your new fields here. Don't require them here, do that above in the - item schema.\",\n \"type\": \"object\",\n \"properties\": {\n \"proj:epsg\":{\n - \ \"title\":\"EPSG code\",\n \"type\":[\n \"integer\",\n - \ \"null\"\n ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n + \ }\n }\n }\n },\n \"fields\": {\n \"type\": + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n + \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.2/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -209,21 +205,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '110' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4646' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:24 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - - '"63e6651b-1226"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -235,17 +231,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - d52be3ac9841ce7096a041cae368e7974fbd030a + - 801f129451257464a0a1647b59e1559fd39c4951 X-GitHub-Request-Id: - - 616C:397D62:1AB8A52:1E8C8CA:6605CFD3 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18121-EWR + - cache-bos4640-BOS X-Timer: - - S1711656925.543965,VS0,VE1 + - S1736796118.186512,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:25:15 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -319,7 +315,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '102' + - '110' Cache-Control: - max-age=600 Connection: @@ -329,7 +325,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:24 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -347,15 +343,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0c0534e11dd3d0022983b803c192bd3b15e30e01 + - 6d556c7addef3dd94cb957c06efbb0c8956590a3 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18164-EWR + - cache-bos4677-BOS X-Timer: - - S1711656925.620323,VS0,VE2 + - S1736796118.261024,VS0,VE2 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -432,13 +428,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:24 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:20:24 GMT + - Mon, 13 Jan 2025 19:26:58 GMT Source-Age: - - '66' + - '70' Strict-Transport-Security: - max-age=31536000 Vary: @@ -452,15 +448,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2dabb8ea1c1ea1434ed5034eff4b5378c9b9cff0 + - d847d15a91cd8251beada41a0e910a6b1ae04808 X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-ewr18152-EWR + - cache-bos4622-BOS X-Timer: - - S1711656925.695818,VS0,VE0 + - S1736796118.346255,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -556,13 +552,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:24 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:20:24 GMT + - Mon, 13 Jan 2025 19:26:58 GMT Source-Age: - - '66' + - '70' Strict-Transport-Security: - max-age=31536000 Vary: @@ -576,15 +572,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5a8cd237c659e3dcfa94275caab54e396939472e + - 5ffc91966982c8f39e08151f5d4b85fdd2b07d89 X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-ewr18150-EWR + - cache-bos4658-BOS X-Timer: - - S1711656925.772200,VS0,VE1 + - S1736796118.414720,VS0,VE25 X-XSS-Protection: - 1; mode=block status: @@ -702,7 +698,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '6' Cache-Control: - max-age=600 Connection: @@ -712,11 +708,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:24 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - - '"65bd0237-1b3a"' + - '"66e1651c-1b3a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -728,15 +724,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4adc29ce9a595db0e8bba4f927f48df14a5e4e3e + - f00de3e36c6a361376d41a501034233af428a286 X-GitHub-Request-Id: - - 5344:EFB2:19A019B:1D70D25:6605CFD5 + - F56B:389225:4353F9D:49E11FC:678567CF X-Served-By: - - cache-ewr18138-EWR + - cache-bos4632-BOS X-Timer: - - S1711656925.847886,VS0,VE2 + - S1736796119.518760,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -769,7 +765,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '6' Cache-Control: - max-age=600 Connection: @@ -779,11 +775,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:24 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - - '"65bd0237-21a"' + - '"66e1651c-21a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -795,17 +791,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3a296ccae1dad69a0690d0b24dd04ac91cf1ecf3 + - 22c8cfe7afa1c04c8b00332ed08e982b7ae2f9c9 X-GitHub-Request-Id: - - 66A0:23BA3B:1BC78BF:1F9BD8C:6605CFD1 + - B8B6:EC30A:40FF2D0:478C2E1:678567D0 X-Served-By: - - cache-ewr18169-EWR + - cache-bos4674-BOS X-Timer: - - S1711656925.935514,VS0,VE1 + - S1736796119.633088,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -861,11 +855,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:25 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - - '"65bd0237-5c5"' + - '"66e1651c-5c5"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -877,15 +871,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2c761f2be337f928d7e8674b82936ecc05009d1e + - 7cc41e9f35e1a273d4ac0ca1a675e05fbf3c0768 X-GitHub-Request-Id: - - BBE4:2EEE1A:1A5C275:1E2F199:6605CFD6 + - F554:3528DA:40AFF50:473D1A7:678567CE X-Served-By: - - cache-ewr18134-EWR + - cache-bos4657-BOS X-Timer: - - S1711656925.015701,VS0,VE1 + - S1736796119.722861,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -930,11 +926,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:25 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - - '"65bd0237-2bd"' + - '"66e1651c-2bd"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -946,15 +942,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b85058cd3721293382bb36e0fadc0d504ed1a25a + - b0034fcd64668a41f340f9c65e50cda16f86ed3b X-GitHub-Request-Id: - - 7FB6:26EB4F:19C05FB:1D93464:6605CFD6 + - BC49:19EC47:4201D70:488EEBD:678567D0 X-Served-By: - - cache-ewr18133-EWR + - cache-bos4673-BOS X-Timer: - - S1711656925.096246,VS0,VE2 + - S1736796119.798068,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -994,11 +992,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:25 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - - '"65bd0237-133"' + - '"66e1651c-133"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -1010,15 +1008,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e2c4004ed5992fc7cc4154e5b2f15461b0bd5c16 + - 448f36633289277b67a777187a8e1a3604c56e05 X-GitHub-Request-Id: - - 3954:9F5C8:194C687:1D1E226:6605CFD6 + - ABD0:19EC47:4201D8E:488EEDF:678567D0 X-Served-By: - - cache-ewr18159-EWR + - cache-bos4670-BOS X-Timer: - - S1711656925.171875,VS0,VE2 + - S1736796119.878158,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -1069,11 +1069,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:25 GMT + - Mon, 13 Jan 2025 19:21:58 GMT ETag: - - '"65bd0237-474"' + - '"66e1651c-474"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -1085,15 +1085,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 7617b5f7f04eefc6b5f1dcfe3a488bdbf5e8f608 + - 65a24d28ed8acfff1d2893ebec8942141c9e5fe8 X-GitHub-Request-Id: - - 3084:2B8D2:1AF23B5:1EC4E00:6605CFD7 + - 2AC2:1660B9:4194629:4821ACF:678567D0 X-Served-By: - - cache-ewr18137-EWR + - cache-bos4629-BOS X-Timer: - - S1711656925.247919,VS0,VE1 + - S1736796119.956823,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:25:19 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-origin-cache: - HIT x-proxy-cache: @@ -1212,7 +1212,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '103' + - '91' Cache-Control: - max-age=600 Connection: @@ -1222,7 +1222,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:25 GMT + - Mon, 13 Jan 2025 19:21:59 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -1238,17 +1238,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 46eaf564f6672cf620e86270e3f127af7d28980d + - 1a63c63529450a06cca8114a71a9bc22fcb368ec X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18132-EWR + - cache-bos4624-BOS X-Timer: - - S1711656925.339688,VS0,VE1 + - S1736796119.041345,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -1301,13 +1301,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:26 GMT + - Mon, 13 Jan 2025 19:21:59 GMT ETag: - '"cffbb0036f526b016f24477e0ad674e75b6fefb89708ca796686de9d2e2a67ed"' Expires: - - Thu, 28 Mar 2024 20:20:26 GMT + - Mon, 13 Jan 2025 19:26:59 GMT Source-Age: - - '66' + - '70' Strict-Transport-Security: - max-age=31536000 Vary: @@ -1321,15 +1321,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c997503474fecf5ca7f4221ce0d9c225716b3887 + - ff9a42a0950d5e1ab4bf16cc7b2c233e0bde8d63 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:44861F:52C78A:6605CF9B + - F063:3A423C:2590406:29A0D36:67856790 X-Served-By: - - cache-ewr18182-EWR + - cache-bos4667-BOS X-Timer: - - S1711656926.007986,VS0,VE1 + - S1736796120.640196,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case5].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case5].yaml index 3a53e3810..5c52fc589 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case5].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case5].yaml @@ -68,13 +68,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:26 GMT + - Mon, 13 Jan 2025 19:21:59 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:20:26 GMT + - Mon, 13 Jan 2025 19:26:59 GMT Source-Age: - - '68' + - '72' Strict-Transport-Security: - max-age=31536000 Vary: @@ -88,15 +88,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 910ee487da2a9c88e6f8c2a3300db445627b3628 + - 282bf16b6651e87c9d615dc71a3a29f126f3a982 X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-ewr18154-EWR + - cache-bos4644-BOS X-Timer: - - S1711656926.119623,VS0,VE1 + - S1736796120.716403,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -192,13 +192,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:26 GMT + - Mon, 13 Jan 2025 19:21:59 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:20:26 GMT + - Mon, 13 Jan 2025 19:26:59 GMT Source-Age: - - '67' + - '72' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ff2966c8f1cea0d7991f9f821a36a71ee46f5455 + - 7437466548080ddc113ea81fa5b066f12309d44e X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-ewr18152-EWR + - cache-bos4659-BOS X-Timer: - - S1711656926.199835,VS0,VE2 + - S1736796120.778517,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -348,11 +348,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:26 GMT + - Mon, 13 Jan 2025 19:21:59 GMT ETag: - - '"65bd0237-1b3a"' + - '"66e1651c-1b3a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -364,15 +364,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b2b3cd8fd88b02c4fef6ca6bcaf9a30e20552798 + - 6d46deff435a76dd57fae014b5dbde662c36d7fc X-GitHub-Request-Id: - - 5344:EFB2:19A019B:1D70D25:6605CFD5 + - F56B:389225:4353F9D:49E11FC:678567CF X-Served-By: - - cache-ewr18135-EWR + - cache-bos4661-BOS X-Timer: - - S1711656926.275885,VS0,VE2 + - S1736796120.852640,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -415,11 +415,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:26 GMT + - Mon, 13 Jan 2025 19:21:59 GMT ETag: - - '"65bd0237-21a"' + - '"66e1651c-21a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -429,19 +429,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - f4faf69848c8a55c56246ec953a50633e09a2de6 + - b327e087d235d64291d602b7ddadb4def872f310 X-GitHub-Request-Id: - - 66A0:23BA3B:1BC78BF:1F9BD8C:6605CFD1 + - B8B6:EC30A:40FF2D0:478C2E1:678567D0 X-Served-By: - - cache-ewr18163-EWR + - cache-bos4631-BOS X-Timer: - - S1711656926.371854,VS0,VE2 + - S1736796120.930348,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:25:18 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -497,11 +495,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:26 GMT + - Mon, 13 Jan 2025 19:22:00 GMT ETag: - - '"65bd0237-5c5"' + - '"66e1651c-5c5"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -513,15 +511,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0779445f12ddd8bcde054d50d49f94f45af8fd78 + - 58391dde39d678d1b9a608f5fdc100c88a987d73 X-GitHub-Request-Id: - - BBE4:2EEE1A:1A5C275:1E2F199:6605CFD6 + - F554:3528DA:40AFF50:473D1A7:678567CE X-Served-By: - - cache-ewr18170-EWR + - cache-bos4622-BOS X-Timer: - - S1711656926.439895,VS0,VE1 + - S1736796120.004948,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -566,11 +566,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:26 GMT + - Mon, 13 Jan 2025 19:22:00 GMT ETag: - - '"65bd0237-2bd"' + - '"66e1651c-2bd"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -582,15 +582,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - eda120fb8fec5cce007482ba6de97dae583f878d + - b15475eba2924eba9db6cf70d5a88be76127a25f X-GitHub-Request-Id: - - 7FB6:26EB4F:19C05FB:1D93464:6605CFD6 + - BC49:19EC47:4201D70:488EEBD:678567D0 X-Served-By: - - cache-ewr18129-EWR + - cache-bos4670-BOS X-Timer: - - S1711656927.515917,VS0,VE1 + - S1736796120.084351,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -620,7 +622,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '8' Cache-Control: - max-age=600 Connection: @@ -630,11 +632,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:26 GMT + - Mon, 13 Jan 2025 19:22:00 GMT ETag: - - '"65bd0237-133"' + - '"66e1651c-133"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -646,15 +648,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f88a59eed807828437dc692d412c21515073d01a + - b44736330b754e73808a8a0cf4629dac28f73851 X-GitHub-Request-Id: - - 3954:9F5C8:194C687:1D1E226:6605CFD6 + - ABD0:19EC47:4201D8E:488EEDF:678567D0 X-Served-By: - - cache-ewr18128-EWR + - cache-bos4651-BOS X-Timer: - - S1711656927.591587,VS0,VE2 + - S1736796120.182246,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -695,7 +699,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '8' Cache-Control: - max-age=600 Connection: @@ -705,11 +709,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:26 GMT + - Mon, 13 Jan 2025 19:22:00 GMT ETag: - - '"65bd0237-474"' + - '"66e1651c-474"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -721,15 +725,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5d40303e31d6b53fa2b37bcbcd1cfc3f1857ebd9 + - df7dfa507b780f77fa724a61710338ae4e251d05 X-GitHub-Request-Id: - - 3084:2B8D2:1AF23B5:1EC4E00:6605CFD7 + - 2AC2:1660B9:4194629:4821ACF:678567D0 X-Served-By: - - cache-ewr18127-EWR + - cache-bos4669-BOS X-Timer: - - S1711656927.671818,VS0,VE1 + - S1736796120.256442,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:19 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-origin-cache: - HIT x-proxy-cache: @@ -848,7 +852,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '105' + - '92' Cache-Control: - max-age=600 Connection: @@ -858,7 +862,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:26 GMT + - Mon, 13 Jan 2025 19:22:00 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -876,15 +880,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 276f30a2f1415f2b35632aafddca25b9f70ffc66 + - d118d67bfb947d5e57b38f261f85a74d6c97da2a X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18150-EWR + - cache-bos4670-BOS X-Timer: - - S1711656927.759714,VS0,VE1 + - S1736796120.341591,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -937,13 +941,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:27 GMT + - Mon, 13 Jan 2025 19:22:01 GMT ETag: - '"cffbb0036f526b016f24477e0ad674e75b6fefb89708ca796686de9d2e2a67ed"' Expires: - - Thu, 28 Mar 2024 20:20:27 GMT + - Mon, 13 Jan 2025 19:27:01 GMT Source-Age: - - '68' + - '72' Strict-Transport-Security: - max-age=31536000 Vary: @@ -957,15 +961,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e30b7a19c31284cbf11eca0d0e963ad896e80cc6 + - 737e84f843e4758815a03d5866e5ead67cc29dbe X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:44861F:52C78A:6605CF9B + - F063:3A423C:2590406:29A0D36:67856790 X-Served-By: - - cache-ewr18158-EWR + - cache-bos4668-BOS X-Timer: - - S1711656928.788343,VS0,VE1 + - S1736796121.412754,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case6].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case6].yaml index 3ac41a9d8..c649d27f9 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case6].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_all_dict[test_case6].yaml @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '39' + - '44' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:27 GMT + - Mon, 13 Jan 2025 19:22:01 GMT ETag: - - '"65bd0237-14e2"' + - '"66e1651c-14e2"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -115,17 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3ae2a56212cd0f873dd77a532a6871ecc94b1851 + - 7566b297b5eebf31dece98875a0f54966d52330f X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-ewr18123-EWR + - cache-bos4639-BOS X-Timer: - - S1711656928.864013,VS0,VE1 + - S1736796122.506387,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -181,7 +179,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '39' + - '45' Cache-Control: - max-age=600 Connection: @@ -191,11 +189,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:27 GMT + - Mon, 13 Jan 2025 19:22:01 GMT ETag: - - '"65bd0237-84e"' + - '"66e1651c-84e"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -205,17 +203,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - d6995b3c270e8f87558c61daa93178c7ddb21560 + - 314dd389161d6d68139066aea0bbf4c094b2982f X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-ewr18160-EWR + - cache-bos4630-BOS X-Timer: - - S1711656928.940428,VS0,VE1 + - S1736796122.596750,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -343,11 +341,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:01 GMT ETag: - - '"65bd0237-1b3a"' + - '"66e1651c-1b3a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -359,15 +357,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 71eaedea2b05b376fec3b2f3efd64e50216c038a + - 9616730174c5a266fc7dc0cf8cd1ee0fb2bf2b88 X-GitHub-Request-Id: - - 5344:EFB2:19A019B:1D70D25:6605CFD5 + - F56B:389225:4353F9D:49E11FC:678567CF X-Served-By: - - cache-ewr18137-EWR + - cache-bos4656-BOS X-Timer: - - S1711656928.016445,VS0,VE2 + - S1736796122.685192,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -400,7 +398,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '9' Cache-Control: - max-age=600 Connection: @@ -410,11 +408,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:01 GMT ETag: - - '"65bd0237-21a"' + - '"66e1651c-21a"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -426,17 +424,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 66db645bac189f909bbd42aea0a0f6d67706894e + - 7f44f2094aaafd3a31080aba97e6696b409d4cfa X-GitHub-Request-Id: - - 66A0:23BA3B:1BC78BF:1F9BD8C:6605CFD1 + - B8B6:EC30A:40FF2D0:478C2E1:678567D0 X-Served-By: - - cache-ewr18172-EWR + - cache-bos4621-BOS X-Timer: - - S1711656928.103805,VS0,VE2 + - S1736796122.768352,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:52 GMT x-proxy-cache: - MISS status: @@ -492,11 +488,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:01 GMT ETag: - - '"65bd0237-5c5"' + - '"66e1651c-5c5"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -506,17 +502,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - d6002d460d0512e8a3b6d7e597be85038c3fcfac + - bde6d6ec6b36106c2e17c8a1f26d2fdcb1049060 X-GitHub-Request-Id: - - BBE4:2EEE1A:1A5C275:1E2F199:6605CFD6 + - F554:3528DA:40AFF50:473D1A7:678567CE X-Served-By: - - cache-ewr18161-EWR + - cache-bos4634-BOS X-Timer: - - S1711656928.171735,VS0,VE2 + - S1736796122.856774,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -561,11 +559,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:01 GMT ETag: - - '"65bd0237-2bd"' + - '"66e1651c-2bd"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -577,15 +575,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 7fc095f2adb99d365e5e995c40c1fbfe1c4c9fe2 + - 7e4ee88cab894e9cc8c88321042046e314410eaf X-GitHub-Request-Id: - - 7FB6:26EB4F:19C05FB:1D93464:6605CFD6 + - BC49:19EC47:4201D70:488EEBD:678567D0 X-Served-By: - - cache-ewr18134-EWR + - cache-bos4678-BOS X-Timer: - - S1711656928.240256,VS0,VE1 + - S1736796122.946421,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -625,11 +625,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:02 GMT ETag: - - '"65bd0237-133"' + - '"66e1651c-133"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -641,15 +641,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f23054bb69d85477776a815d62019e15b9ea009b + - a050d282dd9170d595868cc184ad6a2fe794299a X-GitHub-Request-Id: - - 3954:9F5C8:194C687:1D1E226:6605CFD6 + - ABD0:19EC47:4201D8E:488EEDF:678567D0 X-Served-By: - - cache-ewr18136-EWR + - cache-bos4664-BOS X-Timer: - - S1711656928.308025,VS0,VE2 + - S1736796122.044756,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:18 GMT + - Mon, 13 Jan 2025 19:31:52 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -700,11 +702,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:02 GMT ETag: - - '"65bd0237-474"' + - '"66e1651c-474"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -716,15 +718,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 009c2bac7e9082556390c6d786231e1615b43985 + - d7068fe81c37a7e01e686f0a4be8365e4bed34a5 X-GitHub-Request-Id: - - 3084:2B8D2:1AF23B5:1EC4E00:6605CFD7 + - 2AC2:1660B9:4194629:4821ACF:678567D0 X-Served-By: - - cache-ewr18132-EWR + - cache-bos4649-BOS X-Timer: - - S1711656928.383968,VS0,VE2 + - S1736796122.136175,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:19 GMT + - Mon, 13 Jan 2025 19:31:52 GMT x-origin-cache: - HIT x-proxy-cache: @@ -818,7 +820,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '106' + - '114' Cache-Control: - max-age=600 Connection: @@ -828,11 +830,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:02 GMT ETag: - - '"63e664c8-13bc"' + - '"66df1c53-13bc"' Last-Modified: - - Fri, 10 Feb 2023 15:37:44 GMT + - Mon, 09 Sep 2024 16:03:31 GMT Server: - GitHub.com Strict-Transport-Security: @@ -844,17 +846,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - f4618d54b20fd764860570df08ae63fd726141a4 + - 9a9926dc7a63f0f6b511eeff92c36211bc8f92de X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-ewr18124-EWR + - cache-bos4663-BOS X-Timer: - - S1711656928.492983,VS0,VE2 + - S1736796122.238278,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -928,7 +930,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '105' + - '114' Cache-Control: - max-age=600 Connection: @@ -938,7 +940,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:02 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -954,17 +956,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Fastly-Request-ID: - - 80d3b281d9988956a89f266edc0f8878a7931da3 + - 781bcd8e20e5c9bd183da9cea0283182381cf741 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-ewr18168-EWR + - cache-bos4648-BOS X-Timer: - - S1711656929.568362,VS0,VE1 + - S1736796122.302506,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -982,48 +984,44 @@ interactions: User-Agent: - Python-urllib/3.11 method: GET - uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json + uri: https://stac-extensions.github.io/projection/v2.0.0/schema.json response: body: string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": - \"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\n \"title\": + \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\",\n \"title\": \"Projection Extension\",\n \"description\": \"STAC Projection Extension - for STAC Items.\",\n \"oneOf\": [\n {\n \"$comment\": \"This is the - schema for STAC Items.\",\n \"allOf\": [\n {\n \"type\": - \"object\",\n \"required\": [\n \"type\",\n \"properties\",\n - \ \"assets\"\n ],\n \"properties\": {\n \"type\": - {\n \"const\": \"Feature\"\n },\n \"properties\": - {\n \"allOf\": [\n {\n \"$comment\": - \"Require fields here for item properties.\",\n \"required\": - [\n \"proj:epsg\"\n ]\n },\n - \ {\n \"$ref\": \"#/definitions/fields\"\n - \ }\n ]\n },\n \"assets\": - {\n \"type\": \"object\",\n \"additionalProperties\": - {\n \"$ref\": \"#/definitions/fields\"\n }\n }\n - \ }\n },\n {\n \"$ref\": \"#/definitions/stac_extensions\"\n - \ }\n ]\n },\n {\n \"$comment\": \"This is the schema - for STAC Collections.\",\n \"allOf\": [\n {\n \"type\": - \"object\",\n \"required\": [\n \"type\"\n ],\n - \ \"properties\": {\n \"type\": {\n \"const\": - \"Collection\"\n },\n \"assets\": {\n \"type\": - \"object\",\n \"additionalProperties\": {\n \"$ref\": - \"#/definitions/fields\"\n }\n },\n \"item_assets\": + for STAC Items.\",\n \"$comment\": \"This schema succeeds if the proj: fields + are not used at all, please keep this in mind.\",\n \"oneOf\": [\n {\n + \ \"$comment\": \"This is the schema for STAC Items.\",\n \"allOf\": + [\n {\n \"$ref\": \"#/definitions/stac_extensions\"\n },\n + \ {\n \"type\": \"object\",\n \"required\": [\n \"type\",\n + \ \"properties\",\n \"assets\"\n ],\n \"properties\": + {\n \"type\": {\n \"const\": \"Feature\"\n },\n + \ \"properties\": {\n \"$ref\": \"#/definitions/fields\"\n + \ },\n \"assets\": {\n \"type\": \"object\",\n + \ \"additionalProperties\": {\n \"$ref\": \"#/definitions/fields\"\n + \ }\n }\n }\n }\n ]\n },\n + \ {\n \"$comment\": \"This is the schema for STAC Collections.\",\n + \ \"allOf\": [\n {\n \"type\": \"object\",\n \"required\": + [\n \"type\"\n ],\n \"properties\": {\n \"type\": + {\n \"const\": \"Collection\"\n },\n \"assets\": {\n \"type\": \"object\",\n \"additionalProperties\": + {\n \"$ref\": \"#/definitions/fields\"\n }\n },\n + \ \"item_assets\": {\n \"type\": \"object\",\n \"additionalProperties\": {\n \"$ref\": \"#/definitions/fields\"\n }\n }\n \ }\n },\n {\n \"$ref\": \"#/definitions/stac_extensions\"\n \ }\n ]\n }\n ],\n \"definitions\": {\n \"stac_extensions\": {\n \"type\": \"object\",\n \"required\": [\n \"stac_extensions\"\n \ ],\n \"properties\": {\n \"stac_extensions\": {\n \"type\": - \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v1.0.0/schema.json\"\n - \ }\n }\n }\n },\n \"fields\": {\n \"$comment\": - \"Add your new fields here. Don't require them here, do that above in the - item schema.\",\n \"type\": \"object\",\n \"properties\": {\n \"proj:epsg\":{\n - \ \"title\":\"EPSG code\",\n \"type\":[\n \"integer\",\n - \ \"null\"\n ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate + \"array\",\n \"contains\": {\n \"const\": \"https://stac-extensions.github.io/projection/v2.0.0/schema.json\"\n + \ }\n }\n }\n },\n \"fields\": {\n \"type\": + \"object\",\n \"properties\": {\n \"proj:code\":{\n \"title\":\"Projection + code\",\n \"type\":[\n \"string\",\n \"null\"\n + \ ]\n },\n \"proj:wkt2\":{\n \"title\":\"Coordinate Reference System in WKT2 format\",\n \"type\":[\n \"string\",\n \ \"null\"\n ]\n },\n \"proj:projjson\": {\n \"title\":\"Coordinate Reference System in PROJJSON format\",\n - \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.2/projjson.schema.json\"\n + \ \"oneOf\": [\n {\n \"$ref\": \"https://proj.org/schemas/v0.7/projjson.schema.json\"\n \ },\n {\n \"type\": \"null\"\n }\n \ ]\n },\n \"proj:geometry\":{\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n },\n \"proj:bbox\":{\n @@ -1052,21 +1050,21 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '114' Cache-Control: - max-age=600 Connection: - close Content-Length: - - '4646' + - '4374' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:02 GMT ETag: - - '"63e6651b-1226"' + - '"669e563b-1116"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -1080,15 +1078,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - ef6677ea948f17dcf4cea6331df340d64335a6c8 + - d9fd20946f5d81df16acb877103fc1c1ff579251 X-GitHub-Request-Id: - - 616C:397D62:1AB8A52:1E8C8CA:6605CFD3 + - 9300:3C3B5B:43E99E0:4CC1B98:67856768 X-Served-By: - - cache-ewr18166-EWR + - cache-bos4650-BOS X-Timer: - - S1711656929.647742,VS0,VE1 + - S1736796122.370259,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:25:15 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -1165,13 +1163,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:02 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:20:28 GMT + - Mon, 13 Jan 2025 19:27:02 GMT Source-Age: - - '70' + - '75' Strict-Transport-Security: - max-age=31536000 Vary: @@ -1181,19 +1179,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 45d228a9dd4178f019e18c6b2400209f4bfb7e8d + - fb52674d10e9df59bd2228fda62f2308422d5eff X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-ewr18167-EWR + - cache-bos4675-BOS X-Timer: - - S1711656929.779860,VS0,VE0 + - S1736796122.470472,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -1289,13 +1287,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:02 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:20:28 GMT + - Mon, 13 Jan 2025 19:27:02 GMT Source-Age: - - '70' + - '74' Strict-Transport-Security: - max-age=31536000 Vary: @@ -1305,19 +1303,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5219ab0ad8af1f99356139c92b9f7235a443ed57 + - b50cdff430f6eb16296aa27afc1318e6affd0255 X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-ewr18138-EWR + - cache-bos4658-BOS X-Timer: - - S1711656929.868138,VS0,VE1 + - S1736796123.539175,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -1434,7 +1432,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '107' + - '94' Cache-Control: - max-age=600 Connection: @@ -1444,7 +1442,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:28 GMT + - Mon, 13 Jan 2025 19:22:02 GMT ETag: - '"61eb1dc9-1abf"' Last-Modified: @@ -1460,17 +1458,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 7dc97053790642792729c75db1bc740f4e68b232 + - 5d0e2ab64dec3647d73d37ab5c7e80953b564b7f X-GitHub-Request-Id: - - 60BC:281DF0:F4B1B3:135E4D0:6605CF75 + - 6DAD:2464FF:4361700:49EE54A:6785677A X-Served-By: - - cache-ewr18176-EWR + - cache-bos4662-BOS X-Timer: - - S1711656929.960117,VS0,VE0 + - S1736796123.622591,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Mon, 13 Jan 2025 19:30:28 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -1523,13 +1521,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Thu, 28 Mar 2024 20:15:29 GMT + - Mon, 13 Jan 2025 19:22:03 GMT ETag: - '"cffbb0036f526b016f24477e0ad674e75b6fefb89708ca796686de9d2e2a67ed"' Expires: - - Thu, 28 Mar 2024 20:20:29 GMT + - Mon, 13 Jan 2025 19:27:03 GMT Source-Age: - - '70' + - '74' Strict-Transport-Security: - max-age=31536000 Vary: @@ -1543,15 +1541,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3d5e97ee6cb1fbebff69bfcb0f640c98f852636f + - f32be49aaa79d6b9699872c69d6b10c0cdfda761 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:44861F:52C78A:6605CF9B + - F063:3A423C:2590406:29A0D36:67856790 X-Served-By: - - cache-ewr18165-EWR + - cache-bos4647-BOS X-Timer: - - S1711656930.530401,VS0,VE1 + - S1736796123.210402,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_custom_validator.yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_custom_validator.yaml index d93f60aab..44dab9c94 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_custom_validator.yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_custom_validator.yaml @@ -69,7 +69,7 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:29 GMT + - Mon, 13 Jan 2025 19:22:03 GMT ETag: - '"64d39a40-24a3"' Server: @@ -85,13 +85,13 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - dbad296487e78873eda964bec933b97da390dbdc + - 620f43bfd13f7a2bfcd20a289e80226ceb7902e8 X-GitHub-Request-Id: - - 572E:8D916:1AA4374:1E774FE:6605CFE1 + - B681:1660B9:419505F:48225F1:678567DB X-Served-By: - - cache-ewr18148-EWR + - cache-bos4682-BOS X-Timer: - - S1711656930.628962,VS0,VE22 + - S1736796123.312706,VS0,VE31 permissions-policy: - interest-cohort=() x-proxy-cache: @@ -169,7 +169,7 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:29 GMT + - Mon, 13 Jan 2025 19:22:03 GMT ETag: - '"64d39a40-24a3"' Server: @@ -185,13 +185,13 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e1824baefe662a67d238dc0dfadca6c4bb9f9c41 + - ae3748b7548a749ccd65559d09139026fdbab66b X-GitHub-Request-Id: - - 572E:8D916:1AA4374:1E774FE:6605CFE1 + - B681:1660B9:419505F:48225F1:678567DB X-Served-By: - - cache-ewr18127-EWR + - cache-bos4626-BOS X-Timer: - - S1711656930.739892,VS0,VE2 + - S1736796123.428570,VS0,VE1 permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example0].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example0].yaml index 7ae9cad1c..817111e61 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example0].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example0].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -68,11 +68,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:47 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:47 GMT Source-Age: - '0' Strict-Transport-Security: @@ -88,15 +88,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 74b06e67dcf77c1ec556148b92cccfc2b0b231b1 + - 20fd9a3a07f09786755cd27b75ecd3fef22d73dd X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8254-DEN + - cache-bos4658-BOS X-Timer: - - S1728237440.890482,VS0,VE141 + - S1736796048.600659,VS0,VE105 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example100].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example100].yaml index e0540237c..7fe8fd506 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example100].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example100].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '63' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:35 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c37b933320cd0da2550651926871e7ba810388f6 + - 4ca7e6f8dfaaacbe9ff9bae2e7d3fc0e564440ba X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8278-DEN + - cache-bos4660-BOS X-Timer: - - S1728237475.296900,VS0,VE1 + - S1736796095.080076,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '63' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:35 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - bbb3fced20d0734d76460abaef5251d798d501af + - 523c884918f17b7d76bc3303facd6bc782db2e3d X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8223-DEN + - cache-bos4678-BOS X-Timer: - - S1728237475.327951,VS0,VE2 + - S1736796095.166359,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '63' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:35 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -279,17 +277,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - e10b212fca8ced43cfa0d7a47e2a6581049e59bf + - f7972119af7cf5a5518d56585cc6e0f546999cf9 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8270-DEN + - cache-bos4652-BOS X-Timer: - - S1728237475.353090,VS0,VE1 + - S1736796095.240299,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '63' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:35 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9c6cae212b17620fc83a13270d1d694582369c9d + - 184bd83aa0dbf2a83bb6e9b8ad08af6f8a4e779c X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8277-DEN + - cache-bos4665-BOS X-Timer: - - S1728237475.381640,VS0,VE2 + - S1736796095.318552,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '63' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:35 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -416,19 +414,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - ee64f413ec2ce01c00a8d9f564f8020ee8ccea61 + - 1307e1488e858ce9e55e6610913d04da344706cb X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8271-DEN + - cache-bos4665-BOS X-Timer: - - S1728237475.408301,VS0,VE0 + - S1736796095.396928,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '63' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:35 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fbf3e7e34dbf8168f2f4c23289e8e4d9dbc9a5d1 + - abecfa86045c261de3b90b6cd14da7832e929df2 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8269-DEN + - cache-bos4679-BOS X-Timer: - - S1728237475.437817,VS0,VE3 + - S1736796095.486315,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/timestamps/json-schema/schema.json response: @@ -561,7 +557,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:35 GMT ETag: - '"66e1651c-675"' Last-Modified: @@ -577,17 +573,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 0d99494fa0471693097e992ac91d3e81de58e223 + - 57d677e51116affdcc21fd0d80d41d47a244cb82 X-GitHub-Request-Id: - - C659:1C7115:396778C:3FC762D:6702CFA2 + - 8D90:F8F28:424F11B:4B2821A:678567BF X-Served-By: - - cache-den8233-DEN + - cache-bos4625-BOS X-Timer: - - S1728237475.468783,VS0,VE72 + - S1736796096.568628,VS0,VE41 expires: - - Sun, 06 Oct 2024 18:07:55 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:35 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example101].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example101].yaml index 63d7b11da..9df88f510 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example101].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example101].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '18' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:35 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -115,17 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3020695e2e2f4e2b55b2ba1463bc0b96e778bcf2 + - a79fb4b21ce0c230d70cf387d520e2c5f4226617 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8242-DEN + - cache-bos4633-BOS X-Timer: - - S1728237476.585106,VS0,VE1 + - S1736796096.706475,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -139,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +179,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '19' Cache-Control: - max-age=600 Connection: @@ -191,7 +189,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:35 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -207,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 704d93114722079bcb0230418ffd79b87647f07e + - 1f5d92cfd0344dd88d2fa5121b18acfa55f95e30 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8228-DEN + - cache-bos4648-BOS X-Timer: - - S1728237476.616061,VS0,VE2 + - S1736796096.806274,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -229,7 +227,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -264,7 +262,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '14' Cache-Control: - max-age=600 Connection: @@ -274,7 +272,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:35 GMT ETag: - '"66e1651c-70b"' Last-Modified: @@ -290,15 +288,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4099cf46311e347b611055b188f8b9076398b48d + - 8e99e5b5b431730b788fed8b1facce09870bfce5 X-GitHub-Request-Id: - - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 + - EF08:2542B:42EACC0:4BC34D3:678567B1 X-Served-By: - - cache-den8281-DEN + - cache-bos4670-BOS X-Timer: - - S1728237476.644628,VS0,VE1 + - S1736796096.898293,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -314,7 +312,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -396,7 +394,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '64' Cache-Control: - max-age=600 Connection: @@ -406,7 +404,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:35 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -422,15 +420,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5374084590cc9cc8f873c9ae2abdcc556d09a4fd + - 135650973f018dd36b2d22acca40efd38b7e2971 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8257-DEN + - cache-bos4672-BOS X-Timer: - - S1728237476.680228,VS0,VE1 + - S1736796096.987310,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example102].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example102].yaml index 135454ca8..fb88b5fb7 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example102].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example102].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '64' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:36 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 12ec01dfdca9876f2fa0f74fa400e35e1838ff38 + - ae6e7ce8293c5da4cd73077095b486fcc2888c3b X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8259-DEN + - cache-bos4678-BOS X-Timer: - - S1728237476.716360,VS0,VE1 + - S1736796096.080449,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '64' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:36 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -180,19 +180,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 88e40097c8f2e17d84e004b921383e3ccd83e982 + - 9c06313b33155d314426859e913fd1407243cce4 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8255-DEN + - cache-bos4676-BOS X-Timer: - - S1728237476.745337,VS0,VE0 + - S1736796096.180593,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '64' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:36 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - 1fc9c464326eeb25c99b92ff75d7148ba2838742 + - 73f9e66fd9126791a997cef3377dbd8adb040d2b X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8267-DEN + - cache-bos4677-BOS X-Timer: - - S1728237476.771004,VS0,VE1 + - S1736796096.262046,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '64' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:36 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 415c8886c7b77f599131fe1ce9249cf28d8b19d1 + - e76024bcbe46e2f5544277272b212e909a79d55e X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8249-DEN + - cache-bos4629-BOS X-Timer: - - S1728237476.796860,VS0,VE1 + - S1736796096.340679,VS0,VE3 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '64' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:36 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -416,19 +414,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 8c11b9093c52411a1c4bb052742215038729f664 + - 5a2e65ab93b312b057da2d904e41929fdd5941dd X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8263-DEN + - cache-bos4655-BOS X-Timer: - - S1728237476.823770,VS0,VE0 + - S1736796096.427514,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '64' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:36 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -492,17 +488,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Fastly-Request-ID: - - 920ad24790bff063f98f5c120aad1671da3d230a + - f294fa1d3ba7d570807acafdaf3b1b4846410cc8 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8270-DEN + - cache-bos4686-BOS X-Timer: - - S1728237476.853669,VS0,VE1 + - S1736796097.518454,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -553,7 +549,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '15' Cache-Control: - max-age=600 Connection: @@ -563,7 +559,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:36 GMT ETag: - '"66e1651c-70b"' Last-Modified: @@ -579,15 +575,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 783c9a888037cb778bb3957e816208318dfbd223 + - cf76bf816543f9be749fa03ec2abe89af2752e97 X-GitHub-Request-Id: - - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 + - EF08:2542B:42EACC0:4BC34D3:678567B1 X-Served-By: - - cache-den8227-DEN + - cache-bos4654-BOS X-Timer: - - S1728237476.883915,VS0,VE1 + - S1736796097.602542,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -603,7 +599,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -685,7 +681,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '19' Cache-Control: - max-age=600 Connection: @@ -695,7 +691,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:36 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -709,19 +705,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '18' + - '2' X-Fastly-Request-ID: - - b24cacc1270c94f4c313da6896c51a8ba9130365 + - cb53f96ab29f52887945a1423b41559b2f84eb67 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8226-DEN + - cache-bos4633-BOS X-Timer: - - S1728237476.914599,VS0,VE1 + - S1736796097.694160,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -735,7 +729,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -777,7 +771,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '20' Cache-Control: - max-age=600 Connection: @@ -787,7 +781,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:36 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -801,17 +795,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 5a42b15b4ceaaab66f0f58c354758e511e6e7d5f + - c2b617894bbdbc390fd604375d952abd5cf2008f X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8279-DEN + - cache-bos4680-BOS X-Timer: - - S1728237476.945967,VS0,VE1 + - S1736796097.778462,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example103].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example103].yaml index d2cb3dfea..61bbdbed4 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example103].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example103].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '65' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:36 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d97e4579ef52c99fd0bae638bbb0cf0592f7df60 + - 312165ff6e31bccf022868a850596da5e4001f24 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8223-DEN + - cache-bos4649-BOS X-Timer: - - S1728237476.985666,VS0,VE2 + - S1736796097.856614,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '65' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:36 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f5e4a0c3b4c06398a87203c97e3e49488ada835b + - 10230a18bf5a41358706e9427f08baad85bbaf62 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8266-DEN + - cache-bos4668-BOS X-Timer: - - S1728237476.016040,VS0,VE2 + - S1736796097.946342,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '65' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4994f740313c760f39a9374bacb93b2d6c523a45 + - 8cf4f5b7f7d0c49000df56cffd836bdf459c7542 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8239-DEN + - cache-bos4625-BOS X-Timer: - - S1728237476.039382,VS0,VE2 + - S1736796097.036743,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '64' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 18aadc936ffa289472b261cf0699c880cc6cb784 + - c294202927f30e092cde4496a8857a87c5fcb6a1 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8275-DEN + - cache-bos4620-BOS X-Timer: - - S1728237476.066735,VS0,VE1 + - S1736796097.128848,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '64' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - cf8b73232d455f21fefcdd992bce932030fabc4b + - 6cbb9329e49f661f3dff252855e70e5142951b9f X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8244-DEN + - cache-bos4682-BOS X-Timer: - - S1728237476.094546,VS0,VE2 + - S1736796097.202693,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '64' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6d70dc3555d279b7d219dc3ff41b84500a359e29 + - c5b1157c0c65afeacf0b937b12e060b66aa4a0f2 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8260-DEN + - cache-bos4629-BOS X-Timer: - - S1728237476.118268,VS0,VE1 + - S1736796097.284513,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sat/json-schema/schema.json response: @@ -548,7 +544,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '7' Cache-Control: - max-age=600 Connection: @@ -558,7 +554,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-5bb"' Last-Modified: @@ -574,15 +570,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ca382a6e32c528df98ddaba36d151bb58a70c749 + - eefeaa1fb3a04f835417135e89f3fb1d5899bce1 X-GitHub-Request-Id: - - C07F:1A16E6:3879144:3ED8D70:6702CF9F + - 2463:191F96:43C1ECA:4C9B49C:678567B9 X-Served-By: - - cache-den8237-DEN + - cache-bos4684-BOS X-Timer: - - S1728237476.145504,VS0,VE2 + - S1736796097.372401,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:51 GMT + - Mon, 13 Jan 2025 19:31:30 GMT x-origin-cache: - HIT x-proxy-cache: @@ -598,7 +594,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -637,7 +633,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '11' + - '17' Cache-Control: - max-age=600 Connection: @@ -647,7 +643,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-829"' Last-Modified: @@ -663,17 +659,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a92697326c1c6cd483dcd2f67e6876c192a27425 + - 2c4d5befb746aeafbdbd48335d61e1709d9e256f X-GitHub-Request-Id: - - AE2B:2BEEA3:3A11710:4071547:6702CF98 + - 2068:32BF5C:43D7C50:4CB111B:678567B0 X-Served-By: - - cache-den8258-DEN + - cache-bos4620-BOS X-Timer: - - S1728237476.176699,VS0,VE1 + - S1736796097.471763,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:20 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example104].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example104].yaml index 48460fd08..3e9d1b7a3 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example104].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example104].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '66' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b96a0b59903b3cacaeb831b1532e5d3e76f7af4b + - c46d51e78fe7f49f5a5f61f9ac772873ae5b51f0 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8251-DEN + - cache-bos4653-BOS X-Timer: - - S1728237476.214406,VS0,VE1 + - S1736796098.558360,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '66' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ba42d9ea7a36d1bad74f5acd41a625f8882a7c97 + - a90ed27efa3b16b52104c44ce8869e31b91ce109 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8233-DEN + - cache-bos4643-BOS X-Timer: - - S1728237476.244530,VS0,VE1 + - S1736796098.640470,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '65' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -279,17 +277,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - c3bc13e0847f0d3960e6e2199e14c3c8e944f7c1 + - b08b7ef5e605e98634fbce811836bf23b8a1f928 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8281-DEN + - cache-bos4637-BOS X-Timer: - - S1728237476.269453,VS0,VE1 + - S1736796098.728307,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '65' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -350,17 +348,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - e05a28908c960bd961a112ba9798e3f7748fb78d + - d6ad19a79bba57d8dd2503081a10e498e2ff61fc X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8278-DEN + - cache-bos4684-BOS X-Timer: - - S1728237476.299009,VS0,VE2 + - S1736796098.820360,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '65' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 041e171e966fad96a07121241458c43288924b21 + - 1470baca61bacd2e909e33db5feeee96a728e605 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8262-DEN + - cache-bos4659-BOS X-Timer: - - S1728237476.326077,VS0,VE1 + - S1736796098.906808,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '65' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:37 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -492,17 +488,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 06d662b5c95558328540720930ae0561e3eb58a8 + - 467365c813d95d21197a8a7734920119292e71a2 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8230-DEN + - cache-bos4678-BOS X-Timer: - - S1728237476.352611,VS0,VE1 + - S1736796098.998555,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/projection/json-schema/schema.json response: @@ -572,7 +568,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '9' Cache-Control: - max-age=600 Connection: @@ -582,7 +578,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:38 GMT ETag: - '"66e1651c-dc7"' Last-Modified: @@ -598,15 +594,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6995b985e4be703c6b5a1dbeb19aaf918b5f90fd + - b135a99c724f3cf8a2ef3869d6d49beddca79c7e X-GitHub-Request-Id: - - E8DC:3E300:36AED75:3D0E8FA:6702CF9D + - 9F2E:F1388:432338B:4BFBF94:678567B8 X-Served-By: - - cache-den8271-DEN + - cache-bos4638-BOS X-Timer: - - S1728237476.378811,VS0,VE1 + - S1736796098.086218,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:49 GMT + - Mon, 13 Jan 2025 19:31:28 GMT x-origin-cache: - HIT x-proxy-cache: @@ -622,7 +618,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -661,7 +657,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '11' + - '17' Cache-Control: - max-age=600 Connection: @@ -671,7 +667,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:38 GMT ETag: - '"66e1651c-829"' Last-Modified: @@ -687,17 +683,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4bee01e8421533e34cee87eabba93a6bfe795be8 + - 06bbe9f0b39ab6ea596e57d9b0c682ff2db2d312 X-GitHub-Request-Id: - - AE2B:2BEEA3:3A11710:4071547:6702CF98 + - 2068:32BF5C:43D7C50:4CB111B:678567B0 X-Served-By: - - cache-den8275-DEN + - cache-bos4678-BOS X-Timer: - - S1728237476.414254,VS0,VE1 + - S1736796098.176445,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:20 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example105].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example105].yaml index 351b52847..4a170957f 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example105].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example105].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '66' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:38 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - babeda74a1c8a6275e8abcb3f0d3b56dfd41c517 + - 0fb2a6c46fc05aa5efe378e893fdaf35657c5403 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8268-DEN + - cache-bos4684-BOS X-Timer: - - S1728237476.451768,VS0,VE1 + - S1736796098.274338,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '66' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:38 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2f0e9c985ad746cd01171422872b9210144f176d + - 95d201ae8060afbc9227fcfe69b7d447165c1949 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8261-DEN + - cache-bos4647-BOS X-Timer: - - S1728237476.481069,VS0,VE2 + - S1736796098.358591,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '66' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:38 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 458d31414fac7a5551eb8092a466be3ea7864c4d + - 6eb33ae7726ae04e46c81ec8cb4d934b21cef894 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8231-DEN + - cache-bos4640-BOS X-Timer: - - S1728237477.507895,VS0,VE2 + - S1736796098.447554,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '66' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:56 GMT + - Mon, 13 Jan 2025 19:21:38 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - bbd4dcc86fa219d999fd0d2c750c195e396943bc + - 21510abfccebe9af274d1f979a7c39f0a3692b5d X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8237-DEN + - cache-bos4626-BOS X-Timer: - - S1728237477.534773,VS0,VE1 + - S1736796099.540398,VS0,VE52 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '17' + - '66' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:38 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 189c2b42931061cd9c363afbfe331df256d9f455 + - d0877cc92e2b9acb5ce03ee9e8398ab757a390d9 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8249-DEN + - cache-bos4661-BOS X-Timer: - - S1728237478.569875,VS0,VE1 + - S1736796099.678293,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '17' + - '66' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:38 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -492,17 +488,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - e109db84b809e7681b93b9a1e79e508a14bcad35 + - 5ba84d708795ab236e0343e0058683159671fee9 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8247-DEN + - cache-bos4641-BOS X-Timer: - - S1728237478.603039,VS0,VE1 + - S1736796099.770998,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example106].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example106].yaml index fbeb17418..53f6db511 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example106].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example106].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '67' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:38 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 5125584d567d5c46ad0d386a5225fb9f558b741f + - 78af5df465f305fe416ce5570938810e27e1bd07 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8258-DEN + - cache-bos4679-BOS X-Timer: - - S1728237478.642760,VS0,VE1 + - S1736796099.848747,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '67' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:38 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -180,19 +180,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 8f0e10e1d3f9a37c15fd1088e1d56086f3fe8f7d + - 1253b6030a1bd9a25b3ef7aa8c3f34a574e10b30 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8269-DEN + - cache-bos4684-BOS X-Timer: - - S1728237478.680976,VS0,VE1 + - S1736796099.940413,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '17' + - '66' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:39 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - 84908a8250e8ad3eb2b2e7c139214ab312f6f303 + - ba171fda1eee21846bf5d4e8343f3837d82ce5a3 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8227-DEN + - cache-bos4655-BOS X-Timer: - - S1728237478.703785,VS0,VE0 + - S1736796099.018746,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '17' + - '66' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:39 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d46e4ec10ce53902c8bc5587978cbca8c2739118 + - dfc500c329db650b9b57d2b20c65466b51baa1a1 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8269-DEN + - cache-bos4653-BOS X-Timer: - - S1728237478.730605,VS0,VE1 + - S1736796099.102480,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '17' + - '66' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:39 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c3de6ca6a4a18d7179fd79c0f4ee3b677c578ca6 + - 0e0eb3efdfe0cffb805a9e204277be676af4bce4 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8226-DEN + - cache-bos4670-BOS X-Timer: - - S1728237478.758337,VS0,VE1 + - S1736796099.192151,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '17' + - '66' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:39 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -492,17 +488,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 000c0ef7dd96a787817e3a6610266646cb8fe7e3 + - 83a4b0b440ffdd74dfd6d1ea08060b964ef06e80 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8235-DEN + - cache-bos4636-BOS X-Timer: - - S1728237478.784269,VS0,VE1 + - S1736796099.282591,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -556,7 +552,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '19' Cache-Control: - max-age=600 Connection: @@ -566,7 +562,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:39 GMT ETag: - '"66e1651c-805"' Last-Modified: @@ -582,15 +578,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d499cf19f26e6121215cc3a4dddda1890de644a2 + - 4f066dba4ed7772b44d4528970ef8bf812c542fb X-GitHub-Request-Id: - - E8D9:1C7115:3966C49:3FC69B2:6702CF98 + - 58A3:52C42:437E2BF:4C56E42:678567AF X-Served-By: - - cache-den8222-DEN + - cache-bos4646-BOS X-Timer: - - S1728237478.810271,VS0,VE1 + - S1736796099.368400,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:20 GMT x-origin-cache: - HIT x-proxy-cache: @@ -606,7 +602,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/projection/json-schema/schema.json response: @@ -660,7 +656,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '11' Cache-Control: - max-age=600 Connection: @@ -670,7 +666,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:39 GMT ETag: - '"66e1651c-dc7"' Last-Modified: @@ -686,15 +682,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d3a300ccb25bbf2c93bb33f10a0200d054ca9591 + - 1e525f3a592fe93abfbecf4ca4364602c08e775f X-GitHub-Request-Id: - - E8DC:3E300:36AED75:3D0E8FA:6702CF9D + - 9F2E:F1388:432338B:4BFBF94:678567B8 X-Served-By: - - cache-den8244-DEN + - cache-bos4662-BOS X-Timer: - - S1728237478.842728,VS0,VE1 + - S1736796099.464149,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:49 GMT + - Mon, 13 Jan 2025 19:31:28 GMT x-origin-cache: - HIT x-proxy-cache: @@ -710,7 +706,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -749,7 +745,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '19' Cache-Control: - max-age=600 Connection: @@ -759,7 +755,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:39 GMT ETag: - '"66e1651c-829"' Last-Modified: @@ -775,17 +771,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 67cf88790277ffc8c5672b1a259a24a5e4609c92 + - ecb2baf2a9037bacac4d8ae13b3fc48889347f7f X-GitHub-Request-Id: - - AE2B:2BEEA3:3A11710:4071547:6702CF98 + - 2068:32BF5C:43D7C50:4CB111B:678567B0 X-Served-By: - - cache-den8270-DEN + - cache-bos4680-BOS X-Timer: - - S1728237478.873751,VS0,VE1 + - S1736796100.554612,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:20 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example107].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example107].yaml index b792cec54..227cba8e2 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example107].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example107].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '67' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:39 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - 9ddb10fd1e49f74a54800b0905da9aadc800b6d0 + - 42bdd66b0fcec53c7183c4eaca1e6b4cd54bed69 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8233-DEN + - cache-bos4631-BOS X-Timer: - - S1728237478.909828,VS0,VE0 + - S1736796100.646475,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '68' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:39 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -180,19 +180,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 0ad1e6dac5f34ee9248af7f57793c4e1c88ef922 + - 7e6c81d68acca0f1d206beaeafc2481782a983d3 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8262-DEN + - cache-bos4620-BOS X-Timer: - - S1728237478.942672,VS0,VE1 + - S1736796100.740858,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '68' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:57 GMT + - Mon, 13 Jan 2025 19:21:39 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 56dec83c6b4886aedeb3c01270105fe3a2863018 + - a086d56dd7bf29c27800264df6db2c7d74d1a634 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8258-DEN + - cache-bos4656-BOS X-Timer: - - S1728237478.972044,VS0,VE1 + - S1736796100.838866,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '67' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:39 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 7bda1586ce063097fe20943d69dab1f1be47ba59 + - 4183709f33af02339b5329e6c50c71b48a703350 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8246-DEN + - cache-bos4652-BOS X-Timer: - - S1728237478.016027,VS0,VE1 + - S1736796100.928159,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '67' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 94e7cb9f2b2450568abbda402914b06796a35c88 + - 86505b10783a9028a628768744cf6b609bcaa20c X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8260-DEN + - cache-bos4663-BOS X-Timer: - - S1728237478.048542,VS0,VE2 + - S1736796100.018960,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '67' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 35166f566a641611690337166561362f7ca7040d + - 343d7e75d1a1ab0ea808f4a4f7d80a53742b2bc9 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8243-DEN + - cache-bos4643-BOS X-Timer: - - S1728237478.075948,VS0,VE2 + - S1736796100.102618,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -556,7 +552,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '20' Cache-Control: - max-age=600 Connection: @@ -566,7 +562,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-805"' Last-Modified: @@ -582,15 +578,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4b145895d29e24d79bf97812ceeb6615f189ce31 + - 2ebf6ff3a3360bf31f99970e5ce677adedc483d6 X-GitHub-Request-Id: - - E8D9:1C7115:3966C49:3FC69B2:6702CF98 + - 58A3:52C42:437E2BF:4C56E42:678567AF X-Served-By: - - cache-den8279-DEN + - cache-bos4674-BOS X-Timer: - - S1728237478.103717,VS0,VE2 + - S1736796100.192964,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:20 GMT x-origin-cache: - HIT x-proxy-cache: @@ -606,7 +602,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -645,7 +641,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '19' Cache-Control: - max-age=600 Connection: @@ -655,7 +651,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-829"' Last-Modified: @@ -671,17 +667,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d642302f8cce96150d86d3d2d04e7ab8518ad316 + - 7df0cb20b5095e2079a0fe032146498fb2968981 X-GitHub-Request-Id: - - AE2B:2BEEA3:3A11710:4071547:6702CF98 + - 2068:32BF5C:43D7C50:4CB111B:678567B0 X-Served-By: - - cache-den8226-DEN + - cache-bos4684-BOS X-Timer: - - S1728237478.136648,VS0,VE1 + - S1736796100.288928,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:20 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example108].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example108].yaml index f650e0d86..82ea039f5 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example108].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example108].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '68' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 95a47e767364fc7137eaacdb0266674f7358229d + - aeceefde89d972f5062923dd47ba0dead420cf54 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8223-DEN + - cache-bos4662-BOS X-Timer: - - S1728237478.175153,VS0,VE1 + - S1736796100.378900,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '68' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 985199739814aebce8795973e336f0fdc9e65d25 + - 77755778da6f37962839b6437481903ee50cdf3f X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8240-DEN + - cache-bos4675-BOS X-Timer: - - S1728237478.203574,VS0,VE2 + - S1736796100.460182,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '68' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -279,17 +277,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 4d77862cd8986619641df1645973294574a4510d + - 9f6fe4c97b49a86b4a7f852655ce19ca30e2b06b X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8241-DEN + - cache-bos4620-BOS X-Timer: - - S1728237478.227804,VS0,VE2 + - S1736796101.536369,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '68' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -350,17 +348,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 48f37d77939892aaad7516ff8deff0cb8781ce73 + - 7c4e6c73ba97d327503b53d0dc75adac5d7bae91 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8221-DEN + - cache-bos4635-BOS X-Timer: - - S1728237478.254373,VS0,VE1 + - S1736796101.623085,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '68' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - feed4f842fe4273d94f04429debd1498d1fb56c3 + - 2251c6d4de82dab8853b14eb2b27f67fb325b73e X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8267-DEN + - cache-bos4638-BOS X-Timer: - - S1728237478.285737,VS0,VE1 + - S1736796101.696564,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '68' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -492,17 +488,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Fastly-Request-ID: - - 301f1c3ad53b6a5ef7bc74e58d2463da191d440f + - 0ce209f0716817864b7e0f94bb35b65e2b90b827 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8235-DEN + - cache-bos4644-BOS X-Timer: - - S1728237478.310800,VS0,VE0 + - S1736796101.770476,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -556,7 +552,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '20' Cache-Control: - max-age=600 Connection: @@ -566,7 +562,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-805"' Last-Modified: @@ -582,15 +578,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9f22c9c51d91b806eefd8e87d4eaa0bacda6b99c + - 2d2ba5d3df869ec96c52934b1156d13cabeeffbe X-GitHub-Request-Id: - - E8D9:1C7115:3966C49:3FC69B2:6702CF98 + - 58A3:52C42:437E2BF:4C56E42:678567AF X-Served-By: - - cache-den8257-DEN + - cache-bos4657-BOS X-Timer: - - S1728237478.339506,VS0,VE2 + - S1736796101.844388,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:20 GMT x-origin-cache: - HIT x-proxy-cache: @@ -606,7 +602,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -645,7 +641,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '20' Cache-Control: - max-age=600 Connection: @@ -655,7 +651,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:40 GMT ETag: - '"66e1651c-829"' Last-Modified: @@ -671,17 +667,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4037a98dd8b2d5526434406c2da7401b81b8ba12 + - ea48fbe873600dba33092752370cf215b6376542 X-GitHub-Request-Id: - - AE2B:2BEEA3:3A11710:4071547:6702CF98 + - 2068:32BF5C:43D7C50:4CB111B:678567B0 X-Served-By: - - cache-den8269-DEN + - cache-bos4685-BOS X-Timer: - - S1728237478.370883,VS0,VE1 + - S1736796101.918209,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:20 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example109].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example109].yaml index 96fe6e35d..1217e348f 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example109].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example109].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '69' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 22c5e3914639ab467e296a966dbd2760840bea9b + - 2429e9dc5ffef6cfb6b91c487c651c0e28713f2a X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8236-DEN + - cache-bos4622-BOS X-Timer: - - S1728237478.407844,VS0,VE1 + - S1736796101.002369,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '69' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -180,19 +180,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - f7ac778fce4c92780c7a264e17a9e764ea3c4162 + - 6f18cdf7eb93511d4e4d87bf935fd6506d6a93dc X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8223-DEN + - cache-bos4679-BOS X-Timer: - - S1728237478.462433,VS0,VE1 + - S1736796101.088598,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '69' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5c086af56642bde03b448f9bd656cea4069729e2 + - 66e543f26ad3e4db1f2d4f32c9f69704257a0857 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8220-DEN + - cache-bos4682-BOS X-Timer: - - S1728237478.488281,VS0,VE1 + - S1736796101.167012,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '69' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c5017ef0c83d4e47c653e42410d1c10ecc241db8 + - 746a8d2a5e17cd9283e71fca1d0aa94200c4c0d8 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8244-DEN + - cache-bos4666-BOS X-Timer: - - S1728237479.520770,VS0,VE2 + - S1736796101.238539,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '69' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2b9d4005cac51a2792e75cfcf62a3fdfdc7517b9 + - 6a30e67fa575b928a7cd6cc56e22bf9103e8523d X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8272-DEN + - cache-bos4686-BOS X-Timer: - - S1728237479.550889,VS0,VE1 + - S1736796101.320497,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '68' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - 82555fbfadc5d49494f2da9c71cc69263756f697 + - add1388a9f3c15f3f16529852f2bff9f0bc42cbe X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8223-DEN + - cache-bos4629-BOS X-Timer: - - S1728237479.577119,VS0,VE1 + - S1736796101.418678,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -556,7 +552,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '21' Cache-Control: - max-age=600 Connection: @@ -566,7 +562,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-805"' Last-Modified: @@ -580,17 +576,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '7' X-Fastly-Request-ID: - - 055cee478c45bb1d8ef98d2a9857bcc179821023 + - 568769b3b4a1486be54539ee3bcc84d06373ca59 X-GitHub-Request-Id: - - E8D9:1C7115:3966C49:3FC69B2:6702CF98 + - 58A3:52C42:437E2BF:4C56E42:678567AF X-Served-By: - - cache-den8283-DEN + - cache-bos4638-BOS X-Timer: - - S1728237479.600120,VS0,VE2 + - S1736796102.506325,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:20 GMT x-origin-cache: - HIT x-proxy-cache: @@ -606,7 +602,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -645,7 +641,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '21' Cache-Control: - max-age=600 Connection: @@ -655,7 +651,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-829"' Last-Modified: @@ -671,17 +667,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 081e87563806d74d68f4ee05656a0ad076efaae9 + - e4fda0babf6df2e844c1b14d074d211159cd4988 X-GitHub-Request-Id: - - AE2B:2BEEA3:3A11710:4071547:6702CF98 + - 2068:32BF5C:43D7C50:4CB111B:678567B0 X-Served-By: - - cache-den8253-DEN + - cache-bos4646-BOS X-Timer: - - S1728237479.632222,VS0,VE2 + - S1736796102.594229,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:20 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example10].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example10].yaml index df64e04df..c428ed5f5 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example10].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example10].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -68,13 +68,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:49 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:49 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -88,15 +88,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1cd17dffedc5b0ba5fc6264d545bab1829b3feb5 + - ad1fc27aa54e3ac332d5cad71f6ce9907056d1ec X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8274-DEN + - cache-bos4686-BOS X-Timer: - - S1728237441.288982,VS0,VE1 + - S1736796050.968694,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example110].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example110].yaml index 21afa4bb4..c339d3fba 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example110].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example110].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '70' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - eb6d8dbcf40bec2a5f5464cf573ed6ce1ef95923 + - f63c9ad04ee8085ca7e1396654436cafc9a23c6a X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8242-DEN + - cache-bos4638-BOS X-Timer: - - S1728237479.691818,VS0,VE1 + - S1736796102.684334,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '70' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -180,19 +180,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 36b75b89f13dd34dfa179d22b53a9c2245e33a91 + - bb7b9f13d2fcb3c7fc02024a0e9b193f0e42e019 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8273-DEN + - cache-bos4658-BOS X-Timer: - - S1728237479.717851,VS0,VE1 + - S1736796102.776848,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '70' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 579b9f3f8edc42cf2f6c43df3e5c45a4e52585f0 + - 78fad6bc68306354f1fd999998efdbd574be6319 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8276-DEN + - cache-bos4676-BOS X-Timer: - - S1728237479.740647,VS0,VE1 + - S1736796102.856791,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '69' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:41 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b0cc1f7cbc299ed71b23c0937d14e57cdff67f01 + - 692689b4a43fe5526532c32ae31350669b2c8657 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8253-DEN + - cache-bos4671-BOS X-Timer: - - S1728237479.764265,VS0,VE1 + - S1736796102.942349,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '69' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -416,19 +414,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 6aadf05314936fdd9af3c69553a9b3a009d7c226 + - e50c783a607025e69d36e59032e299548fabfb47 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8256-DEN + - cache-bos4671-BOS X-Timer: - - S1728237479.786931,VS0,VE0 + - S1736796102.014339,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '69' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e03bf37556a2b533f81ac82a0e2026c4c330894e + - 39bd2b47ffb3bf6757308033ff15436c81a91c2d X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8256-DEN + - cache-bos4625-BOS X-Timer: - - S1728237479.807984,VS0,VE1 + - S1736796102.096642,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example111].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example111].yaml index 6210bc5d0..0b8f1c1ea 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example111].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example111].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '70' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Fastly-Request-ID: - - 6fca927c208f40ba82573fbec2957361c0829dc5 + - 0e7fe1cb0a0d4a526c81b7136d1006d1a944d46a X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8233-DEN + - cache-bos4665-BOS X-Timer: - - S1728237479.834757,VS0,VE0 + - S1736796102.168479,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '70' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 535c72b5cd5462386e617f3989ebc3819665d792 + - 3d2c7467789aad67167f6ee1bbd27a12d414c7c9 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8252-DEN + - cache-bos4637-BOS X-Timer: - - S1728237479.861452,VS0,VE1 + - S1736796102.248482,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '70' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -279,17 +277,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Fastly-Request-ID: - - fa2e25bcbee2f1658b9fdda967bc1eb48049ed4f + - 4f9c09169f0cebbfa4dc47af3cf816dd6668d045 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8251-DEN + - cache-bos4677-BOS X-Timer: - - S1728237479.884126,VS0,VE1 + - S1736796102.336888,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '70' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ae3c330546be0a116b1bed6ee1f530e7d2f55a5c + - b4de4b85270d37352f5843875619b20bae032b1c X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8240-DEN + - cache-bos4654-BOS X-Timer: - - S1728237479.963130,VS0,VE2 + - S1736796102.407612,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '70' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:58 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -416,19 +414,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 8aaa5f698b317afd6f2b3b466004a91fbb3b1806 + - 3d78bb951609850b7f479bbd62af9646d65ab052 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8278-DEN + - cache-bos4646-BOS X-Timer: - - S1728237479.989204,VS0,VE1 + - S1736796103.504093,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '70' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - be4f08bf28674207b167f98b5d9315aad0608f02 + - db5f2add5515ff8e5d3bbf0b908bd71b96149e28 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8226-DEN + - cache-bos4638-BOS X-Timer: - - S1728237479.015416,VS0,VE68 + - S1736796103.593101,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -557,7 +553,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '22' Cache-Control: - max-age=600 Connection: @@ -567,7 +563,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"66e1651c-829"' Last-Modified: @@ -583,17 +579,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d60cc923d9985b8b4a91672aa11e0e9b634ec2ca + - c077565600b41baf045c9b3373028b3e37dac57f X-GitHub-Request-Id: - - AE2B:2BEEA3:3A11710:4071547:6702CF98 + - 2068:32BF5C:43D7C50:4CB111B:678567B0 X-Served-By: - - cache-den8220-DEN + - cache-bos4622-BOS X-Timer: - - S1728237479.107219,VS0,VE2 + - S1736796103.684518,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:20 GMT x-proxy-cache: - MISS status: @@ -607,7 +601,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/projection/json-schema/schema.json response: @@ -661,7 +655,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '14' Cache-Control: - max-age=600 Connection: @@ -671,7 +665,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"66e1651c-dc7"' Last-Modified: @@ -687,15 +681,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fb6550be152d7c51644b6db354295758185c9aff + - 98faaf996ae8875104d4e8f7860cba6254da79d1 X-GitHub-Request-Id: - - E8DC:3E300:36AED75:3D0E8FA:6702CF9D + - 9F2E:F1388:432338B:4BFBF94:678567B8 X-Served-By: - - cache-den8278-DEN + - cache-bos4681-BOS X-Timer: - - S1728237479.139291,VS0,VE2 + - S1736796103.776725,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:49 GMT + - Mon, 13 Jan 2025 19:31:28 GMT x-origin-cache: - HIT x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example112].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example112].yaml index 6fa707040..2b1a11914 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example112].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example112].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:59 GMT + - Mon, 13 Jan 2025 19:26:42 GMT Source-Age: - - '34' + - '46' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 849471aa3bc49f637c60a7a9439c3da62ab84cf0 + - 4ef14ce4a563a20250bb008813db48d19dbfa325 X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8242-DEN + - cache-bos4653-BOS X-Timer: - - S1728237479.178562,VS0,VE1 + - S1736796103.864408,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -191,13 +191,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:42 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:59 GMT + - Mon, 13 Jan 2025 19:26:42 GMT Source-Age: - - '34' + - '46' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 04f70b2089323c6c01bba686a8a2a5c5bea3b0a6 + - 88cc1e8c0a367ce447d679042164714884db873e X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8241-DEN + - cache-bos4662-BOS X-Timer: - - S1728237479.208251,VS0,VE1 + - S1736796103.938318,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example113].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example113].yaml index f6df83881..701d33362 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example113].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example113].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/collection-spec/json-schema/collection.json response: @@ -89,13 +89,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:43 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Sun, 06 Oct 2024 18:02:59 GMT + - Mon, 13 Jan 2025 19:26:43 GMT Source-Age: - - '39' + - '55' Strict-Transport-Security: - max-age=31536000 Vary: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0b5d9b24f82c24dccf423bb86ee55913e9b47841 + - 319aa60d2597e219a4cc18f3168b80591bb2f622 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-den8222-DEN + - cache-bos4657-BOS X-Timer: - - S1728237479.240319,VS0,VE1 + - S1736796103.016587,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -192,13 +192,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:43 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:59 GMT + - Mon, 13 Jan 2025 19:26:43 GMT Source-Age: - - '39' + - '55' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a2ef4456fff12a01ab537b58adb2324c518f4035 + - 7cf3e1c73a89156ef93e13f9031bfbbb14be9d8f X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8243-DEN + - cache-bos4630-BOS X-Timer: - - S1728237479.271033,VS0,VE1 + - S1736796103.096319,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example114].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example114].yaml index 85a200318..1a1f6c905 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example114].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example114].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/item.json response: @@ -110,7 +110,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:43 GMT ETag: - '"66e1651c-17f9"' Last-Modified: @@ -126,15 +126,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 9b8a7b99a719fc0fdc409312da06523f6b616249 + - 31a8fec7ae49aad5d2114ebeb366a72a88e56e08 X-GitHub-Request-Id: - - 3181:269EC6:3A89264:40E8FF0:6702CFA6 + - 7157:324E65:41D84E0:48651D3:678567C6 X-Served-By: - - cache-den8267-DEN + - cache-bos4623-BOS X-Timer: - - S1728237479.309378,VS0,VE60 + - S1736796103.178587,VS0,VE45 expires: - - Sun, 06 Oct 2024 18:07:59 GMT + - Mon, 13 Jan 2025 19:31:43 GMT x-proxy-cache: - MISS status: @@ -148,7 +148,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/basics.json response: @@ -177,7 +177,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:43 GMT ETag: - '"66e1651c-21a"' Last-Modified: @@ -193,15 +193,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 70a8fe0b3cdcf0e753891bd0fa30f0216c2fe4f1 + - b385282143da3843597c21495922f01608737656 X-GitHub-Request-Id: - - 7824:30438:3A4FA03:40AF777:6702CFA1 + - 3BFB:382945:4159F01:47E7326:678567C6 X-Served-By: - - cache-den8229-DEN + - cache-bos4682-BOS X-Timer: - - S1728237479.402255,VS0,VE59 + - S1736796103.306872,VS0,VE25 expires: - - Sun, 06 Oct 2024 18:07:59 GMT + - Mon, 13 Jan 2025 19:31:43 GMT x-proxy-cache: - MISS status: @@ -215,7 +215,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:43 GMT ETag: - '"66e1651c-51b"' Last-Modified: @@ -271,15 +271,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 01393610185a51d88f7f19646c6bbabfe1e9e165 + - 8f4d55d5e8acbbc1c3af531ff7a46f8e3381917a X-GitHub-Request-Id: - - BD91:76956:3BAC130:420C130:6702CFA6 + - CAD9:2464FF:4365C57:49F30F3:678567C6 X-Served-By: - - cache-den8224-DEN + - cache-bos4627-BOS X-Timer: - - S1728237479.489975,VS0,VE75 + - S1736796103.432355,VS0,VE36 expires: - - Sun, 06 Oct 2024 18:07:59 GMT + - Mon, 13 Jan 2025 19:31:43 GMT x-origin-cache: - HIT x-proxy-cache: @@ -295,7 +295,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:43 GMT ETag: - '"66e1651c-2a0"' Last-Modified: @@ -342,15 +342,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - a7f28b46fd4be04c26075d26d80c5bdd4ee93f27 + - 7e5a254ccd2a160b0563e397c6e6a49c418f9533 X-GitHub-Request-Id: - - 84E6:31444D:388258E:3EE227A:6702CFA6 + - 6479:1660B9:4193D65:482114E:678567C7 X-Served-By: - - cache-den8233-DEN + - cache-bos4641-BOS X-Timer: - - S1728237480.596563,VS0,VE66 + - S1736796104.553243,VS0,VE41 expires: - - Sun, 06 Oct 2024 18:07:59 GMT + - Mon, 13 Jan 2025 19:31:43 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -364,7 +366,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/licensing.json response: @@ -390,7 +392,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:43 GMT ETag: - '"66e1651c-133"' Last-Modified: @@ -406,15 +408,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 9637a9c98432145c119363ffbbd1e45901131218 + - 3ff3aedf027e97aa59823065e005a28058f380ce X-GitHub-Request-Id: - - D978:2E3A96:393F7EE:3F9F14C:6702CFA5 + - E098:3528DA:40AF4C1:473C659:678567C6 X-Served-By: - - cache-den8243-DEN + - cache-bos4625-BOS X-Timer: - - S1728237480.686544,VS0,VE72 + - S1736796104.678465,VS0,VE32 expires: - - Sun, 06 Oct 2024 18:07:59 GMT + - Mon, 13 Jan 2025 19:31:43 GMT x-origin-cache: - HIT x-proxy-cache: @@ -430,7 +432,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/provider.json response: @@ -467,7 +469,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:43 GMT ETag: - '"66e1651c-458"' Last-Modified: @@ -483,15 +485,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 4eb2ea84a6e1132d6ccc99039b8a07c3a679f938 + - b41ee1423848066993f26221e3220bf95b77d0b1 X-GitHub-Request-Id: - - D31F:88140:39A9B5F:4009A0F:6702CFA6 + - 4C0B:F7148:415FAAD:47ECD19:678567C7 X-Served-By: - - cache-den8281-DEN + - cache-bos4640-BOS X-Timer: - - S1728237480.784211,VS0,VE66 + - S1736796104.790564,VS0,VE38 expires: - - Sun, 06 Oct 2024 18:07:59 GMT + - Mon, 13 Jan 2025 19:31:43 GMT x-origin-cache: - HIT x-proxy-cache: @@ -507,7 +509,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/extensions/eo/json-schema/schema.json response: @@ -583,7 +585,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:59 GMT + - Mon, 13 Jan 2025 19:21:43 GMT ETag: - '"66e1651c-1039"' Last-Modified: @@ -599,15 +601,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 13d3f147b2ef5347c8f0f344e21ace112212a7c0 + - 18a043d9fd4b67dab0e90ec94fbca75dc0cd9dfc X-GitHub-Request-Id: - - 40EF:57408:3CDBD6C:433B439:6702CFA6 + - 8A9B:389225:43537BB:49E0963:678567C6 X-Served-By: - - cache-den8243-DEN + - cache-bos4682-BOS X-Timer: - - S1728237480.915792,VS0,VE71 + - S1736796104.938748,VS0,VE38 expires: - - Sun, 06 Oct 2024 18:07:59 GMT + - Mon, 13 Jan 2025 19:31:43 GMT x-origin-cache: - HIT x-proxy-cache: @@ -623,7 +625,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/extensions/projection/json-schema/schema.json response: @@ -706,7 +708,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:00 GMT + - Mon, 13 Jan 2025 19:21:44 GMT ETag: - '"66e1651c-1247"' Last-Modified: @@ -722,15 +724,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - c54a0e6bb3ee1113a41df417d45248c8be6d7378 + - 5bab671993dd0cb7eed24700a2e1c8f51e0b7130 X-GitHub-Request-Id: - - ACFD:D9115:3A5992A:40B97D4:6702CFA6 + - 71C5:3E72B0:42A2636:492E7EE:678567C6 X-Served-By: - - cache-den8279-DEN + - cache-bos4649-BOS X-Timer: - - S1728237480.013616,VS0,VE70 + - S1736796104.058328,VS0,VE49 expires: - - Sun, 06 Oct 2024 18:08:00 GMT + - Mon, 13 Jan 2025 19:31:44 GMT x-origin-cache: - HIT x-proxy-cache: @@ -746,7 +748,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/extensions/scientific/json-schema/schema.json response: @@ -817,7 +819,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:00 GMT + - Mon, 13 Jan 2025 19:21:44 GMT ETag: - '"66e1651c-e6f"' Last-Modified: @@ -833,15 +835,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - d943c945fbeefec4eaa9ec8fb519cd8abc8b7902 + - dcc56f37ffc297a0429afd58f5478fd8ec1fbdb9 X-GitHub-Request-Id: - - 775C:B71F9:3BC4D21:4224FC7:6702CFA8 + - 10C2:324E65:41D865A:4865364:678567C8 X-Served-By: - - cache-den8271-DEN + - cache-bos4665-BOS X-Timer: - - S1728237480.202572,VS0,VE221 + - S1736796104.199033,VS0,VE43 expires: - - Sun, 06 Oct 2024 18:08:00 GMT + - Mon, 13 Jan 2025 19:31:44 GMT x-proxy-cache: - MISS status: @@ -855,7 +857,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/extensions/view/json-schema/schema.json response: @@ -924,7 +926,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:00 GMT + - Mon, 13 Jan 2025 19:21:44 GMT ETag: - '"66e1651c-def"' Last-Modified: @@ -940,15 +942,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - ed2f1ff263406d771ac6ba6744edde3bbc79302b + - 091575053e321f8633b531eac5c7739f588b77bf X-GitHub-Request-Id: - - 8F75:1C389C:39A8E29:4008B85:6702CFA0 + - 697E:241FA4:44A3C84:4B311DD:678567C6 X-Served-By: - - cache-den8278-DEN + - cache-bos4639-BOS X-Timer: - - S1728237480.458143,VS0,VE77 + - S1736796104.324514,VS0,VE38 expires: - - Sun, 06 Oct 2024 18:08:00 GMT + - Mon, 13 Jan 2025 19:31:44 GMT x-origin-cache: - HIT x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example115].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example115].yaml index d72003b8f..49419410a 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example115].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example115].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/item.json response: @@ -112,7 +112,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:00 GMT + - Mon, 13 Jan 2025 19:21:44 GMT ETag: - '"66e1651c-1887"' Last-Modified: @@ -128,17 +128,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 019611ce246f1cd016724ae393448bcdde1dd1b3 + - 6ad10284ecfb1f7ac537702200d4d1caec4e135f X-GitHub-Request-Id: - - C374:1C7115:3967D18:3FC7C56:6702CFA8 + - 228C:205859:44520A7:4ADF729:678567C8 X-Served-By: - - cache-den8280-DEN + - cache-bos4622-BOS X-Timer: - - S1728237481.581924,VS0,VE60 + - S1736796104.490070,VS0,VE128 expires: - - Sun, 06 Oct 2024 18:08:00 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:44 GMT x-proxy-cache: - MISS status: @@ -152,7 +150,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/basics.json response: @@ -181,7 +179,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:00 GMT + - Mon, 13 Jan 2025 19:21:44 GMT ETag: - '"66e1651c-21a"' Last-Modified: @@ -197,15 +195,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 42e6d6e311f6b14b1a019d981ad930c97a072ef1 + - ca74b58a4fd9358c1c8230f0eedcd48930785a08 X-GitHub-Request-Id: - - E70C:25A7B1:3C0916A:426910E:6702CFA8 + - 3C8E:1A5A62:41D442A:4861A6A:678567C8 X-Served-By: - - cache-den8276-DEN + - cache-bos4648-BOS X-Timer: - - S1728237481.682571,VS0,VE218 + - S1736796105.776892,VS0,VE42 expires: - - Sun, 06 Oct 2024 18:08:00 GMT + - Mon, 13 Jan 2025 19:31:44 GMT x-origin-cache: - HIT x-proxy-cache: @@ -221,7 +219,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/datetime.json response: @@ -261,7 +259,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:00 GMT + - Mon, 13 Jan 2025 19:21:44 GMT ETag: - '"66e1651c-51b"' Last-Modified: @@ -277,15 +275,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 804c5f1b8a0a613c9dcec494eb59220869c5fd37 + - d07dde1ee4b35ea64fec8d5f39055dc608156fae X-GitHub-Request-Id: - - 3627:25A7B1:3C09187:426912A:6702CFA8 + - 89ED:F7148:415FBFB:47ECE7E:678567C8 X-Served-By: - - cache-den8224-DEN + - cache-bos4675-BOS X-Timer: - - S1728237481.933641,VS0,VE60 + - S1736796105.912577,VS0,VE30 expires: - - Sun, 06 Oct 2024 18:08:00 GMT + - Mon, 13 Jan 2025 19:31:44 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -299,7 +299,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/instrument.json response: @@ -330,7 +330,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:01 GMT + - Mon, 13 Jan 2025 19:21:45 GMT ETag: - '"66e1651c-2bd"' Last-Modified: @@ -346,15 +346,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - ac9f5d95095345523ae46839487e3a2704119174 + - 9c2c826ee84051a3fd1d4f45f856a0ffaacdd5ae X-GitHub-Request-Id: - - A039:D9115:3A59A67:40B993B:6702CFA8 + - C4A5:34CACD:42E8BDC:4976040:678567C8 X-Served-By: - - cache-den8236-DEN + - cache-bos4681-BOS X-Timer: - - S1728237481.026585,VS0,VE61 + - S1736796105.024444,VS0,VE44 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:31:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -370,7 +370,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/licensing.json response: @@ -396,7 +396,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:01 GMT + - Mon, 13 Jan 2025 19:21:45 GMT ETag: - '"66e1651c-133"' Last-Modified: @@ -412,15 +412,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 4c03e5f2b7dc4669a4b6f2c291a895b0703e4284 + - 617b7dd744563ead23a29ce21e5475ed20e75170 X-GitHub-Request-Id: - - 51D7:29763:39CED66:402E82C:6702CFA6 + - FA38:FE1B2:454E6DA:4BDBC3A:678567C5 X-Served-By: - - cache-den8278-DEN + - cache-bos4679-BOS X-Timer: - - S1728237481.118133,VS0,VE60 + - S1736796105.146578,VS0,VE24 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:31:45 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -434,7 +436,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/provider.json response: @@ -471,7 +473,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:01 GMT + - Mon, 13 Jan 2025 19:21:45 GMT ETag: - '"66e1651c-474"' Last-Modified: @@ -487,15 +489,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 32e32d95f4fe54a55509e81cad96f667a9f1dae0 + - 5089f17e51bd1867d7d08e9f5a1024834f1f5c48 X-GitHub-Request-Id: - - D0ED:88140:39A9D20:4009BFB:6702CFA8 + - 6479:1660B9:4193F02:4821316:678567C9 X-Served-By: - - cache-den8227-DEN + - cache-bos4670-BOS X-Timer: - - S1728237481.206662,VS0,VE57 + - S1736796105.262383,VS0,VE34 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:31:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -511,7 +513,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -589,7 +591,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '97' Cache-Control: - max-age=600 Connection: @@ -599,7 +601,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:01 GMT + - Mon, 13 Jan 2025 19:21:45 GMT ETag: - '"66df1c53-13bc"' Last-Modified: @@ -613,19 +615,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '2' X-Fastly-Request-ID: - - 7ec0d26981e6c889cc0855ed84f3ddfaf9dbee28 + - 14a664519ffc404b5ad6b9a865830fb786541b25 X-GitHub-Request-Id: - - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-den8266-DEN + - cache-bos4630-BOS X-Timer: - - S1728237482.721060,VS0,VE64 + - S1736796105.402653,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -641,7 +643,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json response: @@ -723,7 +725,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:01 GMT + - Mon, 13 Jan 2025 19:21:45 GMT ETag: - '"669e563b-1226"' Last-Modified: @@ -741,17 +743,19 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - d2c7ab10736ad762a77e12382f680876d7b84efa + - e87b22964f3fc9e706ad256dad110ed64847a5b3 X-GitHub-Request-Id: - - 360F:31444D:38827C0:3EE24EF:6702CFA8 + - 166C:264E2D:436BE91:49F958B:678567C9 X-Served-By: - - cache-den8260-DEN + - cache-bos4643-BOS X-Timer: - - S1728237482.825607,VS0,VE65 + - S1736796105.484393,VS0,VE51 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:31:45 GMT permissions-policy: - interest-cohort=() + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -765,7 +769,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/scientific/v1.0.0/schema.json response: @@ -851,7 +855,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '97' Cache-Control: - max-age=600 Connection: @@ -861,7 +865,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:01 GMT + - Mon, 13 Jan 2025 19:21:45 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -875,19 +879,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - '0' X-Fastly-Request-ID: - - cb2f4a98d4d8ad1692260ca02e6625e566ac5487 + - fc22d8829701c834f26be53c1724363870d0cf4d X-GitHub-Request-Id: - - 84E6:31444D:38827E0:3EE2514:6702CFA8 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-den8226-DEN + - cache-bos4621-BOS X-Timer: - - S1728237482.925762,VS0,VE63 + - S1736796106.598317,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -903,7 +907,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -961,7 +965,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '97' Cache-Control: - max-age=600 Connection: @@ -971,7 +975,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:45 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -985,19 +989,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '2' X-Fastly-Request-ID: - - 5f6354672f093bda4d88b52fdb09bad49c6fb2ea + - 2c8d2a517a18248aafac910ea71d9f47cf1b72d8 X-GitHub-Request-Id: - - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-den8255-DEN + - cache-bos4648-BOS X-Timer: - - S1728237483.020030,VS0,VE57 + - S1736796106.675025,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -1013,7 +1017,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/remote-data/v1.0.0/schema.json response: @@ -1088,7 +1092,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:45 GMT ETag: - '"6046b731-f97"' Last-Modified: @@ -1106,15 +1110,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 215cb2a6a617f4aa748db6b52459d2ce93f5cef8 + - 8362a183d0d02316143146868e9a788c2777301a X-GitHub-Request-Id: - - 167A:22A3FA:3672521:3CD1AE2:6702CFA8 + - A1DB:3FC0B3:41ECA2F:4879F7D:678567C9 X-Served-By: - - cache-den8226-DEN + - cache-bos4627-BOS X-Timer: - - S1728237483.113235,VS0,VE76 + - S1736796106.737925,VS0,VE59 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:45 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example116].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example116].yaml index a8a37d7ac..328bb05fe 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example116].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example116].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/catalog-spec/json-schema/catalog.json response: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:45 GMT ETag: - '"66e1651c-879"' Last-Modified: @@ -75,15 +75,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 11da5acb301dcd48a714214e0a95dcc7be58db5f + - 2e6e725c9f8dad26e24c64fc7bba5e50ce89423e X-GitHub-Request-Id: - - ACFD:D9115:3A59D60:40B9C7A:6702CFA8 + - 1BA6:34CACD:42E8CB9:497612F:678567C9 X-Served-By: - - cache-den8251-DEN + - cache-bos4629-BOS X-Timer: - - S1728237483.283009,VS0,VE58 + - S1736796106.880634,VS0,VE82 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:45 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example117].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example117].yaml index e3e64c670..8591d6884 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example117].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example117].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/collection-spec/json-schema/collection.json response: @@ -114,7 +114,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '438' + - '0' Cache-Control: - max-age=600 Connection: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:46 GMT ETag: - '"66e1651c-1c29"' Last-Modified: @@ -136,19 +136,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 84e660a3981e72b2b5d4e4ddea5216266153623d + - 99a841b6b8c49970389d4aa3fc1ee557ad091b56 X-GitHub-Request-Id: - - AA86:1F7C33:21C6328:252B5A1:6702CDF4 + - F6FF:3528DA:40AF79D:473C967:678567C9 X-Served-By: - - cache-den8248-DEN + - cache-bos4635-BOS X-Timer: - - S1728237483.381909,VS0,VE1 + - S1736796106.048485,VS0,VE67 expires: - - Sun, 06 Oct 2024 18:00:45 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-proxy-cache: - MISS status: @@ -162,7 +162,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json response: @@ -273,7 +273,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:46 GMT ETag: - '"66e1651c-1a43"' Last-Modified: @@ -289,15 +289,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - ec99a6a88fde5de68f63768f8393367278134e21 + - 02ba33698423aeb2cad8c733e481dfc313fea1e7 X-GitHub-Request-Id: - - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + - 2DE9:F7148:415FD67:47ED00A:678567C9 X-Served-By: - - cache-den8252-DEN + - cache-bos4626-BOS X-Timer: - - S1728237483.414747,VS0,VE60 + - S1736796106.198113,VS0,VE29 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -311,7 +313,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json response: @@ -340,7 +342,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:46 GMT ETag: - '"66e1651c-215"' Last-Modified: @@ -356,15 +358,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 94ac3323ae2ce69920dc4d1ca14d83859614598d + - 1880f6950992d40b7c5264975c87523ea97c07da X-GitHub-Request-Id: - - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + - 7695:324E65:41D8929:4865660:678567C9 X-Served-By: - - cache-den8259-DEN + - cache-bos4649-BOS X-Timer: - - S1728237484.504652,VS0,VE58 + - S1736796106.310817,VS0,VE34 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -378,7 +382,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json response: @@ -420,7 +424,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:46 GMT ETag: - '"66e1651c-5c0"' Last-Modified: @@ -436,17 +440,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - f8104aa8b5805bbfe23d0e794067120840bcb8d9 + - 9bf8b7e0ab7b4527054f102008de7aafd3756a9c X-GitHub-Request-Id: - - EA52:A919C:3B43014:41A30A2:6702CF9D + - D1D6:56590:415C151:47E8D04:678567C9 X-Served-By: - - cache-den8223-DEN + - cache-bos4673-BOS X-Timer: - - S1728237484.595100,VS0,VE59 + - S1736796106.424115,VS0,VE23 expires: - - Sun, 06 Oct 2024 18:08:03 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:46 GMT x-proxy-cache: - MISS status: @@ -460,7 +462,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json response: @@ -491,7 +493,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:46 GMT ETag: - '"66e1651c-2b8"' Last-Modified: @@ -507,15 +509,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 9b89f8137d7555c43f773a2dca2e1859b0818a8a + - 671fb58e69b8bfae2b46363815f922de2bb730fb X-GitHub-Request-Id: - - 9461:76956:3BAC588:420C605:6702CFAA + - 454F:C7022:4158429:47E57E3:678567C9 X-Served-By: - - cache-den8254-DEN + - cache-bos4658-BOS X-Timer: - - S1728237484.682445,VS0,VE58 + - S1736796107.541080,VS0,VE42 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -529,7 +533,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json response: @@ -555,7 +559,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:46 GMT ETag: - '"66e1651c-12e"' Last-Modified: @@ -571,15 +575,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - c564cd7f41c50ae0c164ed7fa26693b58b0208f2 + - 0b9301844a717a7149a2360c0bb5a5c0b02f0760 X-GitHub-Request-Id: - - 3627:25A7B1:3C09466:4269466:6702CFA8 + - 4D3A:3E72B0:42A28B4:492EAA8:678567C9 X-Served-By: - - cache-den8256-DEN + - cache-bos4678-BOS X-Timer: - - S1728237484.771233,VS0,VE56 + - S1736796107.660822,VS0,VE18 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: @@ -595,7 +599,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json response: @@ -632,7 +636,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:46 GMT ETag: - '"66e1651c-46f"' Last-Modified: @@ -648,15 +652,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - aee2e83dad705af4f83b4d91a7cfd5e07995c0c5 + - 7cec5baa8cd724deefd19945d4b31a4d9b077e14 X-GitHub-Request-Id: - - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + - CAD9:2464FF:4365F92:49F347B:678567CA X-Served-By: - - cache-den8257-DEN + - cache-bos4628-BOS X-Timer: - - S1728237484.859183,VS0,VE70 + - S1736796107.744409,VS0,VE46 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: @@ -672,7 +676,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -750,7 +754,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '99' Cache-Control: - max-age=600 Connection: @@ -760,7 +764,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:46 GMT ETag: - '"66df1c53-13bc"' Last-Modified: @@ -778,15 +782,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f0ced69fc3cac2b6b9c4155392bf587f6a05b9c2 + - 33cf745a208f570a0f77d2b7322037a2e1a7b1c9 X-GitHub-Request-Id: - - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-den8268-DEN + - cache-bos4632-BOS X-Timer: - - S1728237484.953195,VS0,VE1 + - S1736796107.857129,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -802,7 +806,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json response: @@ -874,7 +878,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '1' Cache-Control: - max-age=600 Connection: @@ -884,7 +888,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:03 GMT + - Mon, 13 Jan 2025 19:21:46 GMT ETag: - '"669e563b-1226"' Last-Modified: @@ -902,17 +906,19 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 18cffdce24d118f1f4d5da00731684fef4bfaded + - 9e97fe8bbfc4b0d8037cf07ac67d6e17fd86a651 X-GitHub-Request-Id: - - 360F:31444D:38827C0:3EE24EF:6702CFA8 + - 166C:264E2D:436BE91:49F958B:678567C9 X-Served-By: - - cache-den8239-DEN + - cache-bos4671-BOS X-Timer: - - S1728237484.979936,VS0,VE1 + - S1736796107.930873,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:31:45 GMT permissions-policy: - interest-cohort=() + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -926,7 +932,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -984,7 +990,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '98' Cache-Control: - max-age=600 Connection: @@ -994,7 +1000,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:46 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -1010,17 +1016,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 9382c22c1978add759a27fcd637022881c872e6a + - 15e3874fb306e3c919f3c1fea52c685bbe211f88 X-GitHub-Request-Id: - - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-den8263-DEN + - cache-bos4678-BOS X-Timer: - - S1728237484.006500,VS0,VE1 + - S1736796107.992201,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example118].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example118].yaml index faeaf97de..89c57a56a 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example118].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example118].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/collection-spec/json-schema/collection.json response: @@ -114,7 +114,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '439' + - '1' Cache-Control: - max-age=600 Connection: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"66e1651c-1c29"' Last-Modified: @@ -140,15 +140,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 43f5ba973873b5344d775f493f7bc50057b0a5d5 + - d42c77cc6ac5e013cc83821e2f13b39f1d3499df X-GitHub-Request-Id: - - AA86:1F7C33:21C6328:252B5A1:6702CDF4 + - F6FF:3528DA:40AF79D:473C967:678567C9 X-Served-By: - - cache-den8273-DEN + - cache-bos4650-BOS X-Timer: - - S1728237484.039220,VS0,VE2 + - S1736796107.072381,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:00:45 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-proxy-cache: - MISS status: @@ -162,7 +162,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -240,7 +240,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '99' Cache-Control: - max-age=600 Connection: @@ -250,7 +250,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"66df1c53-13bc"' Last-Modified: @@ -266,17 +266,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 2aac5b5ea338f1aac689945e4d585cd28b3f3724 + - 7883234f5ae5b1694aef9c9c85b9783aa5cecc62 X-GitHub-Request-Id: - - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-den8236-DEN + - cache-bos4671-BOS X-Timer: - - S1728237484.069580,VS0,VE1 + - S1736796107.150592,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -292,7 +292,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -350,7 +350,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '99' Cache-Control: - max-age=600 Connection: @@ -360,7 +360,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -376,17 +376,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Fastly-Request-ID: - - 817f303204299c0d9b637134866f32c0f63f067e + - 53252aef1c39a21cab79b7601f2916d1217e68fe X-GitHub-Request-Id: - - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-den8232-DEN + - cache-bos4650-BOS X-Timer: - - S1728237484.095948,VS0,VE2 + - S1736796107.219065,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example119].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example119].yaml index 2bc1eb133..f1a4647f3 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example119].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example119].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json response: @@ -118,7 +118,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"66e1651c-1a43"' Last-Modified: @@ -134,15 +134,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 98e2558f0273faa64ec2116fe85f65cc3e14879c + - 24750a6ce048803d9cf9c0822c86b8aa9d8cf8e1 X-GitHub-Request-Id: - - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + - 2DE9:F7148:415FD67:47ED00A:678567C9 X-Served-By: - - cache-den8269-DEN + - cache-bos4686-BOS X-Timer: - - S1728237484.126655,VS0,VE2 + - S1736796107.310443,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -156,7 +158,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json response: @@ -185,7 +187,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"66e1651c-215"' Last-Modified: @@ -201,15 +203,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 064b601b505b3bff5ea8600412ef4fdd41637265 + - 94eaf6ee04b37ee48ad302e5f1f1b34ba9c3ffc0 X-GitHub-Request-Id: - - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + - 7695:324E65:41D8929:4865660:678567C9 X-Served-By: - - cache-den8276-DEN + - cache-bos4660-BOS X-Timer: - - S1728237484.155431,VS0,VE1 + - S1736796107.390358,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -223,7 +227,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json response: @@ -265,7 +269,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"66e1651c-5c0"' Last-Modified: @@ -281,17 +285,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 7805da5e03fdf4cd07171e0a7c7fb1c15d65361d + - cc0289726f3302bfc3342b7f7bf11e4def9dbee5 X-GitHub-Request-Id: - - EA52:A919C:3B43014:41A30A2:6702CF9D + - D1D6:56590:415C151:47E8D04:678567C9 X-Served-By: - - cache-den8231-DEN + - cache-bos4638-BOS X-Timer: - - S1728237484.177491,VS0,VE9 + - S1736796107.472376,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:46 GMT x-proxy-cache: - MISS status: @@ -305,7 +307,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json response: @@ -326,7 +328,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '1' Cache-Control: - max-age=600 Connection: @@ -336,7 +338,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"66e1651c-2b8"' Last-Modified: @@ -352,15 +354,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 974c7693e25314df813d37f153014e67fbbafafb + - c2613092c43a65fd0a59e0f51eeeab8f7bf81267 X-GitHub-Request-Id: - - 9461:76956:3BAC588:420C605:6702CFAA + - 454F:C7022:4158429:47E57E3:678567C9 X-Served-By: - - cache-den8271-DEN + - cache-bos4635-BOS X-Timer: - - S1728237484.210179,VS0,VE2 + - S1736796108.568894,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -374,7 +378,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json response: @@ -390,7 +394,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '1' Cache-Control: - max-age=600 Connection: @@ -400,7 +404,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"66e1651c-12e"' Last-Modified: @@ -416,15 +420,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - bca5993974ec5edd4793d8f20b8c8c1787ae8d2b + - aebd984e441c8eaa6f022cb2f23f5a9e057cbb46 X-GitHub-Request-Id: - - 3627:25A7B1:3C09466:4269466:6702CFA8 + - 4D3A:3E72B0:42A28B4:492EAA8:678567C9 X-Served-By: - - cache-den8270-DEN + - cache-bos4628-BOS X-Timer: - - S1728237484.237507,VS0,VE2 + - S1736796108.647965,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: @@ -440,7 +444,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json response: @@ -467,7 +471,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '1' Cache-Control: - max-age=600 Connection: @@ -477,7 +481,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"66e1651c-46f"' Last-Modified: @@ -493,15 +497,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 79ccb51e343831990b886c919a85f10ad122b74f + - 47d920cf340cfa20289fc1f07c97a86a0de15fdc X-GitHub-Request-Id: - - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + - CAD9:2464FF:4365F92:49F347B:678567CA X-Served-By: - - cache-den8281-DEN + - cache-bos4620-BOS X-Timer: - - S1728237484.264226,VS0,VE2 + - S1736796108.736533,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: @@ -517,7 +521,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -595,7 +599,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '100' Cache-Control: - max-age=600 Connection: @@ -605,7 +609,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"66df1c53-13bc"' Last-Modified: @@ -623,15 +627,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f37af038c515be8c52dd0e1746cb0b68a3451e74 + - 1496734cc2cecc5d042eeb377514f4f2c9d9814d X-GitHub-Request-Id: - - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-den8271-DEN + - cache-bos4654-BOS X-Timer: - - S1728237484.318908,VS0,VE1 + - S1736796108.826407,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -647,7 +651,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -705,7 +709,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '99' Cache-Control: - max-age=600 Connection: @@ -715,7 +719,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -731,17 +735,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - 2c92fda7af6edf8eb54b3ac83bec13ee056580e4 + - a2b7fcfc749246d58965f999d0b41515dfb9ce75 X-GitHub-Request-Id: - - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-den8266-DEN + - cache-bos4668-BOS X-Timer: - - S1728237484.347369,VS0,VE1 + - S1736796108.890467,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example11].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example11].yaml index de9bf46da..c7239c146 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example11].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example11].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:50 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:50 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 34cb92b9e4f88c0c45152da7ce2eb2b52614d473 + - 1b5de4ab96f30bd5f69e525bbb9d7515c28c96ea X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8270-DEN + - cache-bos4650-BOS X-Timer: - - S1728237441.318551,VS0,VE1 + - S1736796050.038771,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/label/schema.json response: @@ -223,11 +223,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:50 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:50 GMT Source-Age: - '0' Strict-Transport-Security: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 030dd92af2fd14d4b56f0ed7ec19526713a5ff73 + - 5722f83bf92c4b2c24e92f1dbe99530d5a96aaea X-Frame-Options: - deny X-GitHub-Request-Id: - - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 + - 6349:3722A2:2643775:2A540CF:67856790 X-Served-By: - - cache-den8257-DEN + - cache-bos4686-BOS X-Timer: - - S1728237441.356643,VS0,VE141 + - S1736796050.118627,VS0,VE126 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example120].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example120].yaml index ed4459fda..18544ba2b 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example120].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example120].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json response: @@ -108,7 +108,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -118,7 +118,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:47 GMT ETag: - '"66e1651c-1a43"' Last-Modified: @@ -134,15 +134,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4eb768461a62b4352b38852cdcca3b379003a3b5 + - 4cd399cf814882e994f9a9a920f269be6870aba8 X-GitHub-Request-Id: - - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + - 2DE9:F7148:415FD67:47ED00A:678567C9 X-Served-By: - - cache-den8265-DEN + - cache-bos4673-BOS X-Timer: - - S1728237484.378594,VS0,VE1 + - S1736796108.974307,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -156,7 +158,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json response: @@ -175,7 +177,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -185,7 +187,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:48 GMT ETag: - '"66e1651c-215"' Last-Modified: @@ -201,15 +203,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2de5c008a628ee3c5540a7fea472436f848704ba + - 1c01e7e5b794b936930211fe2008a48923a0e876 X-GitHub-Request-Id: - - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + - 7695:324E65:41D8929:4865660:678567C9 X-Served-By: - - cache-den8253-DEN + - cache-bos4672-BOS X-Timer: - - S1728237484.405717,VS0,VE1 + - S1736796108.048526,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -223,7 +227,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json response: @@ -255,7 +259,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -265,7 +269,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:48 GMT ETag: - '"66e1651c-5c0"' Last-Modified: @@ -281,17 +285,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 06b579a3e616b0896c3b4415ccb823938abbc928 + - 4e0675f19559ae905ddcae5d966e8dc26c8c62c7 X-GitHub-Request-Id: - - EA52:A919C:3B43014:41A30A2:6702CF9D + - D1D6:56590:415C151:47E8D04:678567C9 X-Served-By: - - cache-den8266-DEN + - cache-bos4666-BOS X-Timer: - - S1728237484.429475,VS0,VE1 + - S1736796108.130728,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:46 GMT x-proxy-cache: - MISS status: @@ -305,7 +307,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json response: @@ -326,7 +328,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -336,7 +338,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:48 GMT ETag: - '"66e1651c-2b8"' Last-Modified: @@ -352,15 +354,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 56749d1a9cb6169cc32de1e9b76ccfd626e37558 + - 55bf978873ff29c8a57c4cd269bccfeb522ad01b X-GitHub-Request-Id: - - 9461:76956:3BAC588:420C605:6702CFAA + - 454F:C7022:4158429:47E57E3:678567C9 X-Served-By: - - cache-den8268-DEN + - cache-bos4657-BOS X-Timer: - - S1728237484.451226,VS0,VE1 + - S1736796108.198359,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -374,7 +378,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json response: @@ -390,7 +394,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -400,7 +404,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:48 GMT ETag: - '"66e1651c-12e"' Last-Modified: @@ -416,15 +420,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d3edc539e5c8dc537d93dc2750232ebff6976059 + - c28c0ca5d6c4067829cdaa42a1f41d6c7fed26c1 X-GitHub-Request-Id: - - 3627:25A7B1:3C09466:4269466:6702CFA8 + - 4D3A:3E72B0:42A28B4:492EAA8:678567C9 X-Served-By: - - cache-den8259-DEN + - cache-bos4645-BOS X-Timer: - - S1728237484.474302,VS0,VE2 + - S1736796108.266396,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: @@ -440,7 +444,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json response: @@ -467,7 +471,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -477,7 +481,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:48 GMT ETag: - '"66e1651c-46f"' Last-Modified: @@ -493,15 +497,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 24d4d59f9347c93b83cb811f663c74d8d1d33aa9 + - b162ad9fec8377a1d6677337ede1318294e356e3 X-GitHub-Request-Id: - - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + - CAD9:2464FF:4365F92:49F347B:678567CA X-Served-By: - - cache-den8222-DEN + - cache-bos4629-BOS X-Timer: - - S1728237484.498914,VS0,VE1 + - S1736796108.342329,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example121].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example121].yaml index 485e90016..ac540a726 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example121].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example121].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json response: @@ -108,7 +108,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -118,7 +118,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:48 GMT ETag: - '"66e1651c-1a43"' Last-Modified: @@ -134,15 +134,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 034aca544abf8849fa1de378259e70d966001cf1 + - 8b2dc5987c9918ed122bba63bfb15f2751360912 X-GitHub-Request-Id: - - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + - 2DE9:F7148:415FD67:47ED00A:678567C9 X-Served-By: - - cache-den8255-DEN + - cache-bos4655-BOS X-Timer: - - S1728237485.562010,VS0,VE2 + - S1736796108.452896,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -156,7 +158,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json response: @@ -175,7 +177,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -185,7 +187,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:48 GMT ETag: - '"66e1651c-215"' Last-Modified: @@ -201,15 +203,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6f36bf5375691f9719a4b191a9a42ffd7b0b0125 + - 9fcd9c7de7236dea1b250bd485165035b700bb26 X-GitHub-Request-Id: - - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + - 7695:324E65:41D8929:4865660:678567C9 X-Served-By: - - cache-den8248-DEN + - cache-bos4636-BOS X-Timer: - - S1728237485.591586,VS0,VE1 + - S1736796109.535222,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -223,7 +227,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json response: @@ -255,7 +259,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -265,7 +269,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:48 GMT ETag: - '"66e1651c-5c0"' Last-Modified: @@ -281,17 +285,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 36337e03bc7a2f69509796abf2480a21e0dbd674 + - d9a187ada762a5937161cc35e8f8e5511d399978 X-GitHub-Request-Id: - - EA52:A919C:3B43014:41A30A2:6702CF9D + - D1D6:56590:415C151:47E8D04:678567C9 X-Served-By: - - cache-den8258-DEN + - cache-bos4675-BOS X-Timer: - - S1728237485.613624,VS0,VE2 + - S1736796109.635532,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:08:03 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:46 GMT x-proxy-cache: - MISS status: @@ -305,7 +307,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json response: @@ -326,7 +328,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -336,7 +338,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:48 GMT ETag: - '"66e1651c-2b8"' Last-Modified: @@ -352,15 +354,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 7455771d07f67f461c3eda8faeaf17c9eb742edb + - a24462e011cea2d1ce090291d40662eba1a04965 X-GitHub-Request-Id: - - 9461:76956:3BAC588:420C605:6702CFAA + - 454F:C7022:4158429:47E57E3:678567C9 X-Served-By: - - cache-den8264-DEN + - cache-bos4647-BOS X-Timer: - - S1728237485.636421,VS0,VE2 + - S1736796109.722707,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -374,7 +378,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json response: @@ -390,7 +394,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -400,7 +404,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:48 GMT ETag: - '"66e1651c-12e"' Last-Modified: @@ -416,15 +420,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 70c6454c0187b04e8f7c42cc1851c7876598284d + - 689d465fe4f7e21c97d16fde8e6a256535a2d841 X-GitHub-Request-Id: - - 3627:25A7B1:3C09466:4269466:6702CFA8 + - 4D3A:3E72B0:42A28B4:492EAA8:678567C9 X-Served-By: - - cache-den8235-DEN + - cache-bos4652-BOS X-Timer: - - S1728237485.661097,VS0,VE2 + - S1736796109.808269,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: @@ -440,7 +444,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json response: @@ -467,7 +471,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -477,7 +481,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:48 GMT ETag: - '"66e1651c-46f"' Last-Modified: @@ -493,15 +497,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2f2e5c4f5c2fd224882a34853ecba8b975c39318 + - 9fbf92f6d3a910f27a87879981d7696110d10101 X-GitHub-Request-Id: - - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + - CAD9:2464FF:4365F92:49F347B:678567CA X-Served-By: - - cache-den8260-DEN + - cache-bos4649-BOS X-Timer: - - S1728237485.684831,VS0,VE2 + - S1736796109.884308,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: @@ -517,7 +521,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -595,7 +599,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '101' Cache-Control: - max-age=600 Connection: @@ -605,7 +609,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:49 GMT ETag: - '"66df1c53-13bc"' Last-Modified: @@ -623,15 +627,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b1b3337632425de986ca26ce0427f50b1aae11bf + - b755b79d8065349bc20a23803937666f49a056f5 X-GitHub-Request-Id: - - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-den8277-DEN + - cache-bos4655-BOS X-Timer: - - S1728237485.791201,VS0,VE2 + - S1736796109.094939,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -647,7 +651,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/sat/v1.0.0/schema.json response: @@ -707,7 +711,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '89' Cache-Control: - max-age=600 Connection: @@ -717,11 +721,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:49 GMT ETag: - - '"60414dd7-e82"' + - '"67627e9d-e82"' Last-Modified: - - Thu, 04 Mar 2021 21:15:03 GMT + - Wed, 18 Dec 2024 07:49:49 GMT Server: - GitHub.com Strict-Transport-Security: @@ -731,19 +735,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - '0' X-Fastly-Request-ID: - - d92ace63c4cc3c5e178c31deeec17717b72a720d + - c361747fb883d7293d2c8ac658a37c795a71b6ed X-GitHub-Request-Id: - - 63B5:30438:3A4FFCA:40AFDD1:6702CFAB + - 5E64:22F2A5:46EF792:4FC7E42:67856773 X-Served-By: - - cache-den8262-DEN + - cache-bos4669-BOS X-Timer: - - S1728237485.817015,VS0,VE74 + - S1736796109.166574,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:04 GMT + - Mon, 13 Jan 2025 19:30:19 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -759,7 +763,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json response: @@ -831,7 +835,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '4' Cache-Control: - max-age=600 Connection: @@ -841,7 +845,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:04 GMT + - Mon, 13 Jan 2025 19:21:49 GMT ETag: - '"669e563b-1226"' Last-Modified: @@ -859,17 +863,19 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 78cb94cd2225e8f68e5cf1ecd5a483924d86cee3 + - ac8724551705125147235448724f4fe54b7f308f X-GitHub-Request-Id: - - 360F:31444D:38827C0:3EE24EF:6702CFA8 + - 166C:264E2D:436BE91:49F958B:678567C9 X-Served-By: - - cache-den8272-DEN + - cache-bos4656-BOS X-Timer: - - S1728237485.921712,VS0,VE1 + - S1736796109.233422,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:31:45 GMT permissions-policy: - interest-cohort=() + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -883,7 +889,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/mgrs/v1.0.0/schema.json response: @@ -933,7 +939,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '96' Cache-Control: - max-age=600 Connection: @@ -943,7 +949,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:49 GMT ETag: - '"60c20ce1-b49"' Last-Modified: @@ -957,19 +963,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 46e777e2261eecb58b2232393a7040980d17ea23 + - cf9f88196a203de550b0d8e4fd7ac89ff0474ba7 X-GitHub-Request-Id: - - B6E2:88140:39AA20A:400A158:6702CFAC + - 943D:2C0FB4:4614EE8:4EED9E1:6785676D X-Served-By: - - cache-den8278-DEN + - cache-bos4653-BOS X-Timer: - - S1728237485.951765,VS0,VE67 + - S1736796109.307999,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:04 GMT + - Mon, 13 Jan 2025 19:30:13 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -985,7 +991,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/grid/v1.0.0/schema.json response: @@ -1029,7 +1035,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:49 GMT ETag: - '"638a24f0-6d5"' Last-Modified: @@ -1047,15 +1053,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 36719af04f9395004e92012616b4880668c96cb8 + - b83dec8bae8e98d7d066cc8591ece84b3fcef68f X-GitHub-Request-Id: - - 4087:88140:39AA22F:400A182:6702CFAC + - C211:19EC47:4201A62:488EB6A:678567CC X-Served-By: - - cache-den8254-DEN + - cache-bos4652-BOS X-Timer: - - S1728237485.052122,VS0,VE61 + - S1736796109.384470,VS0,VE41 expires: - - Sun, 06 Oct 2024 18:08:05 GMT + - Mon, 13 Jan 2025 19:31:49 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -1071,7 +1077,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -1129,7 +1135,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '101' Cache-Control: - max-age=600 Connection: @@ -1139,7 +1145,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:49 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -1157,15 +1163,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 729ac73e53f2963d754cf47295c1702c7ca4aa7e + - dd6acc93a2b8ee131c2429382473387414629012 X-GitHub-Request-Id: - - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-den8268-DEN + - cache-bos4663-BOS X-Timer: - - S1728237485.146457,VS0,VE1 + - S1736796110.508265,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example122].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example122].yaml index 5c23e26d9..f166882c0 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example122].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example122].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json response: @@ -108,7 +108,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '3' Cache-Control: - max-age=600 Connection: @@ -118,7 +118,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:49 GMT ETag: - '"66e1651c-1a43"' Last-Modified: @@ -134,15 +134,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 323f5c51cf57b156410f9a2f2d2390198ad9df1d + - 4dbe75c563ea8e90e58004aa99d29795200b51f2 X-GitHub-Request-Id: - - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + - 2DE9:F7148:415FD67:47ED00A:678567C9 X-Served-By: - - cache-den8278-DEN + - cache-bos4657-BOS X-Timer: - - S1728237485.193686,VS0,VE2 + - S1736796110.598372,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -156,7 +158,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json response: @@ -175,7 +177,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '3' Cache-Control: - max-age=600 Connection: @@ -185,7 +187,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:49 GMT ETag: - '"66e1651c-215"' Last-Modified: @@ -201,15 +203,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3e49cf26151b48f2d3726c15ce2147a335863674 + - 29cc4a33fc7339436e20b7ad82878ddaf8f22365 X-GitHub-Request-Id: - - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + - 7695:324E65:41D8929:4865660:678567C9 X-Served-By: - - cache-den8225-DEN + - cache-bos4674-BOS X-Timer: - - S1728237485.224234,VS0,VE1 + - S1736796110.696650,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -223,7 +227,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json response: @@ -255,7 +259,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '3' Cache-Control: - max-age=600 Connection: @@ -265,7 +269,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:49 GMT ETag: - '"66e1651c-5c0"' Last-Modified: @@ -281,17 +285,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c6b5c2d5a2b999d38ce19ff600b09599faa20180 + - f62c06fdd1bdddecf4fe069aa5924beac275b35c X-GitHub-Request-Id: - - EA52:A919C:3B43014:41A30A2:6702CF9D + - D1D6:56590:415C151:47E8D04:678567C9 X-Served-By: - - cache-den8270-DEN + - cache-bos4684-BOS X-Timer: - - S1728237485.302330,VS0,VE1 + - S1736796110.786540,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:46 GMT x-proxy-cache: - MISS status: @@ -305,7 +307,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json response: @@ -326,7 +328,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '3' Cache-Control: - max-age=600 Connection: @@ -336,7 +338,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:49 GMT ETag: - '"66e1651c-2b8"' Last-Modified: @@ -352,15 +354,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c3c210cb9fea46a63f8234601317c7b6e9711748 + - a8c98a28d81540d4f0a3a935192ec1e612d214e5 X-GitHub-Request-Id: - - 9461:76956:3BAC588:420C605:6702CFAA + - 454F:C7022:4158429:47E57E3:678567C9 X-Served-By: - - cache-den8244-DEN + - cache-bos4670-BOS X-Timer: - - S1728237485.334470,VS0,VE1 + - S1736796110.868238,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -374,7 +378,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json response: @@ -390,7 +394,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '3' Cache-Control: - max-age=600 Connection: @@ -400,7 +404,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:49 GMT ETag: - '"66e1651c-12e"' Last-Modified: @@ -416,15 +420,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 646030991a3c009e1a62eccca27eefd09e4e7cce + - aa59c5e59a841a703a067fc1bdaafbc901c3e3ef X-GitHub-Request-Id: - - 3627:25A7B1:3C09466:4269466:6702CFA8 + - 4D3A:3E72B0:42A28B4:492EAA8:678567C9 X-Served-By: - - cache-den8266-DEN + - cache-bos4668-BOS X-Timer: - - S1728237485.365382,VS0,VE1 + - S1736796110.946420,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: @@ -440,7 +444,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json response: @@ -467,7 +471,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '3' Cache-Control: - max-age=600 Connection: @@ -477,7 +481,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"66e1651c-46f"' Last-Modified: @@ -493,15 +497,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 50a8ab1b7edb7f3124f2dfe986c027303d088ee9 + - 2159c1f5203d169b8862ca6d03433954ea1dca7a X-GitHub-Request-Id: - - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + - CAD9:2464FF:4365F92:49F347B:678567CA X-Served-By: - - cache-den8264-DEN + - cache-bos4669-BOS X-Timer: - - S1728237485.400887,VS0,VE1 + - S1736796110.030520,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: @@ -517,7 +521,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -595,7 +599,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '102' Cache-Control: - max-age=600 Connection: @@ -605,7 +609,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"66df1c53-13bc"' Last-Modified: @@ -623,15 +627,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b4e1c0278ea41e8307e57b8529f15957297ee655 + - dae16f159e9e0eaf1142ed6aa158c153f4637eef X-GitHub-Request-Id: - - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-den8224-DEN + - cache-bos4682-BOS X-Timer: - - S1728237485.470206,VS0,VE1 + - S1736796110.126733,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -647,7 +651,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json response: @@ -719,7 +723,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '5' Cache-Control: - max-age=600 Connection: @@ -729,7 +733,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"669e563b-1226"' Last-Modified: @@ -747,17 +751,19 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ece73987bc4bdd25e7d28ed26e14f99db552b63c + - cdc74280bc53911d7a87cc9fa769d9e4bd4cdaaa X-GitHub-Request-Id: - - 360F:31444D:38827C0:3EE24EF:6702CFA8 + - 166C:264E2D:436BE91:49F958B:678567C9 X-Served-By: - - cache-den8221-DEN + - cache-bos4638-BOS X-Timer: - - S1728237485.497387,VS0,VE2 + - S1736796110.190905,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:31:45 GMT permissions-policy: - interest-cohort=() + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -771,7 +777,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/scientific/v1.0.0/schema.json response: @@ -857,7 +863,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '101' Cache-Control: - max-age=600 Connection: @@ -867,7 +873,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -885,15 +891,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2a836567fdd5a4144ea77796fa920e094fbb393c + - 566aafb00cc6336b863272d57a472a2e49ab0ffe X-GitHub-Request-Id: - - 84E6:31444D:38827E0:3EE2514:6702CFA8 + - 6498:2542B:42E5DD7:4BBDD88:67856768 X-Served-By: - - cache-den8239-DEN + - cache-bos4682-BOS X-Timer: - - S1728237486.523763,VS0,VE1 + - S1736796110.256921,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -909,7 +915,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -967,7 +973,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '102' Cache-Control: - max-age=600 Connection: @@ -977,7 +983,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -995,15 +1001,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0cf06b91f8b17df2d0562a9c18fb3ed0081de1d1 + - b5cf5316567ca743a78035506c0950364dc019cf X-GitHub-Request-Id: - - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 + - CCE8:52C42:4379209:4C5153E:67856765 X-Served-By: - - cache-den8246-DEN + - cache-bos4622-BOS X-Timer: - - S1728237486.552559,VS0,VE1 + - S1736796110.318312,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -1019,7 +1025,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/remote-data/v1.0.0/schema.json response: @@ -1084,7 +1090,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '5' Cache-Control: - max-age=600 Connection: @@ -1094,7 +1100,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"6046b731-f97"' Last-Modified: @@ -1112,15 +1118,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 37b6aa7f9f632e45217f10679eb27fd86c53b909 + - 17a6fe6599021a8b1e4165420bce2c23a490ebe1 X-GitHub-Request-Id: - - 167A:22A3FA:3672521:3CD1AE2:6702CFA8 + - A1DB:3FC0B3:41ECA2F:4879F7D:678567C9 X-Served-By: - - cache-den8260-DEN + - cache-bos4641-BOS X-Timer: - - S1728237486.579650,VS0,VE2 + - S1736796110.392595,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:45 GMT permissions-policy: - interest-cohort=() x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example123].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example123].yaml index a4bb132ff..0016db142 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example123].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example123].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/collection-spec/json-schema/collection.json response: @@ -114,7 +114,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '440' + - '4' Cache-Control: - max-age=600 Connection: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"66e1651c-1c29"' Last-Modified: @@ -140,15 +140,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 866d24cfd07b0d11ed4d45b935af6419c911e4b2 + - 24370df6890403b7ba9a9116cc3d0bfa25d3c11b X-GitHub-Request-Id: - - AA86:1F7C33:21C6328:252B5A1:6702CDF4 + - F6FF:3528DA:40AF79D:473C967:678567C9 X-Served-By: - - cache-den8271-DEN + - cache-bos4662-BOS X-Timer: - - S1728237486.619366,VS0,VE2 + - S1736796110.470718,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:00:45 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example124].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example124].yaml index bfb8df6a9..9d69540ba 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example124].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example124].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json response: @@ -108,7 +108,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '4' Cache-Control: - max-age=600 Connection: @@ -118,7 +118,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"66e1651c-1a43"' Last-Modified: @@ -134,15 +134,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1d73dbb538f406c7cea59de67ec84d258affe9c3 + - 926b1a2f759dee1f630f9627554e120c3df0cb3f X-GitHub-Request-Id: - - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + - 2DE9:F7148:415FD67:47ED00A:678567C9 X-Served-By: - - cache-den8275-DEN + - cache-bos4644-BOS X-Timer: - - S1728237486.652468,VS0,VE1 + - S1736796111.542389,VS0,VE3 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -156,7 +158,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json response: @@ -175,7 +177,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '4' Cache-Control: - max-age=600 Connection: @@ -185,7 +187,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"66e1651c-215"' Last-Modified: @@ -201,15 +203,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ed144fdebacf72a99d8fe1e895a38e3b3f90f5eb + - ae729fe9af5e5e242b0823e72a4eff1a588316b1 X-GitHub-Request-Id: - - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + - 7695:324E65:41D8929:4865660:678567C9 X-Served-By: - - cache-den8244-DEN + - cache-bos4640-BOS X-Timer: - - S1728237486.682008,VS0,VE1 + - S1736796111.634277,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -223,7 +227,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json response: @@ -255,7 +259,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '4' Cache-Control: - max-age=600 Connection: @@ -265,7 +269,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"66e1651c-5c0"' Last-Modified: @@ -281,17 +285,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e488b66747f2734b4d3d70acf1d6341b662c9e58 + - a0975d15bc545f5afbf9feee01108eb507313eb6 X-GitHub-Request-Id: - - EA52:A919C:3B43014:41A30A2:6702CF9D + - D1D6:56590:415C151:47E8D04:678567C9 X-Served-By: - - cache-den8230-DEN + - cache-bos4622-BOS X-Timer: - - S1728237486.710270,VS0,VE3 + - S1736796111.714213,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:46 GMT x-proxy-cache: - MISS status: @@ -305,7 +307,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json response: @@ -326,7 +328,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '4' Cache-Control: - max-age=600 Connection: @@ -336,7 +338,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"66e1651c-2b8"' Last-Modified: @@ -352,15 +354,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6cb3bea4883f1fe51d9915176b94b624789563ef + - df22f9e299700b5659b70a94f35c7f729c746aa3 X-GitHub-Request-Id: - - 9461:76956:3BAC588:420C605:6702CFAA + - 454F:C7022:4158429:47E57E3:678567C9 X-Served-By: - - cache-den8249-DEN + - cache-bos4639-BOS X-Timer: - - S1728237486.745865,VS0,VE1 + - S1736796111.803266,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -374,7 +378,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json response: @@ -390,7 +394,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '4' Cache-Control: - max-age=600 Connection: @@ -400,7 +404,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"66e1651c-12e"' Last-Modified: @@ -416,15 +420,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c0100f30de45cc072925f9696b05677193863f4c + - 1a0f851dfe9b4bd8af93607291ea20de9cdb5461 X-GitHub-Request-Id: - - 3627:25A7B1:3C09466:4269466:6702CFA8 + - 4D3A:3E72B0:42A28B4:492EAA8:678567C9 X-Served-By: - - cache-den8252-DEN + - cache-bos4627-BOS X-Timer: - - S1728237486.773936,VS0,VE1 + - S1736796111.886051,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: @@ -440,7 +444,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json response: @@ -467,7 +471,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '4' Cache-Control: - max-age=600 Connection: @@ -477,7 +481,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:50 GMT ETag: - '"66e1651c-46f"' Last-Modified: @@ -493,15 +497,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c369fcc88b7933c4e7fd1c0e55fb01e2b0576448 + - 4a5f151fa87ce22c74880688aedc4aee6f03aba8 X-GitHub-Request-Id: - - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + - CAD9:2464FF:4365F92:49F347B:678567CA X-Served-By: - - cache-den8263-DEN + - cache-bos4678-BOS X-Timer: - - S1728237486.803942,VS0,VE1 + - S1736796111.962549,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:08:03 GMT + - Mon, 13 Jan 2025 19:31:46 GMT x-origin-cache: - HIT x-proxy-cache: @@ -517,7 +521,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -595,7 +599,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '103' Cache-Control: - max-age=600 Connection: @@ -605,7 +609,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:51 GMT ETag: - '"66df1c53-13bc"' Last-Modified: @@ -623,15 +627,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 999644492285e713444bdbd2bfd2d4261b2e6489 + - bb7c4f454ab72560ad967d105c02bf7c6589a24b X-GitHub-Request-Id: - - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 + - 47BA:13E969:4300816:4BD8815:67856768 X-Served-By: - - cache-den8259-DEN + - cache-bos4656-BOS X-Timer: - - S1728237486.845457,VS0,VE1 + - S1736796111.028643,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:30:08 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -647,7 +651,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json response: @@ -719,7 +723,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '6' Cache-Control: - max-age=600 Connection: @@ -729,7 +733,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:51 GMT ETag: - '"669e563b-1226"' Last-Modified: @@ -747,17 +751,19 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5e41914ce91cce27194f207c0a59f9ff0562a640 + - c8cd85746104322ceece43025e90c726971a2593 X-GitHub-Request-Id: - - 360F:31444D:38827C0:3EE24EF:6702CFA8 + - 166C:264E2D:436BE91:49F958B:678567C9 X-Served-By: - - cache-den8248-DEN + - cache-bos4680-BOS X-Timer: - - S1728237486.872127,VS0,VE1 + - S1736796111.100435,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:08:01 GMT + - Mon, 13 Jan 2025 19:31:45 GMT permissions-policy: - interest-cohort=() + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -771,7 +777,7 @@ interactions: Host: - proj.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://proj.org/schemas/v0.2/projjson.schema.json response: @@ -781,11 +787,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '23' CF-Cache-Status: - HIT CF-Ray: - - 8ce7899efc1f533c-DEN + - 9017c06ef818d46e-IAD Cache-Control: - max-age=1200 Connection: @@ -797,18 +803,20 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:58:05 GMT + - Mon, 13 Jan 2025 19:21:51 GMT Location: - https://proj.org/en/latest/schemas/v0.2/projjson.schema.json Server: - cloudflare Set-Cookie: - - _cfuvid=1eJsPGe3hMPyyaEl5PeM7UG1fgWnZ7kG8yoXTBOnego-1728237485944-0.0.1.1-604800000; + - _cfuvid=uRBDA2JGwAtIC0RpJJPapOW458cIDIFZ5oatR3yeNXM-1736796111229-0.0.1.1-604800000; path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: - Location + alt-svc: + - h3=":443"; ma=86400 cdn-cache-control: - public cross-origin-opener-policy: @@ -816,11 +824,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-00198cede0d27448d + - web-ext-theme-i-073e529e9c304daca x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -842,7 +852,7 @@ interactions: Host: - proj.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://proj.org/en/latest/schemas/v0.2/projjson.schema.json response: @@ -1290,11 +1300,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '22' CF-Cache-Status: - HIT CF-Ray: - - 8ce7899f5eca518c-DEN + - 9017c06fcf3cc55b-IAD Cache-Control: - max-age=1200 Connection: @@ -1302,7 +1312,7 @@ interactions: Content-Type: - application/json Date: - - Sun, 06 Oct 2024 17:58:06 GMT + - Mon, 13 Jan 2025 19:21:51 GMT ETag: - W/"54be42a997d748d338984583b3f2c900" Last-Modified: @@ -1310,7 +1320,7 @@ interactions: Server: - cloudflare Set-Cookie: - - _cfuvid=Lkr64CHKUZ0bIRdpygQjso17kQwJUxBavUxHoYQH2S8-1728237486011-0.0.1.1-604800000; + - _cfuvid=ZoC6KxUhaZscCCXvwelwjkwyzqDVa37h8CAzfcvpMAc-1736796111351-0.0.1.1-604800000; path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -1318,24 +1328,28 @@ interactions: - Accept-Encoding access-control-allow-methods: - HEAD, OPTIONS, GET + alt-svc: + - h3=":443"; ma=86400 cdn-cache-control: - public referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - f5aASN/bFyj2phyPzWWHQ68IHhNiPEXh6zTTeg9+RJ9QQzj6sVVR2aT8uGUxg5L0kRyrjZjApiE= + - hgVzmHhEtFyhPed7VKOPPhzOJHRu5ohayHWqkM/7CjcVbhLz1+BtgYFrGOUm8boSXFisXZDMzRA= x-amz-meta-mtime: - '1714074779.458591481' x-amz-request-id: - - R8NFNYA0GYKBVMPW + - 1MAW5VPVHHDJMTRE x-amz-server-side-encryption: - AES256 x-backend: - - web-i-0437d377c305e1f87 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - /proxito/html/osgeo-proj/latest/schemas/v0.2/projjson.schema.json x-rtd-project: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example12].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example12].yaml index e5ca5f6b7..22f6068f7 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example12].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example12].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:50 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:50 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1d28e7877ee6a06a92648145c72c8bb69c8ee026 + - e0c34c532a70daf66177893178c6e01622c59fd1 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8230-DEN + - cache-bos4632-BOS X-Timer: - - S1728237442.536286,VS0,VE1 + - S1736796050.306696,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/label/schema.json response: @@ -223,11 +223,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:50 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:50 GMT Source-Age: - '0' Strict-Transport-Security: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 74c9eac15b53b7738b9a1a5c6bcaa4eeb84df4c7 + - c151f6237d277ee5c0d30e4e961e6414d7429bff X-Frame-Options: - deny X-GitHub-Request-Id: - - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 + - 6349:3722A2:2643775:2A540CF:67856790 X-Served-By: - - cache-den8249-DEN + - cache-bos4632-BOS X-Timer: - - S1728237442.584911,VS0,VE1 + - S1736796050.405646,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example13].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example13].yaml index 5be5598fa..9c8adb0fc 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example13].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example13].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:50 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:50 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4b7f450cfa0fec6af6dd268c38ef2e555c1f557b + - 24d3eebed79693fe95c38caf42c9b54f50a05457 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8251-DEN + - cache-bos4670-BOS X-Timer: - - S1728237442.619905,VS0,VE1 + - S1736796050.492338,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/label/schema.json response: @@ -223,11 +223,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:50 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:50 GMT Source-Age: - '0' Strict-Transport-Security: @@ -239,19 +239,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b5a5bf84a5106df28d11fa93130b4541d21d471c + - b14f59aa5f94ac06d89cd892951397164f9aaf2f X-Frame-Options: - deny X-GitHub-Request-Id: - - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 + - 6349:3722A2:2643775:2A540CF:67856790 X-Served-By: - - cache-den8264-DEN + - cache-bos4632-BOS X-Timer: - - S1728237442.653036,VS0,VE1 + - S1736796051.578941,VS0,VE0 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example14].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example14].yaml index e4867769f..80d626a14 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example14].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example14].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/collection-spec/json-schema/collection.json response: @@ -89,13 +89,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:50 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:50 GMT Source-Age: - - '1' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 561c267429e54fc9fd76845dfbc320295c6f2bae + - 1bece18983c3f51e56f9fbc2aaad305593466277 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-den8268-DEN + - cache-bos4681-BOS X-Timer: - - S1728237442.687762,VS0,VE1 + - S1736796051.642542,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -192,13 +192,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:50 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:50 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d0f2a97a54c1eeb18c893d4d0654013e076a5a37 + - 6d938a1f95155cefd011d91bbf8fce2f97795d9d X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8250-DEN + - cache-bos4641-BOS X-Timer: - - S1728237442.716590,VS0,VE1 + - S1736796051.710355,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example15].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example15].yaml index 94096c63e..a894688a9 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example15].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example15].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/collection-spec/json-schema/collection.json response: @@ -89,13 +89,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:50 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:50 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - fbf0d4d34b9dfec8d02a292ad6b7331f44778ab5 + - 78966ef6a319dcb061d97bef5b7792e525dc7851 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-den8250-DEN + - cache-bos4661-BOS X-Timer: - - S1728237442.753161,VS0,VE1 + - S1736796051.776752,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -192,13 +192,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:50 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:50 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 63b6caf2e946c9b318ade8c59049d9fc76114d3b + - 33c0f3d3e8c139faf5eb703e1d2fe0a08e3f22e9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8249-DEN + - cache-bos4632-BOS X-Timer: - - S1728237442.785670,VS0,VE1 + - S1736796051.840562,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example16].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example16].yaml index 6566b6fc6..ee306229a 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example16].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example16].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:51 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:51 GMT Source-Age: - - '1' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -128,19 +128,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2f9fac3a88895a1e1f9cb032c8494ad2db63e360 + - 8c4942326378bea500b8dfebea166aca852169a2 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8252-DEN + - cache-bos4670-BOS X-Timer: - - S1728237442.888733,VS0,VE1 + - S1736796051.004954,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/label/schema.json response: @@ -223,13 +223,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:23 GMT + - Mon, 13 Jan 2025 19:20:53 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Sun, 06 Oct 2024 18:02:23 GMT + - Mon, 13 Jan 2025 19:25:53 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 185b5cd5542c0d6a129eb3a77cf1e818754f038c + - d53994da727893f63d4820077084f6618739df34 X-Frame-Options: - deny X-GitHub-Request-Id: - - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 + - 6349:3722A2:2643775:2A540CF:67856790 X-Served-By: - - cache-den8259-DEN + - cache-bos4656-BOS X-Timer: - - S1728237443.276599,VS0,VE1 + - S1736796053.488371,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example17].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example17].yaml index e561e41bd..46f9c49ab 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example17].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example17].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:23 GMT + - Mon, 13 Jan 2025 19:20:53 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:23 GMT + - Mon, 13 Jan 2025 19:25:53 GMT Source-Age: - - '3' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 65d0750f56479ed079c2ea2816c7d4c43da0bb27 + - da8ec49b88c88c231f7b873890825e6b2c339c4e X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8238-DEN + - cache-bos4636-BOS X-Timer: - - S1728237443.326959,VS0,VE1 + - S1736796054.589139,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/label/schema.json response: @@ -223,13 +223,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:23 GMT + - Mon, 13 Jan 2025 19:20:54 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Sun, 06 Oct 2024 18:02:23 GMT + - Mon, 13 Jan 2025 19:25:54 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - bbafc1c8958105931160be9e20591b9f4b702b77 + - a190a40e5dedcdcbaa186f387fee7476c4fba350 X-Frame-Options: - deny X-GitHub-Request-Id: - - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 + - 6349:3722A2:2643775:2A540CF:67856790 X-Served-By: - - cache-den8250-DEN + - cache-bos4670-BOS X-Timer: - - S1728237444.734122,VS0,VE1 + - S1736796054.360930,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example18].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example18].yaml index 17f134248..419b4e8ea 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example18].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example18].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/collection-spec/json-schema/collection.json response: @@ -89,13 +89,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:23 GMT + - Mon, 13 Jan 2025 19:20:54 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Sun, 06 Oct 2024 18:02:23 GMT + - Mon, 13 Jan 2025 19:25:54 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 820326b1d62e050839d7a6db179045eef79b965c + - eaeb1fb726dd92bf6d68ed956ea7a459eee91f8d X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-den8264-DEN + - cache-bos4656-BOS X-Timer: - - S1728237444.761044,VS0,VE1 + - S1736796054.452680,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -192,13 +192,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:23 GMT + - Mon, 13 Jan 2025 19:20:54 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:23 GMT + - Mon, 13 Jan 2025 19:25:54 GMT Source-Age: - - '4' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b63cd34ea263f477a6d21f5769e5cd6cca279754 + - 2e9c3c6ed5ef588aeb0f29d0ee1164c9670401dc X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8275-DEN + - cache-bos4645-BOS X-Timer: - - S1728237444.786326,VS0,VE1 + - S1736796055.532176,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example19].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example19].yaml index 0e8674009..084420a3d 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example19].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example19].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:23 GMT + - Mon, 13 Jan 2025 19:20:54 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:23 GMT + - Mon, 13 Jan 2025 19:25:54 GMT Source-Age: - - '3' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d5c9833ec025b6f3eeeee3021e27474f32428ea2 + - 24a3d454459c33260df06f02e6aee778c7c31723 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8241-DEN + - cache-bos4659-BOS X-Timer: - - S1728237444.812656,VS0,VE2 + - S1736796055.612371,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/label/schema.json response: @@ -223,13 +223,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:23 GMT + - Mon, 13 Jan 2025 19:20:54 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Sun, 06 Oct 2024 18:02:23 GMT + - Mon, 13 Jan 2025 19:25:54 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a443eaac3b0d4dea9a0275bd249f57b06de5f5e6 + - e3779f44c41fbcb878412ca855dfff3cb3fb994e X-Frame-Options: - deny X-GitHub-Request-Id: - - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 + - 6349:3722A2:2643775:2A540CF:67856790 X-Served-By: - - cache-den8254-DEN + - cache-bos4660-BOS X-Timer: - - S1728237444.840563,VS0,VE1 + - S1736796055.680356,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example1].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example1].yaml index be85cdd2f..2adac163b 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example1].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example1].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -68,11 +68,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:47 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:47 GMT Source-Age: - '0' Strict-Transport-Security: @@ -88,15 +88,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2359f34ee550694966fdf37b175bc62a73bd3fdb + - e379b44e58ac6d4f8bf9b5f9b4ac0f906d16036c X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8270-DEN + - cache-bos4673-BOS X-Timer: - - S1728237440.077093,VS0,VE1 + - S1736796048.852509,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example20].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example20].yaml index 1db931068..dd089d074 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example20].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example20].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:23 GMT + - Mon, 13 Jan 2025 19:20:54 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:23 GMT + - Mon, 13 Jan 2025 19:25:54 GMT Source-Age: - - '3' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6090aeda2fee17d7463801efe58b3186d1f1f856 + - 9e1c103f7c99c90de9feba5d07f30c902f6153b0 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8265-DEN + - cache-bos4679-BOS X-Timer: - - S1728237444.871231,VS0,VE1 + - S1736796055.758768,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example21].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example21].yaml index ed0b81140..e1920d5a0 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example21].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example21].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:23 GMT + - Mon, 13 Jan 2025 19:20:54 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:23 GMT + - Mon, 13 Jan 2025 19:25:54 GMT Source-Age: - - '3' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 893116e477ae37a67cce45ec031000e71ffe971a + - 98018a26f7b654ad8180df2fec63487e8b6f056c X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8266-DEN + - cache-bos4664-BOS X-Timer: - - S1728237444.903460,VS0,VE1 + - S1736796055.842507,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example22].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example22].yaml index bf13f0032..a43ac044a 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example22].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example22].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:23 GMT + - Mon, 13 Jan 2025 19:20:54 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:23 GMT + - Mon, 13 Jan 2025 19:25:54 GMT Source-Age: - - '3' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3c3220b84a87b12e3df20da5a33c96f43561bb52 + - 7d5b5c0e51a8b8c9783523698eac5a0707121192 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8244-DEN + - cache-bos4648-BOS X-Timer: - - S1728237444.932575,VS0,VE1 + - S1736796055.922199,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/sar/json-schema/schema.json response: @@ -256,11 +256,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:55 GMT ETag: - '"bd0d97e01404052bb35eda302935aea6ab05818f78d1970e785c7083dedc3bad"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:55 GMT Source-Age: - '0' Strict-Transport-Security: @@ -276,15 +276,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9e88792e2e5c7f16e0e1dc763e5727c13f8ccd48 + - 5d97603bd84440a8f87daf4787e19d6a037b6dbe X-Frame-Options: - deny X-GitHub-Request-Id: - - 5EE4:33B9B9:5BA96D:65DC40:6702CF81 + - D83B:37A04C:266B8DC:2A796C7:67856793 X-Served-By: - - cache-den8231-DEN + - cache-bos4653-BOS X-Timer: - - S1728237444.957911,VS0,VE147 + - S1736796055.002852,VS0,VE149 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example23].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example23].yaml index d1d6b6074..a614f18b0 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example23].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example23].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:55 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:55 GMT Source-Age: - - '4' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f19188e5c586201ce08313e3a5537d95a1c2895d + - 35f54c63d767b6a361a25177e6e5bfb58e6bc046 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8247-DEN + - cache-bos4625-BOS X-Timer: - - S1728237444.144592,VS0,VE1 + - S1736796055.317026,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/checksum/json-schema/schema.json response: @@ -198,13 +198,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:55 GMT ETag: - '"ceed674cee48a43076989957b8a4f96d8acba3f52df1d52a3745e28225923aac"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:55 GMT Source-Age: - - '3' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -218,15 +218,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9502e90ffdd93db2938398c5cea7a56ddc95c606 + - 0b9b529581d7db75c9bd81f48f9496ba717364bf X-Frame-Options: - deny X-GitHub-Request-Id: - - 4D1E:183A6B:5EAFC0:68DD36:6702CF80 + - FFEC:398F81:2754DC3:2B657F5:67856791 X-Served-By: - - cache-den8259-DEN + - cache-bos4668-BOS X-Timer: - - S1728237444.175499,VS0,VE1 + - S1736796055.396951,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -240,7 +240,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/sar/json-schema/schema.json response: @@ -342,11 +342,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:55 GMT ETag: - '"bd0d97e01404052bb35eda302935aea6ab05818f78d1970e785c7083dedc3bad"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:55 GMT Source-Age: - '0' Strict-Transport-Security: @@ -362,15 +362,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ea0b79ca40c4462d7d1b99906e87e2ed1d0c1031 + - a3eb1e2d9f6810e983af18fe7bc9c8f92720d8bb X-Frame-Options: - deny X-GitHub-Request-Id: - - 5EE4:33B9B9:5BA96D:65DC40:6702CF81 + - D83B:37A04C:266B8DC:2A796C7:67856793 X-Served-By: - - cache-den8250-DEN + - cache-bos4660-BOS X-Timer: - - S1728237444.205590,VS0,VE1 + - S1736796055.470646,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example24].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example24].yaml index 851afa947..73e6c2c35 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example24].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example24].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/collection-spec/json-schema/collection.json response: @@ -89,13 +89,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:55 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:55 GMT Source-Age: - - '4' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -105,19 +105,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 25dad5fda598f9fd49bb273b0d5e2cd60d95a4e3 + - c305802df194113b4bf5f4470a5224af7beb0209 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-den8268-DEN + - cache-bos4663-BOS X-Timer: - - S1728237444.240865,VS0,VE0 + - S1736796056.544656,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -192,13 +192,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:55 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:55 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -208,19 +208,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2d801ad2fe00afc2bc0989f8c6b0ea888c2ef2ea + - 365967d66e0079b8cd11c8ea60225d016637e421 X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8250-DEN + - cache-bos4659-BOS X-Timer: - - S1728237444.269023,VS0,VE0 + - S1736796056.626695,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -234,7 +234,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/scientific/json-schema/schema.json response: @@ -280,11 +280,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:55 GMT ETag: - '"13ff4323200a45e6acb12e649221282624758beb0a8f5b3a190160c2aa9d358a"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:55 GMT Source-Age: - '0' Strict-Transport-Security: @@ -300,15 +300,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 61f92ac58ea37a1592fb504bd9510b8b999f763e + - 36bcc4d34d74b3badf2f23c8faa2b40a89b954de X-Frame-Options: - deny X-GitHub-Request-Id: - - C40E:1AA5C0:5862BA:629366:6702CF82 + - 3E1B:3045CC:2476789:2887107:67856797 X-Served-By: - - cache-den8228-DEN + - cache-bos4675-BOS X-Timer: - - S1728237444.295120,VS0,VE154 + - S1736796056.700573,VS0,VE126 X-XSS-Protection: - 1; mode=block status: @@ -322,7 +322,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -427,13 +427,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:55 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:55 GMT Source-Age: - - '4' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -447,15 +447,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6f4e6835690e11822301723558fdffc04450b2dc + - 3026bfe860576518048cfd914866bef41e14f76e X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8259-DEN + - cache-bos4630-BOS X-Timer: - - S1728237444.485202,VS0,VE1 + - S1736796056.886007,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example25].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example25].yaml index f35cb0964..276b4e720 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example25].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example25].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:55 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:55 GMT Source-Age: - - '4' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 337e63b47632d35b0c17bb607c5071db3814229d + - 8d36d53fae84d4c9146eceaea9331eae59f97087 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8267-DEN + - cache-bos4629-BOS X-Timer: - - S1728237445.526656,VS0,VE1 + - S1736796056.950683,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/scientific/json-schema/schema.json response: @@ -200,11 +200,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"13ff4323200a45e6acb12e649221282624758beb0a8f5b3a190160c2aa9d358a"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - '0' Strict-Transport-Security: @@ -220,15 +220,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2bb72ba0ba10d799ddeb43bc95228b181903718c + - 354885c2d3e7803b8f8632720ca1a8b9cd0cdc29 X-Frame-Options: - deny X-GitHub-Request-Id: - - C40E:1AA5C0:5862BA:629366:6702CF82 + - 3E1B:3045CC:2476789:2887107:67856797 X-Served-By: - - cache-den8253-DEN + - cache-bos4634-BOS X-Timer: - - S1728237445.554693,VS0,VE1 + - S1736796056.012892,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -242,7 +242,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/collection-spec/json-schema/collection.json response: @@ -324,13 +324,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '4' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -344,15 +344,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6a2a5f14c4ef541b6a081220ac32bda1106a494d + - 8218cd7f53b2c657bf17f48ce28b41c37fae9f2a X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-den8241-DEN + - cache-bos4640-BOS X-Timer: - - S1728237445.584852,VS0,VE2 + - S1736796056.088249,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -366,7 +366,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -427,13 +427,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -447,15 +447,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a4e2460e826e80fac18557f7b685d59b03b274a4 + - ff62d5a70888801a9467a686fef41bd742af05de X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8235-DEN + - cache-bos4679-BOS X-Timer: - - S1728237445.615390,VS0,VE1 + - S1736796056.154638,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -469,7 +469,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/checksum/json-schema/schema.json response: @@ -513,13 +513,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"ceed674cee48a43076989957b8a4f96d8acba3f52df1d52a3745e28225923aac"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '4' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -533,15 +533,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c9bcf30385a531ee4d1bc37090474acd54c6e8a9 + - 633afc6194d53f989ed2218a17130ba48c12a787 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4D1E:183A6B:5EAFC0:68DD36:6702CF80 + - FFEC:398F81:2754DC3:2B657F5:67856791 X-Served-By: - - cache-den8229-DEN + - cache-bos4636-BOS X-Timer: - - S1728237445.643064,VS0,VE1 + - S1736796056.220476,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example26].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example26].yaml index 829ca1044..6c2435114 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example26].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example26].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -128,19 +128,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - eec44992c35d0c1bcc93ea4bb54953e264e848a5 + - f5e412a8e9c15757aa4e2df67f5d1d010f37d481 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8236-DEN + - cache-bos4661-BOS X-Timer: - - S1728237445.677380,VS0,VE0 + - S1736796056.292440,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/eo/json-schema/schema.json response: @@ -220,13 +220,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '4' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -240,15 +240,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - fde4aa284d8b865a696082c3c3088732a3491f68 + - a695a5ecd86db8799fbda9053d41d2b48bc55258 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F + - D614:3722A2:2643690:2A53FD5:67856790 X-Served-By: - - cache-den8244-DEN + - cache-bos4685-BOS X-Timer: - - S1728237445.708445,VS0,VE1 + - S1736796056.362655,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example27].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example27].yaml index d7f187a44..4e8ee4bee 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example27].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example27].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '4' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -128,19 +128,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 32ef0ef0017e6f13d6ca33599e6b593a5846093d + - 58d3c6c71dd3a1076b711908743a918049624ff1 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8255-DEN + - cache-bos4678-BOS X-Timer: - - S1728237445.739290,VS0,VE1 + - S1736796056.424317,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/eo/json-schema/schema.json response: @@ -220,13 +220,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '4' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -236,19 +236,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5a1af62de7644b4a01b11e6941dc1a8a9f2a4965 + - cd0e5fc995b3411bb0f54e5580124522b54993dc X-Frame-Options: - deny X-GitHub-Request-Id: - - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F + - D614:3722A2:2643690:2A53FD5:67856790 X-Served-By: - - cache-den8265-DEN + - cache-bos4660-BOS X-Timer: - - S1728237445.774010,VS0,VE1 + - S1736796056.490303,VS0,VE0 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example28].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example28].yaml index 4e5be89af..9c68efdfd 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example28].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example28].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '4' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -128,19 +128,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2057bbb27f25f9ebe5b48b7f38ff46b8e25e87b9 + - fab9e681801d1476eb3cdd5fa833a80d038e69aa X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8259-DEN + - cache-bos4656-BOS X-Timer: - - S1728237445.808572,VS0,VE0 + - S1736796057.555494,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/eo/json-schema/schema.json response: @@ -220,13 +220,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '4' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -240,15 +240,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ce5a9268d562396933441b0ed6806828e76689a5 + - a39c3a7efe42bc43f7dab55ba19dda929c7232e5 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F + - D614:3722A2:2643690:2A53FD5:67856790 X-Served-By: - - cache-den8276-DEN + - cache-bos4632-BOS X-Timer: - - S1728237445.836566,VS0,VE1 + - S1736796057.638942,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example29].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example29].yaml index 851760d5d..2f79779ac 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example29].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example29].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '4' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -128,19 +128,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '18' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 62c59549acbbb4204006796febffe2a169b38f52 + - de51d07112cd126a0437653c12cabea206c1c79b X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8278-DEN + - cache-bos4641-BOS X-Timer: - - S1728237445.865981,VS0,VE1 + - S1736796057.714521,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/eo/json-schema/schema.json response: @@ -220,13 +220,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -236,19 +236,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 865423373da32bcf613b3780bd1de3f740018696 + - 012e834a12c9ee0ee887aa5c87bd942ed98aceda X-Frame-Options: - deny X-GitHub-Request-Id: - - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F + - D614:3722A2:2643690:2A53FD5:67856790 X-Served-By: - - cache-den8255-DEN + - cache-bos4686-BOS X-Timer: - - S1728237445.894673,VS0,VE0 + - S1736796057.778303,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example2].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example2].yaml index b171310cf..7eb17b083 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example2].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example2].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/collection-spec/json-schema/collection.json response: @@ -89,11 +89,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:48 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:48 GMT Source-Age: - '0' Strict-Transport-Security: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d59fde1b301d34efd7de22b0fecd0d52badcbc98 + - 1c9dcd58ec34f9dfa699053789c0e0aaf8fd8efc X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-den8237-DEN + - cache-bos4656-BOS X-Timer: - - S1728237440.110246,VS0,VE134 + - S1736796048.920674,VS0,VE149 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -192,13 +192,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:48 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:48 GMT Source-Age: - - '0' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3b0998139864e67b7ff27bb08683a8772395e451 + - 14010127ddc7ce48e6c833fb3dcd6db8e8a911c1 X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8255-DEN + - cache-bos4671-BOS X-Timer: - - S1728237440.282284,VS0,VE1 + - S1736796048.246766,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example30].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example30].yaml index ebafae976..f550f2402 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example30].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example30].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '4' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -128,19 +128,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 042959b2c638ea915c3114983992e5d09eaba845 + - f27c375170e1354d0130fa6a9405669e14df8c08 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8262-DEN + - cache-bos4670-BOS X-Timer: - - S1728237445.925208,VS0,VE1 + - S1736796057.844689,VS0,VE0 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example31].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example31].yaml index f0f1a3052..7933d744d 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example31].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example31].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,13 +112,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:56 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:56 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -128,19 +128,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ad8e9704563657ae98486057dfabc32cc5bff079 + - 692d49fde1e93a9bb6e4e3633c112a157f9dcdf0 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8272-DEN + - cache-bos4631-BOS X-Timer: - - S1728237445.957959,VS0,VE1 + - S1736796057.942441,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/eo/json-schema/schema.json response: @@ -220,13 +220,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:24 GMT + - Mon, 13 Jan 2025 19:20:57 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Sun, 06 Oct 2024 18:02:24 GMT + - Mon, 13 Jan 2025 19:25:57 GMT Source-Age: - - '4' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -240,15 +240,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - de2332cc2f63e113c816092c20ae97020a79b6e0 + - 3b6fcb41248230c25e45ab98c081d4686cb4c604 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F + - D614:3722A2:2643690:2A53FD5:67856790 X-Served-By: - - cache-den8277-DEN + - cache-bos4621-BOS X-Timer: - - S1728237445.986904,VS0,VE1 + - S1736796057.002409,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example32].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example32].yaml index d7721f56d..1ae05bd11 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example32].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example32].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -56,11 +56,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:25 GMT + - Mon, 13 Jan 2025 19:20:57 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:25 GMT + - Mon, 13 Jan 2025 19:25:57 GMT Source-Age: - '0' Strict-Transport-Security: @@ -76,15 +76,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e3f0c6ef80835b6bb3cacf925c869b438549b779 + - 186bbbb66be580e3db980374b73f948ead9b660d X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8250-DEN + - cache-bos4631-BOS X-Timer: - - S1728237445.019572,VS0,VE150 + - S1736796057.064242,VS0,VE80 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example33].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example33].yaml index fbdf018b7..f8f52a88d 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example33].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example33].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -100,11 +100,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:25 GMT + - Mon, 13 Jan 2025 19:20:57 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:25 GMT + - Mon, 13 Jan 2025 19:25:57 GMT Source-Age: - '0' Strict-Transport-Security: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d6f78db552604bfc562bfad4649e0c4d80ffd5c4 + - 11cbe106c4cc6b77b9a163a999fd0031bb92a6c5 X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8270-DEN + - cache-bos4685-BOS X-Timer: - - S1728237445.209386,VS0,VE140 + - S1736796057.212309,VS0,VE110 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -191,11 +191,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:25 GMT + - Mon, 13 Jan 2025 19:20:57 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:25 GMT + - Mon, 13 Jan 2025 19:25:57 GMT Source-Age: - '0' Strict-Transport-Security: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - cc87bbad4782793b8be8b7feade0bfb3fdf0db5c + - eda17035bdac0e1d68553e7126a3decb266bb9c3 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8246-DEN + - cache-bos4668-BOS X-Timer: - - S1728237445.491451,VS0,VE1 + - S1736796057.442789,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example34].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example34].yaml index 287946ad3..4c7f3d88b 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example34].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example34].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,11 +100,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:25 GMT + - Mon, 13 Jan 2025 19:20:57 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:25 GMT + - Mon, 13 Jan 2025 19:25:57 GMT Source-Age: - '0' Strict-Transport-Security: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 77aa467c2ceba89c95be7347b4191c29c8fd23bc + - a3c880ee81d978e9c86441ba008409ffca88ea1c X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8233-DEN + - cache-bos4656-BOS X-Timer: - - S1728237446.533005,VS0,VE124 + - S1736796058.518888,VS0,VE128 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,11 +172,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:25 GMT + - Mon, 13 Jan 2025 19:20:57 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:25 GMT + - Mon, 13 Jan 2025 19:25:57 GMT Source-Age: - '0' Strict-Transport-Security: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 92df5948f604e85215d2ddfeb71458795a4df6d3 + - 591667189fe0ed0a57bad0215bd023f2fdc05a0f X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8279-DEN + - cache-bos4678-BOS X-Timer: - - S1728237446.693663,VS0,VE122 + - S1736796058.764509,VS0,VE109 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,11 +249,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:25 GMT + - Mon, 13 Jan 2025 19:20:58 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:25 GMT + - Mon, 13 Jan 2025 19:25:58 GMT Source-Age: - '0' Strict-Transport-Security: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5f418d4d42780e99aad9b4164178394fc5aa2e02 + - 2f276b38f5ad36fb3dce77394193c342afbc2d70 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8274-DEN + - cache-bos4660-BOS X-Timer: - - S1728237446.845474,VS0,VE126 + - S1736796058.952012,VS0,VE116 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,11 +322,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:26 GMT + - Mon, 13 Jan 2025 19:20:58 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:26 GMT + - Mon, 13 Jan 2025 19:25:58 GMT Source-Age: - '0' Strict-Transport-Security: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 589dc8adb4a4b42f7d63810a27fd688243e34267 + - 0d8d6a267118c32abda46301163621110143c2e9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8252-DEN + - cache-bos4638-BOS X-Timer: - - S1728237446.994695,VS0,VE125 + - S1736796058.126290,VS0,VE139 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,11 +391,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:26 GMT + - Mon, 13 Jan 2025 19:20:58 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:26 GMT + - Mon, 13 Jan 2025 19:25:58 GMT Source-Age: - '0' Strict-Transport-Security: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a168655501d4f909c88807a525e3c8ceff6f7443 + - c61d8f6870f2939cd770cb98a26b53013b7b8ae1 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8254-DEN + - cache-bos4679-BOS X-Timer: - - S1728237446.147684,VS0,VE134 + - S1736796058.328901,VS0,VE112 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,11 +462,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:26 GMT + - Mon, 13 Jan 2025 19:20:58 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:26 GMT + - Mon, 13 Jan 2025 19:25:58 GMT Source-Age: - '0' Strict-Transport-Security: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 03494ae8cb3dd637090aebe5278376946630da43 + - 99bef9daa9ba70a824a667e794a7af357d93bbf2 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8221-DEN + - cache-bos4655-BOS X-Timer: - - S1728237446.313343,VS0,VE147 + - S1736796059.582961,VS0,VE121 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,11 +541,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:26 GMT + - Mon, 13 Jan 2025 19:20:58 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:26 GMT + - Mon, 13 Jan 2025 19:25:58 GMT Source-Age: - '0' Strict-Transport-Security: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - eaa46e973004b36c481a8dda61c06662b0b021b4 + - e2369e1499a704a6171d87881b43113eedaa2b27 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8263-DEN + - cache-bos4662-BOS X-Timer: - - S1728237447.509733,VS0,VE120 + - S1736796059.780550,VS0,VE120 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/eo/json-schema/schema.json response: @@ -636,11 +636,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:26 GMT + - Mon, 13 Jan 2025 19:20:59 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Sun, 06 Oct 2024 18:02:26 GMT + - Mon, 13 Jan 2025 19:25:59 GMT Source-Age: - '0' Strict-Transport-Security: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d33b8d3fc95b9e66e3745b50fdbb3b05b72a94b5 + - 4790e3db5eae8e94e76428f784d022e08bdd4779 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2D51:A1DE:5F6E3B:69A130:6702CF81 + - 0C7E:37A04C:266BAF1:2A79924:67856799 X-Served-By: - - cache-den8228-DEN + - cache-bos4632-BOS X-Timer: - - S1728237447.659866,VS0,VE169 + - S1736796059.104630,VS0,VE160 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example35].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example35].yaml index 4cd3750c7..cef180968 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example35].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example35].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -100,11 +100,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:26 GMT + - Mon, 13 Jan 2025 19:20:59 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:26 GMT + - Mon, 13 Jan 2025 19:25:59 GMT Source-Age: - '2' Strict-Transport-Security: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6f70928d46be2a290b52b4be161ca46ff3fda5d8 + - 9ce0741f06d5137f4c99ea6136478827db8c1250 X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8235-DEN + - cache-bos4641-BOS X-Timer: - - S1728237447.876464,VS0,VE0 + - S1736796059.414717,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -191,11 +191,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:26 GMT + - Mon, 13 Jan 2025 19:20:59 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:26 GMT + - Mon, 13 Jan 2025 19:25:59 GMT Source-Age: - '2' Strict-Transport-Security: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - cc096f15c2f2d49d0ae8565be1ac627a239ae241 + - f1b5b11b30553b6568b369328ebe649ecbdefdbb X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8263-DEN + - cache-bos4651-BOS X-Timer: - - S1728237447.904957,VS0,VE1 + - S1736796059.486325,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example36].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example36].yaml index 9b6e43d71..5b411c546 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example36].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example36].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -100,11 +100,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:26 GMT + - Mon, 13 Jan 2025 19:20:59 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:26 GMT + - Mon, 13 Jan 2025 19:25:59 GMT Source-Age: - '2' Strict-Transport-Security: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 78336a95c142a710fa956eb4b0088843d23daf94 + - 5f4c263ed8b73c11f7733c875592e8cedaa06ac7 X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8278-DEN + - cache-bos4656-BOS X-Timer: - - S1728237447.937078,VS0,VE1 + - S1736796060.558452,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -191,11 +191,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:26 GMT + - Mon, 13 Jan 2025 19:20:59 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:26 GMT + - Mon, 13 Jan 2025 19:25:59 GMT Source-Age: - '2' Strict-Transport-Security: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8dc6001c23aec84733a1ec1b7b42e9bec2f792b9 + - 3cbc50dcd175c73674af44267511f2723352f6f0 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8275-DEN + - cache-bos4642-BOS X-Timer: - - S1728237447.965849,VS0,VE1 + - S1736796060.634298,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -233,7 +233,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/asset/json-schema/schema.json response: @@ -274,11 +274,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:20:59 GMT ETag: - '"6ae857b8e1e2f74d6b996d5f7111e822099d2620956150db4b96325f59fccc52"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:25:59 GMT Source-Age: - '0' Strict-Transport-Security: @@ -294,15 +294,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9815d215157e4397a7f861c61322bf89d517c0c3 + - e922433d3c7dd2ebb580c51446d473a5ccd334c7 X-Frame-Options: - deny X-GitHub-Request-Id: - - 72A2:33B9B9:5BAB32:65DE22:6702CF86 + - 118A:38BE00:25BAE4D:29CB814:6785679B X-Served-By: - - cache-den8272-DEN + - cache-bos4653-BOS X-Timer: - - S1728237447.992492,VS0,VE150 + - S1736796060.706500,VS0,VE112 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example37].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example37].yaml index 4a0840717..16e9e2c37 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example37].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example37].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,11 +100,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:20:59 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:25:59 GMT Source-Age: - '2' Strict-Transport-Security: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9b5aa6eae48aa065d6462e5edaa4f9f23a2ae2db + - 07dfdb9e5f6f06caf9393cc2334712c7985242ae X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8242-DEN + - cache-bos4686-BOS X-Timer: - - S1728237447.187173,VS0,VE1 + - S1736796060.930458,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b27c3b7f622ca7bc9b0a790676902d6a7892554d + - 7584e09b6bd31608e679d7643426757f36631d5d X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8235-DEN + - cache-bos4678-BOS X-Timer: - - S1728237447.219902,VS0,VE1 + - S1736796060.006594,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 09605012c8d7028c6d673b48507a6ed7b9a69f6d + - 8eaf571bf83fe85f1d62130919c2ff3b5e1549fc X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8231-DEN + - cache-bos4662-BOS X-Timer: - - S1728237447.250161,VS0,VE1 + - S1736796060.080664,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5e0554bc66d5f5f8ad13051cc2f78822ef194422 + - 26d3b103cfffbed00392bacbcb53998757f7393c X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8240-DEN + - cache-bos4654-BOS X-Timer: - - S1728237447.279722,VS0,VE1 + - S1736796060.152742,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6f33b73a539bd4917af2395aeb2f3fca088960f6 + - e79eefbcbfca162bb073f559c6478216989407e9 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8252-DEN + - cache-bos4680-BOS X-Timer: - - S1728237447.315047,VS0,VE0 + - S1736796060.286640,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1bcfbeb5c784ef429b3e6fb86e56ee84296fecf7 + - a8dd159414c815aaa3af5677ac956c956196949d X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8259-DEN + - cache-bos4633-BOS X-Timer: - - S1728237447.346453,VS0,VE1 + - S1736796060.366422,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c4ca3fb786acf353591e2aec4f4c329300bb3399 + - b9245207ba232ad28eedec8ff82ee0bcace41128 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8258-DEN + - cache-bos4656-BOS X-Timer: - - S1728237447.378171,VS0,VE1 + - S1736796060.438823,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/checksum/json-schema/schema.json response: @@ -621,11 +621,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"9bde8b6875408a186b283e6e3dd3edb01bc2b938e55a0491b0b7f4e06f0faccb"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - '0' Strict-Transport-Security: @@ -641,15 +641,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d7e303538a7c31ba19d4137a2bc301890fef8530 + - 17282140a77bd331d72226115eb9c5cc9156689c X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:60035E:6A38E7:6702CF87 + - 6E3F:3103FF:24933D8:28A3CB6:6785679B X-Served-By: - - cache-den8259-DEN + - cache-bos4643-BOS X-Timer: - - S1728237447.405986,VS0,VE133 + - S1736796061.510539,VS0,VE119 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example38].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example38].yaml index 307ec7779..521d8e7ac 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example38].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example38].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0c3d3f0a815c3bc88c4edc78b08b69563237a576 + - ba48fcd75353090a46296d0238868ffc48568589 X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8240-DEN + - cache-bos4630-BOS X-Timer: - - S1728237448.583007,VS0,VE1 + - S1736796061.702735,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -191,13 +191,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 44691cc84ac879bcbb6198ec77828058da56c023 + - 6001d6c2120d09203f1bb8a9a5303a187668b2a4 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8229-DEN + - cache-bos4673-BOS X-Timer: - - S1728237448.620627,VS0,VE1 + - S1736796061.782057,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example39].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example39].yaml index 8de5f7c38..68a445230 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example39].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example39].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 249ff84133ca245eb7021b225b47bc9f6ae35bf6 + - 19ca467b4cf641b1659f31ffd602e103fe5db138 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8256-DEN + - cache-bos4639-BOS X-Timer: - - S1728237448.657401,VS0,VE13 + - S1736796061.858289,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 41f57699bbb3cabd61c01d7f43c664e6c748a9ef + - 189b19f16303f1cad594346f62430f603880a202 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8272-DEN + - cache-bos4659-BOS X-Timer: - - S1728237448.700441,VS0,VE17 + - S1736796061.924549,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:00 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:00 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c819254a7ae1c6a3cc4aeba2f139f212fd711206 + - 7aef1751b9184ff13ad31875e19ba55708b90a52 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8264-DEN + - cache-bos4670-BOS X-Timer: - - S1728237448.747057,VS0,VE1 + - S1736796061.992305,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:01 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:01 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b0afde4f2abd6ac247a5294a10d2de569f7aa724 + - ceb06ad5f9207ff8821187e8d2e67ae167c0c346 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8254-DEN + - cache-bos4632-BOS X-Timer: - - S1728237448.774636,VS0,VE1 + - S1736796061.066820,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:01 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:01 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ffb455a6b548864806353bbec4a1d9b461bbf34f + - 6aebbe40136b7e51f0e47db2252bfaa73107a177 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8274-DEN + - cache-bos4620-BOS X-Timer: - - S1728237448.805852,VS0,VE1 + - S1736796061.136754,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:01 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:01 GMT Source-Age: - - '1' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 89c62cd62e5f2c5f983ed572beca80cb4c2ab4be + - c728fdf93d67b043cf90e168933bfa708a20b17d X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8230-DEN + - cache-bos4640-BOS X-Timer: - - S1728237448.835332,VS0,VE1 + - S1736796061.206769,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:01 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:01 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e4a5168c5e13fab1cbc01910edbec3e4168c1b7a + - a2efbfaedba3bca6ec1bdcf3998b895586102c61 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8253-DEN + - cache-bos4652-BOS X-Timer: - - S1728237448.865486,VS0,VE3 + - S1736796061.286547,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/eo/json-schema/schema.json response: @@ -636,13 +636,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:27 GMT + - Mon, 13 Jan 2025 19:21:01 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Sun, 06 Oct 2024 18:02:27 GMT + - Mon, 13 Jan 2025 19:26:01 GMT Source-Age: - - '1' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5646dd649ac714ee561c105304f91f00f7d018b3 + - d55f7ea4ea4b8fe7ca3d58e016bcf5d8ea8d85b6 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2D51:A1DE:5F6E3B:69A130:6702CF81 + - 0C7E:37A04C:266BAF1:2A79924:67856799 X-Served-By: - - cache-den8279-DEN + - cache-bos4673-BOS X-Timer: - - S1728237448.894238,VS0,VE1 + - S1736796061.367989,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/sat/json-schema/schema.json response: @@ -714,11 +714,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:01 GMT ETag: - '"90408dbc0c6ce835205fcdbeeab881774f06517052d7c3dbcf6ba7c3ccced7eb"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:01 GMT Source-Age: - '0' Strict-Transport-Security: @@ -734,15 +734,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c8e0af3072eb57308fd63a80c9dc5a299753a47e + - 744174ad10a7fc3bebcbf09ba75870bf0254d529 X-Frame-Options: - deny X-GitHub-Request-Id: - - 8E2F:17ACE4:5F69A9:699BE3:6702CF85 + - A023:1B425:248B263:289B641:6785679D X-Served-By: - - cache-den8225-DEN + - cache-bos4639-BOS X-Timer: - - S1728237448.928837,VS0,VE131 + - S1736796061.444252,VS0,VE128 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example3].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example3].yaml index 4f3a7b1d2..277a1095c 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example3].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example3].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,11 +112,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:48 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:48 GMT Source-Age: - '0' Strict-Transport-Security: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a0d8c0e0b4dd9778d15d2b34680e2e517d0a20b8 + - d7c7a29bc0f8132d68b29715cace37d1d01a6dc8 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8264-DEN + - cache-bos4682-BOS X-Timer: - - S1728237440.324535,VS0,VE131 + - S1736796048.327350,VS0,VE116 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/eo/json-schema/schema.json response: @@ -220,11 +220,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:48 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:48 GMT Source-Age: - '0' Strict-Transport-Security: @@ -240,15 +240,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ef678bfe787270fdb56fac4562254776cc5f8239 + - 1a0ac1f8fd72eb3cf314561611b671e9633de5c2 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F + - D614:3722A2:2643690:2A53FD5:67856790 X-Served-By: - - cache-den8251-DEN + - cache-bos4658-BOS X-Timer: - - S1728237440.498113,VS0,VE121 + - S1736796049.544936,VS0,VE140 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example40].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example40].yaml index a2c44db99..b2dbab3da 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example40].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example40].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:01 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:01 GMT Source-Age: - - '3' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e2848b51672274eb5219f30ead5a34513b5488ec + - 41133c3fcc15805d176e8e9f4aafb80c64b7ade8 X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8239-DEN + - cache-bos4626-BOS X-Timer: - - S1728237448.101616,VS0,VE1 + - S1736796062.670647,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -191,13 +191,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:01 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:01 GMT Source-Age: - - '3' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9760bf3c5a2c0f9ef47c24bb7d213220b6d1efe5 + - b464ab48d2dcaa71ba8c99cbebd826db604ae3fd X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8252-DEN + - cache-bos4661-BOS X-Timer: - - S1728237448.134146,VS0,VE1 + - S1736796062.748771,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example41].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example41].yaml index 9166b13fa..35801d9e6 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example41].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example41].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:01 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:01 GMT Source-Age: - - '3' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4efed848c0ffed4d3033be4a1c0479b52cab6d00 + - 501ea16e536b3ee5c2b9c529ac8369fc069079a5 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8254-DEN + - cache-bos4641-BOS X-Timer: - - S1728237448.168071,VS0,VE1 + - S1736796062.828415,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:01 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:01 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 81e17b3c1af64352ab3091216f3a59a4e59c9e1f + - 9c2a9bfd74026b13c4be114f32656cd70d5c8d58 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8248-DEN + - cache-bos4640-BOS X-Timer: - - S1728237448.197276,VS0,VE1 + - S1736796062.906197,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:01 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:01 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f2519ead1b9eaf5e936b2a5b60eb2f38a21f8306 + - 25839b17e67e94454849494cf9c92ce4709108e0 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8258-DEN + - cache-bos4630-BOS X-Timer: - - S1728237448.227381,VS0,VE1 + - S1736796062.980185,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 44fd6e5f4116c3a7cf9deb1cbf0e8886a367815e + - 937221eac2aebedf99802e7b78a9dde6d47c59b5 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8281-DEN + - cache-bos4640-BOS X-Timer: - - S1728237448.254528,VS0,VE1 + - S1736796062.052894,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5dac7781e203bf4146411209c18e1764a59e09e6 + - 46f6624a8c20b626730e47c0d97345a8b689e37c X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8227-DEN + - cache-bos4643-BOS X-Timer: - - S1728237448.284426,VS0,VE1 + - S1736796062.110411,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4d8697ad5de29d976b60b8b7e3b67b3fbfaaf23d + - a797aa930e4488b68559749ff0a0c971cdfdc88c X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8246-DEN + - cache-bos4645-BOS X-Timer: - - S1728237448.317704,VS0,VE1 + - S1736796062.188048,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '2' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - dd59023ac6f89b4a6ceb3154d74ea23e1a01b903 + - f7fac855e51a850be0665a575cab24dd7ee4d3e3 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8271-DEN + - cache-bos4634-BOS X-Timer: - - S1728237448.344960,VS0,VE1 + - S1736796062.257029,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example42].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example42].yaml index 333313f36..08dfc8406 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example42].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example42].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '3' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3ae1fedec16ad9135297443beb43242af8a5efbe + - 8b5f7b9963b9cbf7309ba39b4ec2d70fa8d5c620 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8267-DEN + - cache-bos4662-BOS X-Timer: - - S1728237448.385126,VS0,VE1 + - S1736796062.324627,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '3' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6903ea7c5cc0b4bc3296432cf352aba8503ed19d + - 15904cf0ce212c2669b77a8eb84f9b4973f840ac X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8223-DEN + - cache-bos4680-BOS X-Timer: - - S1728237448.417410,VS0,VE1 + - S1736796062.394575,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 527d982f98da8f318634201b170f60551a167029 + - 150b3dd229af8421c906d5481c35714f329eb327 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8241-DEN + - cache-bos4679-BOS X-Timer: - - S1728237448.443274,VS0,VE1 + - S1736796062.460629,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 93bea995bba91aabc0330e458d5b048f94b202c1 + - 1229d73c17d1c26c7f43b171e087faf89a260bf0 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8274-DEN + - cache-bos4678-BOS X-Timer: - - S1728237448.470947,VS0,VE1 + - S1736796063.530323,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6babfc3a2928266e559bfd7219ef0805016c9e48 + - 5fc725043369b64e9fa208db98aca303b3b82e98 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8272-DEN + - cache-bos4631-BOS X-Timer: - - S1728237449.502596,VS0,VE1 + - S1736796063.606430,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b8c8c1695b3de8f5dfade1a188f8e85ffc962dfd + - c579e571b14cd9fce72d8a9ba3c55c689b1625f9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8252-DEN + - cache-bos4648-BOS X-Timer: - - S1728237449.530186,VS0,VE1 + - S1736796063.678275,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3d1994c1288e3e0fa479182971d01ede06753d10 + - 28bdbb2c1aa44db51bb01ea67fc7180d75eb20d1 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8239-DEN + - cache-bos4660-BOS X-Timer: - - S1728237449.561608,VS0,VE1 + - S1736796063.750210,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/eo/json-schema/schema.json response: @@ -636,13 +636,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:02 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:02 GMT Source-Age: - - '2' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 70b939dc87a1d023250f56e2f0440f1f039beec8 + - 29a90709d780920ad46132653e518ae6d8095cac X-Frame-Options: - deny X-GitHub-Request-Id: - - 2D51:A1DE:5F6E3B:69A130:6702CF81 + - 0C7E:37A04C:266BAF1:2A79924:67856799 X-Served-By: - - cache-den8253-DEN + - cache-bos4633-BOS X-Timer: - - S1728237449.589868,VS0,VE1 + - S1736796063.818868,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/view/json-schema/schema.json response: @@ -722,11 +722,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - '0' Strict-Transport-Security: @@ -742,15 +742,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 38f24b1c1d4e8917676688a8c79e5723ccd476f5 + - af62ef8a6dba627a043c5c155cbf590a75f81690 X-Frame-Options: - deny X-GitHub-Request-Id: - - 5920:1CA6FD:6230EC:6C6434:6702CF88 + - D83B:37A04C:266BCDE:2A79B33:6785679E X-Served-By: - - cache-den8259-DEN + - cache-bos4686-BOS X-Timer: - - S1728237449.620449,VS0,VE117 + - S1736796063.896866,VS0,VE108 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example43].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example43].yaml index 466095fa0..ec82b21da 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example43].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example43].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -56,13 +56,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '3' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -72,19 +72,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 89baf88d180a4c878d6c013a18653305ae8dca40 + - 1de856ba7beedbdfd98b319e0e49ae1268a6ccfa X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8229-DEN + - cache-bos4641-BOS X-Timer: - - S1728237449.781089,VS0,VE0 + - S1736796063.083008,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example44].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example44].yaml index f30d5578d..f2355189d 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example44].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example44].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:28 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:28 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '3' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6ae22d426011f1877e4b5bcf5c4f6ec70f786d09 + - a842402be167baface420288217478fa2f395b8b X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8252-DEN + - cache-bos4635-BOS X-Timer: - - S1728237449.817232,VS0,VE1 + - S1736796063.166676,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:29 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:29 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '4' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -188,19 +188,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - fa430519eceaf35fadb939aae1b61aeb8bbb8974 + - 886572789087ae76359db8dc9cf8983382773b07 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8248-DEN + - cache-bos4685-BOS X-Timer: - - S1728237450.856891,VS0,VE0 + - S1736796063.234294,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:29 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:29 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '4' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 106168fa074a56e88d147997cd0cdd6a49485a3b + - 67d16c3ac6bf4692cbb4ec8fec861fb0ab1c4bf3 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8268-DEN + - cache-bos4643-BOS X-Timer: - - S1728237450.891160,VS0,VE1 + - S1736796063.298566,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:29 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:29 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '4' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9a8eb2803b2bbcecccf27607604b6b661bed615c + - 142b7cea3748658cd418bab400cd68d38c9b124e X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8276-DEN + - cache-bos4672-BOS X-Timer: - - S1728237450.925067,VS0,VE1 + - S1736796063.374430,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:29 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:29 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '4' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5fe2a3a3bd64567297ab111dcd36684a9e631459 + - c9287d808f4ac183067c50799b67ae8433382468 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8230-DEN + - cache-bos4681-BOS X-Timer: - - S1728237450.955492,VS0,VE1 + - S1736796063.448650,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:29 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:29 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '4' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f1787b298defdd87255d80423b98acf005f74801 + - 7913a2fdf39eacaf4b351ba946aecbbf26e5a9bb X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8221-DEN + - cache-bos4638-BOS X-Timer: - - S1728237450.985120,VS0,VE1 + - S1736796064.524706,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '3' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 132b47236ddb9fab3d401b7e747e229dfa987960 + - e702d735352429a73e155b75d92208c0cde67a33 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8277-DEN + - cache-bos4665-BOS X-Timer: - - S1728237450.015887,VS0,VE1 + - S1736796064.609088,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example45].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example45].yaml index 870aaef8b..cf845b684 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example45].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example45].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - cb59e4fe69daeb6da196277ee65711c47ee30106 + - 6bc27b99fc8aa25dea903ea5c991c65ee378deb4 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8251-DEN + - cache-bos4638-BOS X-Timer: - - S1728237450.061819,VS0,VE1 + - S1736796064.696545,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7b8eeeb17b066a0a4fa09028ce8f46b3af1b3219 + - 4ead81bd6d49fe03e210271cf9c0c2776318d9a1 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8258-DEN + - cache-bos4620-BOS X-Timer: - - S1728237450.092152,VS0,VE1 + - S1736796064.770632,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a147603c6b59d64f18c339b07adc12c88afd7802 + - e027ae675326673c835e8e2255ba7167b64b517b X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8259-DEN + - cache-bos4672-BOS X-Timer: - - S1728237450.118282,VS0,VE1 + - S1736796064.858554,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:03 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:03 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 690307a3260569df45870da70bc6264bba615e4d + - 20fe587f300ebaf31c8ed7fe6940ab2276657018 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8245-DEN + - cache-bos4677-BOS X-Timer: - - S1728237450.143213,VS0,VE2 + - S1736796064.938202,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 406ac075f97bd25b89c9179f10d3b4e6fb47e65f + - d879c2e6067644ebaa8a320bd7ef3f1e9996e98e X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8221-DEN + - cache-bos4684-BOS X-Timer: - - S1728237450.170044,VS0,VE1 + - S1736796064.016041,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '4' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 72a91794a0828a368542862661d321a54b904db6 + - dd2ded0fc899ba6e818b7087a97fd1b6dda42137 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8270-DEN + - cache-bos4666-BOS X-Timer: - - S1728237450.198230,VS0,VE1 + - S1736796064.088513,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '4' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - dfbfb3b55f9f0bbe47d16032b774be532b11f628 + - 4d2d8dca94d1fb645b63d999ff15d920200418ce X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8276-DEN + - cache-bos4648-BOS X-Timer: - - S1728237450.250627,VS0,VE1 + - S1736796064.173333,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example46].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example46].yaml index 9ee3e462f..7e2efab16 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example46].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example46].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '5' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 12694c9a83e8881ad120c8e335a1fbb171e59252 + - 21e6279ea4824ab7c5a25e24a5e2884e5f4dffac X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8250-DEN + - cache-bos4652-BOS X-Timer: - - S1728237450.292450,VS0,VE2 + - S1736796064.262383,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '5' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a2454f1a8284528f169d528527a076fbebb96e90 + - 813b611b1bedcd48f50423acfac8ca8cf95b6561 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8261-DEN + - cache-bos4641-BOS X-Timer: - - S1728237450.325770,VS0,VE1 + - S1736796064.330734,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b087f42121ba08c07f95b87951a087c4256dcfe0 + - 892e4c84733d77e919237f42f315128d7bee9faf X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8279-DEN + - cache-bos4629-BOS X-Timer: - - S1728237450.353329,VS0,VE1 + - S1736796064.404636,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e8a78828e18ad6737c45cf3deea3c5e5bda49cad + - f02892f48d9cfda2f63b2aa5a85edc4671da31d3 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8282-DEN + - cache-bos4629-BOS X-Timer: - - S1728237450.382864,VS0,VE1 + - S1736796064.482365,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -407,19 +407,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2fbbdd65bfcc07bee77e7c538225831d98657a69 + - ff4f777a89eeb3c774c71406b325098c9a14ecdc X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8230-DEN + - cache-bos4682-BOS X-Timer: - - S1728237450.413295,VS0,VE0 + - S1736796065.560948,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3770c2b4f57fd2bc5ec64891e6fc13e232852264 + - f80830d4c3b096853076bf041e8ddfdff6c3335e X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8234-DEN + - cache-bos4661-BOS X-Timer: - - S1728237450.438971,VS0,VE1 + - S1736796065.626789,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 843fb6f6a4f4f6f7b40d905ac642e87b6b406c57 + - cacbe5eafd77352c46266a1a2dabdb4d2a991e01 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8263-DEN + - cache-bos4684-BOS X-Timer: - - S1728237450.466920,VS0,VE1 + - S1736796065.700549,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example47].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example47].yaml index 78e1caf1d..34e7c7b1b 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example47].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example47].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '5' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c0141a864d011b07fb15aa7e63ad74490ae6f1ce + - 409911d6283a3f30ec4a7f1f212b8073a96ed84d X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8231-DEN + - cache-bos4654-BOS X-Timer: - - S1728237451.508464,VS0,VE1 + - S1736796065.774837,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -191,13 +191,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - eeeb3c877643dbc3bc22359849be614bd76c3c2a + - 25dd11efc47cd2c357b1c8c24f862b53d66cf73f X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8262-DEN + - cache-bos4658-BOS X-Timer: - - S1728237451.537424,VS0,VE1 + - S1736796065.840518,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example48].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example48].yaml index 048641ea6..2665e9279 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example48].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example48].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 517c2c8dc7b14ab4f438101f7ebf6cfaaed77cff + - f1c786ad0554f863703a7d4db06421eca8ce4f1e X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8269-DEN + - cache-bos4666-BOS X-Timer: - - S1728237451.568442,VS0,VE1 + - S1736796065.910588,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -191,13 +191,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:04 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:04 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6922dac9a52bcb0fc78d09ae5345488e04a9332a + - 52224dd6d6d9be28d7ace8d535991a80de05f9a8 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8227-DEN + - cache-bos4653-BOS X-Timer: - - S1728237451.597638,VS0,VE1 + - S1736796065.980628,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example49].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example49].yaml index 9553306d4..e4ad0acb0 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example49].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example49].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '5' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e70223a507be3110d9ccb310d25b0bd1440fc848 + - e80e5c8b31084964ea746d7ce50204229bade638 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8265-DEN + - cache-bos4649-BOS X-Timer: - - S1728237451.628835,VS0,VE1 + - S1736796065.044859,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '5' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -188,19 +188,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6f722fad5547906f28bd492e36582bd48451e94c + - ed0d0432b389a3f5581a1a1666c683100992b2f7 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8276-DEN + - cache-bos4659-BOS X-Timer: - - S1728237451.666535,VS0,VE1 + - S1736796065.110734,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '5' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 44a15c725b0c2e7bc2b15e71f441530dbec8d767 + - c3695ee700e33e6e66a5da9fd56ac754326ef9e5 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8239-DEN + - cache-bos4678-BOS X-Timer: - - S1728237451.693251,VS0,VE1 + - S1736796065.172207,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '5' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - cfff113b42a856bc723b2565b760674b272697b0 + - cd9f2590bc771f2ecf0812a4c2c4980bfa487b40 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8280-DEN + - cache-bos4627-BOS X-Timer: - - S1728237451.717028,VS0,VE1 + - S1736796065.242808,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '4' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 906f9f060f46c0e829289e8bc6e45afe403445b6 + - b8fc235be92eeef68a4c2c71561c5617d1c35c74 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8275-DEN + - cache-bos4671-BOS X-Timer: - - S1728237451.742738,VS0,VE1 + - S1736796065.305716,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '4' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c925c7a93d48d2a195309955c23eb9d02352c950 + - 37ca1f17786ed2102809489afaa58e51d1339e80 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8263-DEN + - cache-bos4664-BOS X-Timer: - - S1728237451.771353,VS0,VE2 + - S1736796065.368273,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '4' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - dc4180fed2b773cf4df47d756e879b0e796d7506 + - 89faacb30c5da1438156bf50e8c3873d9e870168 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8223-DEN + - cache-bos4685-BOS X-Timer: - - S1728237451.802513,VS0,VE1 + - S1736796065.438527,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example4].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example4].yaml index d6ef18f64..e7cb42520 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example4].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example4].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/collection-spec/json-schema/collection.json response: @@ -89,13 +89,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:48 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:48 GMT Source-Age: - - '0' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - dd3d5c0be7896175938229cf9f722125a9f9619d + - 66dd0cd219dcdae66e6437292f9d2b209c92de2a X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-den8248-DEN + - cache-bos4645-BOS X-Timer: - - S1728237441.660992,VS0,VE1 + - S1736796049.815026,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -192,11 +192,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:48 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:48 GMT Source-Age: - '1' Strict-Transport-Security: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 20c17dfbcd59cd52af723aca9489f836c66fa5ac + - 1b867daee74ddbb4c19dafdf4b84f5cb598fb182 X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8230-DEN + - cache-bos4631-BOS X-Timer: - - S1728237441.691462,VS0,VE1 + - S1736796049.884382,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example50].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example50].yaml index affa96f91..ced45ceef 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example50].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example50].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '7' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8a554567b041d646b1d0b21678cc13f61ea00797 + - a7e2ef734c82e60499d2f91b8fd8bb5b4454938f X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8235-DEN + - cache-bos4680-BOS X-Timer: - - S1728237451.841572,VS0,VE0 + - S1736796066.520733,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -191,13 +191,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '6' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b96c9e6748f5c9a82c335ff0cfb547b34edb28b8 + - a805d389bb90e55ffd9a8f81d23043ed075cb752 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8232-DEN + - cache-bos4674-BOS X-Timer: - - S1728237451.869213,VS0,VE1 + - S1736796066.597103,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example51].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example51].yaml index 2bfbcb22e..f83efa2e7 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example51].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example51].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - afb2a3330467dedf9618177913c830f7225dd790 + - 2ff23a184cc64c2e3b774d25ddf73ef30ee0e21c X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8220-DEN + - cache-bos4635-BOS X-Timer: - - S1728237451.900381,VS0,VE1 + - S1736796066.658852,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -188,19 +188,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '8' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 99c4fd3c0fb2742db3c053229e07eaf315327861 + - 3bb9f2f1f9920ce3168ae0a83ac88f3f3b751475 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8277-DEN + - cache-bos4668-BOS X-Timer: - - S1728237451.929923,VS0,VE0 + - S1736796066.720933,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -265,19 +265,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 88d1f5ba66bcf16baa1e76794db2ab472e13fcc7 + - 3a96e12cc0e153011577c6cce6bf6038ac7eebfd X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8231-DEN + - cache-bos4671-BOS X-Timer: - - S1728237451.953693,VS0,VE0 + - S1736796066.786603,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:30 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:30 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -338,19 +338,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - fcb08d6e5ecf21651c60ae4d19a8cddce1c7c711 + - b5c75f7dc273d5ec0d65f86020cadd062fa80db2 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8280-DEN + - cache-bos4656-BOS X-Timer: - - S1728237451.977057,VS0,VE0 + - S1736796066.846666,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '5' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9b1ddbb7462fa1a66520f258945a17f34647664d + - 6005f88e5885734198362a9a8ed9ae5c04d1729c X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8235-DEN + - cache-bos4637-BOS X-Timer: - - S1728237451.000273,VS0,VE1 + - S1736796066.908188,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:05 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:05 GMT Source-Age: - - '4' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -478,19 +478,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 04c3eeb21d2ff9cb3d5c127e52afbce46d02b351 + - 44a26ee024ca3aa490355c1760455a50e4ad575b X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8230-DEN + - cache-bos4675-BOS X-Timer: - - S1728237451.024611,VS0,VE0 + - S1736796066.972459,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:06 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:06 GMT Source-Age: - - '4' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 882400afd838268b3a674e0a0e5f8e607bad5237 + - 60679ad0832112a57f109414440432b1363dda94 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8273-DEN + - cache-bos4646-BOS X-Timer: - - S1728237451.047194,VS0,VE1 + - S1736796066.038147,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/label/json-schema/schema.json response: @@ -652,11 +652,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:06 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:06 GMT Source-Age: - '0' Strict-Transport-Security: @@ -672,15 +672,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 28b4a8f4c549e79002df6a40bab2c728d504aa97 + - 9a1afcaa7ef725e6afd62c71d418af5c592d580c X-Frame-Options: - deny X-GitHub-Request-Id: - - 5920:1CA6FD:6232C9:6C6639:6702CF8A + - 3A09:3EAC62:6AB2F4:773B0D:678567A0 X-Served-By: - - cache-den8242-DEN + - cache-bos4656-BOS X-Timer: - - S1728237451.072337,VS0,VE109 + - S1736796066.094434,VS0,VE164 X-XSS-Protection: - 1; mode=block status: @@ -694,7 +694,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/version/json-schema/schema.json response: @@ -734,11 +734,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:06 GMT ETag: - '"3ad87031bb638da9b48582cbf730c047e1075960364c8fc992381ddf5467f296"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:06 GMT Source-Age: - '0' Strict-Transport-Security: @@ -754,15 +754,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 45125d3b465ff7c40d6b6d8e78f4b74ef1d00687 + - a5b42d39ab841927b8a44a50da86db992fd87f98 X-Frame-Options: - deny X-GitHub-Request-Id: - - EA2E:1CA6FD:6232F5:6C6663:6702CF8A + - FE63:3EFD68:70C823:7D57A0:678567A1 X-Served-By: - - cache-den8282-DEN + - cache-bos4631-BOS X-Timer: - - S1728237451.218161,VS0,VE154 + - S1736796066.326471,VS0,VE120 X-XSS-Protection: - 1; mode=block status: @@ -776,7 +776,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -869,13 +869,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:06 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:06 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -889,15 +889,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b1ff8d953ac6c87db285335d5fee6d9748e3f438 + - 1d7f25f576a81cfa53369ded488c531938284079 X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8271-DEN + - cache-bos4668-BOS X-Timer: - - S1728237451.408917,VS0,VE1 + - S1736796067.508500,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -911,7 +911,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -960,13 +960,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:06 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:06 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -980,15 +980,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6cc791a72060c17bfbe506c921de417574d33977 + - 22171bca1bf04cad1aea628d99424eae8cebdf28 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8250-DEN + - cache-bos4681-BOS X-Timer: - - S1728237451.447153,VS0,VE1 + - S1736796067.578806,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example52].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example52].yaml index 2fa9469a9..50061add4 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example52].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example52].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:06 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:06 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0c03ecd8e994f1f1ce7295c37a97080cc4814318 + - ac22baccbc41c5e83b7a576826f3e3402b3a9211 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8241-DEN + - cache-bos4640-BOS X-Timer: - - S1728237451.479802,VS0,VE1 + - S1736796067.658711,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:06 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:06 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -188,19 +188,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6fceb0f37c83b084b84cf5e8c394ba9d2dfb03c9 + - 320dc15564504d2876aa4552c391c26a7fa8ade1 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8223-DEN + - cache-bos4626-BOS X-Timer: - - S1728237452.508814,VS0,VE0 + - S1736796067.740953,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:06 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:06 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 45cb8cc51363060674a7be6ac26c6b05f0a89990 + - 927fc1d8f6696571fc916a2c0510fc67e4258342 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8265-DEN + - cache-bos4652-BOS X-Timer: - - S1728237452.531547,VS0,VE1 + - S1736796067.812318,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:06 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:06 GMT Source-Age: - - '5' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3bd048aff1f6c6adafee8fd881148c0359e22f69 + - f8e4abc0cc22c327d92407084d87c25a024e8765 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8269-DEN + - cache-bos4647-BOS X-Timer: - - S1728237452.563301,VS0,VE1 + - S1736796067.878927,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:06 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:06 GMT Source-Age: - - '5' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 47a0733d47f54f04267bb527d92787f88c1e4713 + - 12e5e7cb52405f16e15da517114ffb2b55b857db X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8243-DEN + - cache-bos4675-BOS X-Timer: - - S1728237452.614200,VS0,VE1 + - S1736796067.952225,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9c310eb467a6a41c23bb318344656d599a18d244 + - 7b5d4c71c66a52d615639bc8d8d8166070477cfc X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8262-DEN + - cache-bos4681-BOS X-Timer: - - S1728237452.641132,VS0,VE1 + - S1736796067.030473,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -557,19 +557,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 21e0702e17e2cac2bc2748f8e27285fa0d0c0acc + - 31ad834031e9b654c48710203fb6c1f8b57f901d X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8280-DEN + - cache-bos4684-BOS X-Timer: - - S1728237452.756291,VS0,VE1 + - S1736796067.108392,VS0,VE0 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example53].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example53].yaml index 62a170fa3..27f9e3403 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example53].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example53].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '6' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 24fb915756836a36936903f1e41dbd93c608c1f7 + - 7c19994152829087d4e7f78dd299aade33c0ac9b X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8278-DEN + - cache-bos4667-BOS X-Timer: - - S1728237452.799551,VS0,VE1 + - S1736796067.182290,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e2fd660ca179893a6d5d9b521a7b6e1447caadc5 + - 47e7339ac17c4e464fe7b355c8d453f895e06b1e X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8255-DEN + - cache-bos4651-BOS X-Timer: - - S1728237452.832174,VS0,VE1 + - S1736796067.255062,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5f2724d6525ce2431fc8bb79c498c06de6f3b954 + - 92d6d7cf8a46327a167619ce0ddec37ef96edfbe X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8236-DEN + - cache-bos4647-BOS X-Timer: - - S1728237452.859509,VS0,VE1 + - S1736796067.326772,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -338,19 +338,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 652612e12b0ff2f4e13d11a6b639f09626e6162f + - ebac5b6b601b133fefb2c9f6f8d50cc553d9062f X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8254-DEN + - cache-bos4676-BOS X-Timer: - - S1728237452.889010,VS0,VE0 + - S1736796067.402797,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d09ea1780860658cb63cf56d64fbd5712045f056 + - f1e7946f75edeb662c96d06b13eff6b53916306a X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8232-DEN + - cache-bos4656-BOS X-Timer: - - S1728237452.918059,VS0,VE1 + - S1736796067.478583,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '5' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 876006787555cbf30f9f1d61ac93547f7226885e + - 4b23dda85e4cedd4f4338fcda841c75197d5a497 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8242-DEN + - cache-bos4658-BOS X-Timer: - - S1728237452.946897,VS0,VE1 + - S1736796068.558800,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:31 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:31 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '5' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 537c29129a31a164d4beea7cb1c26cd883202c0d + - dc76aad5363318c7518961a87157cdc359ce514c X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8220-DEN + - cache-bos4645-BOS X-Timer: - - S1728237452.975674,VS0,VE1 + - S1736796068.636877,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example54].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example54].yaml index a07b88505..a9beb53f8 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example54].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example54].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '6' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 04647afb7ff524831a849757f369ae976d11c2ca + - a72619b8824b7ee00e3587d28e3c8085b0696988 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8266-DEN + - cache-bos4632-BOS X-Timer: - - S1728237452.010668,VS0,VE1 + - S1736796068.711390,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9fcd59a2fed87cb2ca46ca8e80ad94ab04ea32a9 + - e4b30acd2580dbb044c7afc297c95ac6e349badd X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8235-DEN + - cache-bos4641-BOS X-Timer: - - S1728237452.041543,VS0,VE0 + - S1736796068.778701,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '6' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 273983d5d788a3de43fadeba666b48a5cbed1114 + - 264d5440ec6ab3c791106c91f06c67d3927173ff X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8282-DEN + - cache-bos4627-BOS X-Timer: - - S1728237452.065687,VS0,VE1 + - S1736796068.840337,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '6' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9c24ed13b552b3f2f99e9fb0dc1396ad92718a32 + - cfe790ddcf6b09f8b7754ab3c50c106fe64fe549 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8239-DEN + - cache-bos4666-BOS X-Timer: - - S1728237452.093304,VS0,VE1 + - S1736796068.906245,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:07 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:07 GMT Source-Age: - - '6' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b1cc41b47c0adc9e2429efa427b3ca195836838b + - a83fa3778921f73e5b7da78eec562e33126fae29 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8280-DEN + - cache-bos4672-BOS X-Timer: - - S1728237452.124595,VS0,VE1 + - S1736796068.964616,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:08 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:08 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 25fc61bcc92a14038e69a7b25ba67b8fda64b457 + - 16faf8a0962c1984fb259d6e91fe5264f516b3ce X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8258-DEN + - cache-bos4646-BOS X-Timer: - - S1728237452.151469,VS0,VE1 + - S1736796068.032224,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:08 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:08 GMT Source-Age: - - '6' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e152df16e95e9cde452d90da8974f2a2f0694f8e + - 96274431c34e54c55d93f5499eb5f7c83e77cd3b X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8240-DEN + - cache-bos4659-BOS X-Timer: - - S1728237452.179335,VS0,VE1 + - S1736796068.088696,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example55].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example55].yaml index 6f60f5e6b..ff1c6a121 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example55].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example55].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:08 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:08 GMT Source-Age: - - '7' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b305060ca65c2755cab34ca9d9684a866bcda594 + - 958d631448440b955b11a1d6332478e8e5d22092 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8228-DEN + - cache-bos4639-BOS X-Timer: - - S1728237452.217568,VS0,VE1 + - S1736796068.152301,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:08 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:08 GMT Source-Age: - - '6' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d923c5343659e2103470f1b28025b3a62a3bcbab + - aa672a8acd04d4e08ad40b0d3d450ae18226e92f X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8245-DEN + - cache-bos4623-BOS X-Timer: - - S1728237452.252188,VS0,VE2 + - S1736796068.218471,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:08 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:08 GMT Source-Age: - - '6' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ee7f6132129b9ff20d89ac33be4ae0064004ebb1 + - 97d1a31e0015c9ed757ea1547748b488f7b3f987 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8270-DEN + - cache-bos4638-BOS X-Timer: - - S1728237452.280742,VS0,VE8 + - S1736796068.280582,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:08 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:08 GMT Source-Age: - - '6' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 096d053b0ef65931ae64f585374bce02e31d1810 + - cc2324dd5d4d1a4ee709656c8877e2217ff1fb21 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8268-DEN + - cache-bos4662-BOS X-Timer: - - S1728237452.320404,VS0,VE1 + - S1736796068.348632,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:08 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:08 GMT Source-Age: - - '6' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6339ab114bf113d710c1455f1f7a928e616355ea + - 4886c8231b7390bba119a8a2f3ff22c9d47323fa X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8224-DEN + - cache-bos4670-BOS X-Timer: - - S1728237452.351678,VS0,VE1 + - S1736796068.414912,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:08 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:08 GMT Source-Age: - - '6' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -478,19 +478,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0ebfdf43b605f963f4d13047ee150a825c235f79 + - 1a398795eedffd8c590a60c3bb0fe239d114a9b3 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8221-DEN + - cache-bos4683-BOS X-Timer: - - S1728237452.380973,VS0,VE0 + - S1736796068.498296,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:08 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:08 GMT Source-Age: - - '6' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -557,19 +557,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b80ccb0b8976534ffce8b3531def6486c5be8eef + - a39c8009dccda994e887f274ef55b8387cdc2880 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8239-DEN + - cache-bos4675-BOS X-Timer: - - S1728237452.410665,VS0,VE0 + - S1736796069.568475,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/sat/json-schema/schema.json response: @@ -619,13 +619,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:08 GMT ETag: - '"90408dbc0c6ce835205fcdbeeab881774f06517052d7c3dbcf6ba7c3ccced7eb"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:08 GMT Source-Age: - - '4' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -639,15 +639,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 12fac3517ea9c46f503feaf9622969eeaaec56cd + - de872e253862d0f47b80b46674b4c0512e9c0a1c X-Frame-Options: - deny X-GitHub-Request-Id: - - 8E2F:17ACE4:5F69A9:699BE3:6702CF85 + - A023:1B425:248B263:289B641:6785679D X-Served-By: - - cache-den8224-DEN + - cache-bos4649-BOS X-Timer: - - S1728237452.438321,VS0,VE1 + - S1736796069.638324,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -661,7 +661,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/sar/json-schema/schema.json response: @@ -736,11 +736,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:08 GMT ETag: - '"8546ced8239a833de59c3c153dab1ad77f34c598818da6695196e7449d680592"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:08 GMT Source-Age: - '0' Strict-Transport-Security: @@ -756,15 +756,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 99f83707c536c272cf39db64b52841d1abf5aac1 + - 1f5148d78790c380ece94c43185ac453e2e3b360 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:60063B:6A3BFA:6702CF8C + - 3B0A:304C26:2304CF7:277D88E:678567A3 X-Served-By: - - cache-den8238-DEN + - cache-bos4654-BOS X-Timer: - - S1728237452.470764,VS0,VE125 + - S1736796069.710235,VS0,VE147 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example56].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example56].yaml index 06f3bea08..37a2cb407 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example56].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example56].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '7' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 204d7f5ca88c58251f76ddbd66c31d2f86e22a99 + - 4b6189c2496cb158efc4b0db258a48ba586eb17b X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8268-DEN + - cache-bos4671-BOS X-Timer: - - S1728237453.641428,VS0,VE1 + - S1736796069.036680,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '7' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6f5b39fe591ecbf248e7f35738e6c7328cc31381 + - 5e5fde91aab5f06ab2fe044d6c8e498ecb152685 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8232-DEN + - cache-bos4670-BOS X-Timer: - - S1728237453.680329,VS0,VE1 + - S1736796069.107132,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '7' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -265,19 +265,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 26bfa8467e7a94b92a1c835f5c5980bf33cf285b + - 71aa3256f3ffc67071a85e436162649f62a90900 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8250-DEN + - cache-bos4678-BOS X-Timer: - - S1728237453.708805,VS0,VE1 + - S1736796069.177120,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '6' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -338,19 +338,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7c1d7f39ee5fd8f47614cf26a7cb77681e982ceb + - 8b4e9bb8ba7b9defeb700b412d403c8927f5d798 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8282-DEN + - cache-bos4675-BOS X-Timer: - - S1728237453.738162,VS0,VE0 + - S1736796069.246271,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '7' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7c1832384b9506d564fd16208079cacacc277e4d + - 617ed4283c47c732d754163cab18a16e249301bd X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8273-DEN + - cache-bos4661-BOS X-Timer: - - S1728237453.782277,VS0,VE1 + - S1736796069.312785,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '6' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -478,19 +478,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1c404f6e249d49b199d1ab59a9ad90bf7136c3d9 + - 9693e014fe9d0f827949c6e3de529e735756309d X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8276-DEN + - cache-bos4648-BOS X-Timer: - - S1728237453.811884,VS0,VE1 + - S1736796069.378329,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '6' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a7bef60943bc56aefd1a8f20369d7c68a99097de + - a1cca2a4b419964f735d7baef0cc7fcb6898cdbb X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8249-DEN + - cache-bos4679-BOS X-Timer: - - S1728237453.843633,VS0,VE1 + - S1736796069.450071,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/checksum/json-schema/schema.json response: @@ -621,13 +621,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"9bde8b6875408a186b283e6e3dd3edb01bc2b938e55a0491b0b7f4e06f0faccb"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '5' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -641,15 +641,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1927d286288a30872783e435bcd33d6fa606381c + - 778b65f0382c1e7bd9e69900d00e6e6fa71a7668 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:60035E:6A38E7:6702CF87 + - 6E3F:3103FF:24933D8:28A3CB6:6785679B X-Served-By: - - cache-den8261-DEN + - cache-bos4634-BOS X-Timer: - - S1728237453.872235,VS0,VE1 + - S1736796070.506838,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -663,7 +663,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/sar/json-schema/schema.json response: @@ -738,13 +738,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"8546ced8239a833de59c3c153dab1ad77f34c598818da6695196e7449d680592"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '0' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -758,15 +758,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5811a69f305a5d556c2217089f408a154d77b36b + - a2cbcf9bf38c45d49680f716b83e962a34e54b86 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:60063B:6A3BFA:6702CF8C + - 3B0A:304C26:2304CF7:277D88E:678567A3 X-Served-By: - - cache-den8224-DEN + - cache-bos4640-BOS X-Timer: - - S1728237453.913890,VS0,VE1 + - S1736796070.576717,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -780,7 +780,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/sat/json-schema/schema.json response: @@ -816,13 +816,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"90408dbc0c6ce835205fcdbeeab881774f06517052d7c3dbcf6ba7c3ccced7eb"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '5' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -836,15 +836,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7b425bc6ad97c56065106c802e3dd30670f8a9cb + - 845fc274d93481e152a5c7112601960683d63d4e X-Frame-Options: - deny X-GitHub-Request-Id: - - 8E2F:17ACE4:5F69A9:699BE3:6702CF85 + - A023:1B425:248B263:289B641:6785679D X-Served-By: - - cache-den8281-DEN + - cache-bos4651-BOS X-Timer: - - S1728237453.954878,VS0,VE1 + - S1736796070.650510,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example57].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example57].yaml index 5eabf144f..01597b9d2 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example57].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example57].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:32 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:32 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '7' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8f0e589e32900f49073be6f1efd28488894fb26d + - 7f80c31a87d80642f9fd5d8cfd2fc330c7bffa46 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8257-DEN + - cache-bos4677-BOS X-Timer: - - S1728237453.996944,VS0,VE1 + - S1736796070.730516,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '7' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 934e1d92b9903477f4601c70db830d4f697ab60b + - d3bc850d1ae0da74607cb915535932cb365161f1 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8267-DEN + - cache-bos4683-BOS X-Timer: - - S1728237453.028628,VS0,VE1 + - S1736796070.802636,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '7' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ae65687b5ccc9d2da13e5938e01587a422e23cd6 + - e0166a8522577292178ab171dcf707ddac206c73 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8263-DEN + - cache-bos4653-BOS X-Timer: - - S1728237453.073504,VS0,VE1 + - S1736796070.870336,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:09 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:09 GMT Source-Age: - - '7' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -338,19 +338,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 982422120e4691dfd0ba169d8451eb82811bf6f2 + - 3d688631e7f77a01c858a2e76cc630a8a5f023cf X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8279-DEN + - cache-bos4677-BOS X-Timer: - - S1728237453.106201,VS0,VE1 + - S1736796070.948843,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '7' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f4c34f194895c1975e6d83806fe36671ad95bb8e + - a975d094fb65d7d75dbfd068cf7d432c057e7ec4 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8255-DEN + - cache-bos4683-BOS X-Timer: - - S1728237453.137765,VS0,VE1 + - S1736796070.028578,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '7' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 89d4b1f38837761da1f824028c5a2317b38f680d + - 192648053667f86aa34199a78d38a6fe46e4d36b X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8265-DEN + - cache-bos4669-BOS X-Timer: - - S1728237453.168227,VS0,VE1 + - S1736796070.106921,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '7' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - aa53568230ffac826b9f60b17e59b03000b76ea5 + - f8e0dc7c3d6154d8a8370b5c432699136a356956 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8243-DEN + - cache-bos4626-BOS X-Timer: - - S1728237453.200291,VS0,VE1 + - S1736796070.177244,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/sat/json-schema/schema.json response: @@ -619,13 +619,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"90408dbc0c6ce835205fcdbeeab881774f06517052d7c3dbcf6ba7c3ccced7eb"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '5' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -639,15 +639,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - cc50c0fd06d6a6911b774596cc80be1024ff7b9e + - 822bc149e5956a6eb9a436f030fd86d1d059a178 X-Frame-Options: - deny X-GitHub-Request-Id: - - 8E2F:17ACE4:5F69A9:699BE3:6702CF85 + - A023:1B425:248B263:289B641:6785679D X-Served-By: - - cache-den8269-DEN + - cache-bos4620-BOS X-Timer: - - S1728237453.226788,VS0,VE1 + - S1736796070.246459,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -661,7 +661,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/view/json-schema/schema.json response: @@ -705,13 +705,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '5' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -725,15 +725,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0d5134ba0a79e5f9ed8c2bd61f6cb084e1641637 + - 0697044f19603851d742c0cd0e221f3f6cb51c33 X-Frame-Options: - deny X-GitHub-Request-Id: - - 5920:1CA6FD:6230EC:6C6434:6702CF88 + - D83B:37A04C:266BCDE:2A79B33:6785679E X-Served-By: - - cache-den8282-DEN + - cache-bos4639-BOS X-Timer: - - S1728237453.262127,VS0,VE1 + - S1736796070.324912,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example58].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example58].yaml index 6ab4317e2..4c9f18480 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example58].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example58].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '8' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7853b72eaf1916c7f370797ac82a98719dbd4553 + - 3b1c0a83cc23a27986968c898cc803f6c97d3905 X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8262-DEN + - cache-bos4650-BOS X-Timer: - - S1728237453.303197,VS0,VE1 + - S1736796070.398264,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -191,13 +191,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '8' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - eb7b450560664d3ea60c049f14d28400d9b5af7a + - 4f0b5cde7d94a400cbfe728ffca6ed7211719f0f X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8278-DEN + - cache-bos4638-BOS X-Timer: - - S1728237453.333398,VS0,VE34 + - S1736796070.472356,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -233,7 +233,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/scientific/json-schema/schema.json response: @@ -279,11 +279,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"13ff4323200a45e6acb12e649221282624758beb0a8f5b3a190160c2aa9d358a"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - '0' Strict-Transport-Security: @@ -299,15 +299,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - fd5cbb33fa526061f91abdd8ebac782e5090c95f + - d68a3f754dec18e515bfa6e5b91bf6d4f3755906 X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A18:1531AA:5E789F:68AA10:6702CF8C + - 255F:170804:6A7D19:770FBB:678567A4 X-Served-By: - - cache-den8227-DEN + - cache-bos4653-BOS X-Timer: - - S1728237453.397724,VS0,VE130 + - S1736796071.548244,VS0,VE98 X-XSS-Protection: - 1; mode=block status: @@ -321,7 +321,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -414,13 +414,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:33 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:33 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '8' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -430,19 +430,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 533901eee27007098bf4a4dc807db2029617b194 + - 9aff1416caafa341c56a6ad6f14390beacc7e174 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8257-DEN + - cache-bos4653-BOS X-Timer: - - S1728237454.578325,VS0,VE0 + - S1736796071.712453,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example59].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example59].yaml index 057aaf355..49313bed6 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example59].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example59].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '9' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4bc9617f84ead80c5a5ef6bb5771abe6c11ef555 + - e61b85b08175770fa1875cba9f258c5ff1cd8867 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8238-DEN + - cache-bos4645-BOS X-Timer: - - S1728237455.616706,VS0,VE1 + - S1736796071.786505,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '9' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -188,19 +188,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f552f7b8bdb2b9a9e9b9ca1a257f2824cd39e230 + - f15b25a66193654029f47ceb13faf2d078c4c4ba X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8276-DEN + - cache-bos4653-BOS X-Timer: - - S1728237455.650491,VS0,VE0 + - S1736796071.852666,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '9' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7c32836d0d12a36d58902f80d1ea2a19c2af066b + - 1e7169ef927bc0ebc68916e34f20dbff7b2e6ac9 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8278-DEN + - cache-bos4634-BOS X-Timer: - - S1728237455.681921,VS0,VE1 + - S1736796071.916913,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:10 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:10 GMT Source-Age: - - '9' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7247cddf457f90ae5ab6d0e367e256d25bfd016e + - f7fcf5d5c1ed55bce252966473a2c216553c559a X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8267-DEN + - cache-bos4635-BOS X-Timer: - - S1728237455.714610,VS0,VE1 + - S1736796071.984521,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '8' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -407,19 +407,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 44366d34fe79e09ccfe1eafa18970ec829e851b2 + - 30bed27fd024f1fb02b7eb0a1952c98e40472e7f X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8247-DEN + - cache-bos4670-BOS X-Timer: - - S1728237455.743522,VS0,VE1 + - S1736796071.050419,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '8' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4c15e244142d826946e45b0e61b9d69a2b064fd8 + - 43b49c22719aa58bb2e6cdf20800aca82e3679b2 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8273-DEN + - cache-bos4671-BOS X-Timer: - - S1728237455.772688,VS0,VE1 + - S1736796071.116607,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '8' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c07149eae5d842369145d43cfe9726cdf592c2d3 + - 5c85410e4e6cd32352612b99123feda1a2361688 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8279-DEN + - cache-bos4633-BOS X-Timer: - - S1728237455.805947,VS0,VE1 + - S1736796071.178419,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/scientific/json-schema/schema.json response: @@ -629,11 +629,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"13ff4323200a45e6acb12e649221282624758beb0a8f5b3a190160c2aa9d358a"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - '1' Strict-Transport-Security: @@ -649,15 +649,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e6964b455a563704c96e50a700795044e35268dd + - 1e23869d21b4fceb1e430a41b6396d87246841f8 X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A18:1531AA:5E789F:68AA10:6702CF8C + - 255F:170804:6A7D19:770FBB:678567A4 X-Served-By: - - cache-den8283-DEN + - cache-bos4622-BOS X-Timer: - - S1728237455.839347,VS0,VE1 + - S1736796071.240777,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -671,7 +671,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -764,13 +764,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '10' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -780,19 +780,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 708b0b5d3759b6dbb1cf40cfb1bfdf9688792c4b + - 74149f7f48b66961820a749c0e17d007fe251133 X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8283-DEN + - cache-bos4630-BOS X-Timer: - - S1728237455.873523,VS0,VE1 + - S1736796071.306628,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -806,7 +806,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -855,13 +855,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '10' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -871,19 +871,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f9d66246757311bf247b7fde2b2bb641e3358082 + - 3c4544974dfc050a0b1b266bccf70266aeabbf19 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8253-DEN + - cache-bos4668-BOS X-Timer: - - S1728237455.908193,VS0,VE1 + - S1736796071.362214,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -897,7 +897,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/checksum/json-schema/schema.json response: @@ -935,13 +935,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"9bde8b6875408a186b283e6e3dd3edb01bc2b938e55a0491b0b7f4e06f0faccb"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '7' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -955,15 +955,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 61b4ddf68f51b2eb67f91c0f5f4c0131e8e23a71 + - 022bcc6c620fed29decf392d812c686c40fcd209 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:60035E:6A38E7:6702CF87 + - 6E3F:3103FF:24933D8:28A3CB6:6785679B X-Served-By: - - cache-den8229-DEN + - cache-bos4664-BOS X-Timer: - - S1728237455.938591,VS0,VE1 + - S1736796071.428657,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example5].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example5].yaml index 411c743e0..0e15810a5 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example5].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example5].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/collection-spec/json-schema/collection.json response: @@ -89,13 +89,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:48 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:48 GMT Source-Age: - - '0' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4126c69f0ec6cf73d77774bb8fd56d10697fff11 + - 20b4ab76b2e0f8e978f5fb605565f1a319b3c5a5 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F + - E07A:36FFED:24EB88F:28FC1B8:6785678F X-Served-By: - - cache-den8243-DEN + - cache-bos4664-BOS X-Timer: - - S1728237441.724250,VS0,VE1 + - S1736796049.962746,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/catalog-spec/json-schema/catalog.json response: @@ -192,11 +192,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:49 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:49 GMT Source-Age: - '1' Strict-Transport-Security: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 818255ee852e806e4aaac9ba38dd6a04aa2e013b + - 29d72b60c10643f0f7e53c00de4d0cbd3e2f96ee X-Frame-Options: - deny X-GitHub-Request-Id: - - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F + - 0C7E:37A04C:266B584:2A79320:6785678E X-Served-By: - - cache-den8261-DEN + - cache-bos4660-BOS X-Timer: - - S1728237441.753625,VS0,VE1 + - S1736796049.040507,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -234,7 +234,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/asset/json-schema/schema.json response: @@ -271,11 +271,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:49 GMT ETag: - '"cffbb0036f526b016f24477e0ad674e75b6fefb89708ca796686de9d2e2a67ed"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:49 GMT Source-Age: - '0' Strict-Transport-Security: @@ -291,15 +291,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2fcc9ec6b43d92148ae5cb1283ee0e798b616c56 + - 31b6429eae0d58858848e3efc2e97afe3aba5e7f X-Frame-Options: - deny X-GitHub-Request-Id: - - 7944:1949AB:63C251:6DF50B:6702CF7F + - F063:3A423C:2590406:29A0D36:67856790 X-Served-By: - - cache-den8252-DEN + - cache-bos4670-BOS X-Timer: - - S1728237441.778872,VS0,VE138 + - S1736796049.110265,VS0,VE130 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example60].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example60].yaml index abe092919..4891a173e 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example60].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example60].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:34 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:34 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '10' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 41319cf2f1a2f67fba98cb966329cdf494f827b4 + - c3d3bb07ebe59b3adf31fa3547177883dc54c557 X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8283-DEN + - cache-bos4649-BOS X-Timer: - - S1728237455.985268,VS0,VE0 + - S1736796071.498441,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -191,13 +191,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '10' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -207,19 +207,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8608ef3dc481ddf03f2dff68f5b4261e17cb01de + - 08d14d79269c30cee2306964d3630fe910268347 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8255-DEN + - cache-bos4653-BOS X-Timer: - - S1728237455.012614,VS0,VE1 + - S1736796072.572269,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -233,7 +233,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/version/json-schema/schema.json response: @@ -273,13 +273,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"3ad87031bb638da9b48582cbf730c047e1075960364c8fc992381ddf5467f296"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '4' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -293,15 +293,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 33005abeeecb9e4a8113273981551f6077f245e8 + - de06cceb9e4ce14cfef538fb4e187fd3e1fa0ab7 X-Frame-Options: - deny X-GitHub-Request-Id: - - EA2E:1CA6FD:6232F5:6C6663:6702CF8A + - FE63:3EFD68:70C823:7D57A0:678567A1 X-Served-By: - - cache-den8265-DEN + - cache-bos4685-BOS X-Timer: - - S1728237455.038552,VS0,VE1 + - S1736796072.640616,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -315,7 +315,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -408,13 +408,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '9' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -428,15 +428,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8f1403a921f821357ed36216633f98ab91e7ba39 + - 20cc79e290505ad1caa82e0dbcae4a131dfdc31e X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8281-DEN + - cache-bos4633-BOS X-Timer: - - S1728237455.066009,VS0,VE1 + - S1736796072.712607,VS0,VE8 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example61].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example61].yaml index 135ff3ca8..0eaa868c9 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example61].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example61].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '9' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b6bfcd4d262da84a1d20f1e7b1e156f8d5889187 + - c8edc28323624bd6296bf91451f948f48f6d3b9e X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8230-DEN + - cache-bos4639-BOS X-Timer: - - S1728237455.100098,VS0,VE1 + - S1736796072.782693,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '9' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8a8968c0e77946a4d04b325bbf9bc3f5be39e1a1 + - 400f7b40d5e902607b51b798f19c8bf89a740c41 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8229-DEN + - cache-bos4622-BOS X-Timer: - - S1728237455.129733,VS0,VE1 + - S1736796072.850194,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '9' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 62c5f9ffdb5f7bbb4e727d172b3a885fad709a14 + - 31109aa99fbfa0a879e1b7a5e91547d845100ec9 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8239-DEN + - cache-bos4662-BOS X-Timer: - - S1728237455.154002,VS0,VE0 + - S1736796072.924290,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:11 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:11 GMT Source-Age: - - '9' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - fd2876ccfa4e221ce3210da238be2e3b6576d68a + - 2744236bb48e2ccdeee341b703e9d378a654d660 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8265-DEN + - cache-bos4624-BOS X-Timer: - - S1728237455.179603,VS0,VE1 + - S1736796072.988975,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '9' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 11c1fc8618995748207d142a92d83b77f74851f4 + - a22fff61da98946771b91f590f47331cbd255bb6 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8226-DEN + - cache-bos4634-BOS X-Timer: - - S1728237455.211391,VS0,VE1 + - S1736796072.050837,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '9' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1dde236524125ae5ba337fb753c1d8e596770703 + - 58060762d064ff4a4a08021c7b35e05f2225a1ee X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8245-DEN + - cache-bos4647-BOS X-Timer: - - S1728237455.240524,VS0,VE1 + - S1736796072.114650,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '9' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1c84f26c90234fe00ceb8f9ca770e0255a84acb9 + - 247a721331396561b260407509d80319a7d942eb X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8255-DEN + - cache-bos4683-BOS X-Timer: - - S1728237455.268442,VS0,VE1 + - S1736796072.176565,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/version/json-schema/schema.json response: @@ -623,13 +623,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"3ad87031bb638da9b48582cbf730c047e1075960364c8fc992381ddf5467f296"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '4' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -643,15 +643,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 15fbe2a64c567367afd309c204fe5c7106a84799 + - 01273ca5e23c585494f79137eb7f04c9b922761f X-Frame-Options: - deny X-GitHub-Request-Id: - - EA2E:1CA6FD:6232F5:6C6663:6702CF8A + - FE63:3EFD68:70C823:7D57A0:678567A1 X-Served-By: - - cache-den8231-DEN + - cache-bos4622-BOS X-Timer: - - S1728237455.299455,VS0,VE1 + - S1736796072.238449,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -665,7 +665,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/collection-spec/json-schema/collection.json response: @@ -758,13 +758,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '10' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -778,15 +778,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 16f576e2df5a917594b9573f627fed0515b628d0 + - 0b3bb26a02a8605687183e83042cb513d47ceba8 X-Frame-Options: - deny X-GitHub-Request-Id: - - F32C:1FF8D6:60FF37:6B3609:6702CF83 + - CD8E:3A423C:2590819:29A11AF:67856798 X-Served-By: - - cache-den8222-DEN + - cache-bos4676-BOS X-Timer: - - S1728237455.332844,VS0,VE1 + - S1736796072.308966,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -800,7 +800,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/catalog-spec/json-schema/catalog.json response: @@ -849,13 +849,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '10' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -869,15 +869,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 536383b3347137930d9bf1ace9d2a67c5af9c9a8 + - 3b7e0efcb5160ed79c7fca4d82a0f35422546414 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1BD9:3EDAE6:600238:6A37A3:6702CF84 + - 96DE:3E316F:263D69A:2A4DF8F:67856791 X-Served-By: - - cache-den8272-DEN + - cache-bos4626-BOS X-Timer: - - S1728237455.362581,VS0,VE1 + - S1736796072.377044,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example62].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example62].yaml index 52f8e8a6c..be2da8c7c 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example62].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example62].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '10' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e8925beeddb39e3e410ea9238491bb69c09ad375 + - b2b1bf9268548ac07f78a78416e24cc36129a40f X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8228-DEN + - cache-bos4648-BOS X-Timer: - - S1728237455.403071,VS0,VE0 + - S1736796072.442170,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '10' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -188,19 +188,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '16' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ff2e0d93a9605929231f9e46b7dbd5171dad1a40 + - 63d8b3c95de3f1dbc1f642b8b3d945d08925e57b X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8226-DEN + - cache-bos4646-BOS X-Timer: - - S1728237455.434132,VS0,VE1 + - S1736796073.508463,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:35 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:35 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '9' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b61364c9fe7e08f0b128dc4c93a6d1d2d1c1b6eb + - 226c377fb3980e5b1a5ca9ae2f3270c3e1a74ba9 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8280-DEN + - cache-bos4651-BOS X-Timer: - - S1728237455.459333,VS0,VE1 + - S1736796073.574298,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '10' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b627b8c0d2bcdb44f1a2b39ea33763a697b4cadc + - d41b31a31d3da9730f10b8f30f75d1236014b092 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8252-DEN + - cache-bos4623-BOS X-Timer: - - S1728237457.503429,VS0,VE1 + - S1736796073.638367,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '11' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0ee366bcf0d558bda2d14b821153509455df2401 + - 7da4ba4a8499a3848e42fd9d6b59280e596a9183 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8273-DEN + - cache-bos4681-BOS X-Timer: - - S1728237457.538899,VS0,VE0 + - S1736796073.704808,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '10' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ccc505e814523642e5e3eb75d4822a8dec91f500 + - 6fd0c7f553f8b391bbaa1bb21d9db7a82c3a7a83 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8228-DEN + - cache-bos4678-BOS X-Timer: - - S1728237457.571963,VS0,VE1 + - S1736796073.766770,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '10' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5ed5c2f15e0d201d016d4f269b89099e36cbcc64 + - 79b011f1324148def0088d0139b29a83c31d4083 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8278-DEN + - cache-bos4632-BOS X-Timer: - - S1728237457.606457,VS0,VE1 + - S1736796073.837171,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/sat/json-schema/schema.json response: @@ -619,13 +619,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"90408dbc0c6ce835205fcdbeeab881774f06517052d7c3dbcf6ba7c3ccced7eb"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '9' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -639,15 +639,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ddb56dc492b9ed030cedfbe73219f712c169a388 + - 6dd5afdf404b99ee691a2b7f7f42b7733b570ce2 X-Frame-Options: - deny X-GitHub-Request-Id: - - 8E2F:17ACE4:5F69A9:699BE3:6702CF85 + - A023:1B425:248B263:289B641:6785679D X-Served-By: - - cache-den8248-DEN + - cache-bos4628-BOS X-Timer: - - S1728237457.638193,VS0,VE1 + - S1736796073.906477,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -661,7 +661,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/view/json-schema/schema.json response: @@ -705,13 +705,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:12 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:12 GMT Source-Age: - - '8' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -725,15 +725,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9c5d08780c8a810ba5c542a10e7c983c515ad560 + - ce7ee6040dcada6a0c64ee7227e61e7ef7e65905 X-Frame-Options: - deny X-GitHub-Request-Id: - - 5920:1CA6FD:6230EC:6C6434:6702CF88 + - D83B:37A04C:266BCDE:2A79B33:6785679E X-Served-By: - - cache-den8228-DEN + - cache-bos4683-BOS X-Timer: - - S1728237457.673792,VS0,VE1 + - S1736796073.969997,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example63].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example63].yaml index 4dbeaafb1..1ed7685e8 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example63].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example63].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '11' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7310ee41f4a41d39cd4dc1e9b246beede8c450da + - 5f8f8f298b9801367d9f979fbfbeaa868a4d8419 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8244-DEN + - cache-bos4661-BOS X-Timer: - - S1728237457.714419,VS0,VE1 + - S1736796073.059851,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '11' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - fd7f5055faf40b942f580acfab5c7658c9cd9fac + - 2ba0b9f3ec20e88beead131bb0e2d53f23e4a3ba X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8249-DEN + - cache-bos4625-BOS X-Timer: - - S1728237457.747840,VS0,VE1 + - S1736796073.124718,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '11' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - fa68e123cdbfea449df0e0cd5276070396244594 + - d288f84cedfc2e04ce681432f77c71411252cc92 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8244-DEN + - cache-bos4641-BOS X-Timer: - - S1728237457.774088,VS0,VE1 + - S1736796073.192901,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '11' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3bc4e575eddbd168366c75ca678b127cf920f34b + - 02e9d30895b6bf8b280019ebebd94e3b4163c705 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8261-DEN + - cache-bos4637-BOS X-Timer: - - S1728237457.802044,VS0,VE1 + - S1736796073.250318,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '11' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 912519b7a0b3ab327d64092daa138a4b9d488d63 + - 7b64d7207584c507ca354191ea40f52ec63cb21f X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8255-DEN + - cache-bos4671-BOS X-Timer: - - S1728237457.828906,VS0,VE0 + - S1736796073.320920,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '10' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 258ffabbdd0e71a7cfbf36c0b9a2a072c1e35755 + - 6187d9bc0b21d93bf06d9004e2c989cd8825e75e X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8250-DEN + - cache-bos4657-BOS X-Timer: - - S1728237457.856805,VS0,VE1 + - S1736796073.384329,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '10' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3033bfabc42b0ec66593dfe82d0ade70b49fa8b5 + - 7b5c1d518f3b9313824857cc8de55c7136ec04e7 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8277-DEN + - cache-bos4652-BOS X-Timer: - - S1728237457.885018,VS0,VE0 + - S1736796073.452218,VS0,VE0 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example64].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example64].yaml index 0003d9537..778f93781 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example64].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example64].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '11' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 24646ba98b61eb10e4a53478aae0c34c69e0dcf9 + - 8c911d47ac919d5a26d8814d272864c716b98b43 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8280-DEN + - cache-bos4682-BOS X-Timer: - - S1728237457.916537,VS0,VE1 + - S1736796074.529160,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '11' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b67377c2fe2e8281b8ca2bb3264e607bf9175f2d + - e0666b12b6e5c5cc9b0b58a447a9355ec3ef6aa6 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8259-DEN + - cache-bos4684-BOS X-Timer: - - S1728237457.948176,VS0,VE1 + - S1736796074.610152,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:36 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:36 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '11' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -265,19 +265,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 17e16aaaa0b40010b37641ac9b4bcfb6974fbf0d + - 288738c18542d2356496033918f09e06ea01bab4 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8263-DEN + - cache-bos4623-BOS X-Timer: - - S1728237457.975195,VS0,VE0 + - S1736796074.680576,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:37 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:37 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '11' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -338,19 +338,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f896a43709e793f64c8054622f26b1b7547bb5b0 + - 7dad98fe7f12368559d54b5c0dd10c2c0466bb3b X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8237-DEN + - cache-bos4654-BOS X-Timer: - - S1728237457.000706,VS0,VE1 + - S1736796074.748410,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '11' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6ca36da95d181d228e82bbe7a4b6584d4ce55f96 + - 7d62152b68d8a4a0b0735c40108316bf65d76ffb X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8243-DEN + - cache-bos4675-BOS X-Timer: - - S1728237458.036702,VS0,VE0 + - S1736796074.826603,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '12' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ef6e5a6134b4154e91d7bca536c11bca72b9f6d7 + - 43eb4d54c99f3b2dc550130b3a77ae28d3a8ed13 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8266-DEN + - cache-bos4662-BOS X-Timer: - - S1728237458.068073,VS0,VE1 + - S1736796074.896768,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:13 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:13 GMT Source-Age: - - '12' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -557,19 +557,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2d446b3a26020ed3992f8505e49f146c2ebe27a5 + - 79fde8e28f2a636710ed301c08c00520e04a4f0b X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8245-DEN + - cache-bos4645-BOS X-Timer: - - S1728237458.152896,VS0,VE8 + - S1736796074.955047,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/eo/json-schema/schema.json response: @@ -636,13 +636,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '11' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -652,19 +652,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8fb70a810acf727a8137f339033908e3a76d8062 + - 49f1c9106814a3e143082c51171f6d5f1cce90ff X-Frame-Options: - deny X-GitHub-Request-Id: - - 2D51:A1DE:5F6E3B:69A130:6702CF81 + - 0C7E:37A04C:266BAF1:2A79924:67856799 X-Served-By: - - cache-den8251-DEN + - cache-bos4673-BOS X-Timer: - - S1728237458.191967,VS0,VE2 + - S1736796074.014570,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/view/json-schema/schema.json response: @@ -722,13 +722,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '10' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -738,19 +738,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6822a9cb81444e3264b258e11160660c831f9b4f + - 216d159642a44d9cf5b7ea445c384e9ae7b0c791 X-Frame-Options: - deny X-GitHub-Request-Id: - - 5920:1CA6FD:6230EC:6C6434:6702CF88 + - D83B:37A04C:266BCDE:2A79B33:6785679E X-Served-By: - - cache-den8282-DEN + - cache-bos4656-BOS X-Timer: - - S1728237458.229139,VS0,VE0 + - S1736796074.080663,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example65].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example65].yaml index 86a2f4c3b..3ec2ea0cc 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example65].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example65].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '13' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6125e2e2221d00d35507e820591a685af9c627e4 + - 44b1b8d56d7a3d3071793b53e82ec5469032184f X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8238-DEN + - cache-bos4645-BOS X-Timer: - - S1728237458.273866,VS0,VE0 + - S1736796074.157207,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '12' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9807a1faf4420935b997f578481a766cb083cf2a + - f6e3b4dd0cc438cdad9e46e987c59d8285e5aa0b X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8274-DEN + - cache-bos4628-BOS X-Timer: - - S1728237458.301886,VS0,VE1 + - S1736796074.224242,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '12' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -265,19 +265,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e7260691f9c3831c3f1490e3b4824e9f1f0d1aff + - 371440127865beae24961d61988846e5aeb538a8 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8259-DEN + - cache-bos4669-BOS X-Timer: - - S1728237458.327381,VS0,VE0 + - S1736796074.280531,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '12' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -338,19 +338,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1e61d23818389c62954eb3910aeb1d3b222bcf25 + - 2a05b800bc0702b7da628eb4946a9e1b0b5a0f8d X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8278-DEN + - cache-bos4627-BOS X-Timer: - - S1728237458.352541,VS0,VE1 + - S1736796074.340336,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '12' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 106fb87e8b611d8b713d86f936e616c3c3af8265 + - a28c0b2e9f6046f9ea409b065bda4e93686a5a31 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8248-DEN + - cache-bos4640-BOS X-Timer: - - S1728237458.379270,VS0,VE1 + - S1736796074.406617,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '12' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 775af1e51cdd0c6e87e48774f2c346b6e87b4bce + - 5c213b197fb8f5ffc30554c42025b1482b594e29 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8235-DEN + - cache-bos4680-BOS X-Timer: - - S1728237458.413080,VS0,VE3 + - S1736796074.464699,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '12' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d4239d5e1570b68bbcf7ce65f1b0989a1218a058 + - df2cb9400362d1116273968ba5d174807da61d98 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8247-DEN + - cache-bos4676-BOS X-Timer: - - S1728237458.445571,VS0,VE1 + - S1736796075.526832,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/eo/json-schema/schema.json response: @@ -636,13 +636,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '12' + - '15' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 07ce74455854b84725dc2a9eb8f81b39ca498ef7 + - 47b3f34bfb05dcddaa2d2dda4aa9fe24f57a2707 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2D51:A1DE:5F6E3B:69A130:6702CF81 + - 0C7E:37A04C:266BAF1:2A79924:67856799 X-Served-By: - - cache-den8248-DEN + - cache-bos4665-BOS X-Timer: - - S1728237458.475880,VS0,VE1 + - S1736796075.606797,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/view/json-schema/schema.json response: @@ -722,13 +722,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '10' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -742,15 +742,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4482a9b5f3cae653d1c057b3f68e1a635c107844 + - 1c23b92bfab2077f96f6b8f28905bc92c821eedf X-Frame-Options: - deny X-GitHub-Request-Id: - - 5920:1CA6FD:6230EC:6C6434:6702CF88 + - D83B:37A04C:266BCDE:2A79B33:6785679E X-Served-By: - - cache-den8222-DEN + - cache-bos4642-BOS X-Timer: - - S1728237459.510083,VS0,VE1 + - S1736796075.668731,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example66].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example66].yaml index f2808d38f..44cb1ff24 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example66].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example66].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '13' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2bfec1fbba003b65f76d5adc564419cb7922a838 + - c6d25d4c7efc83142fb731b393d75afeb095e4c9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8266-DEN + - cache-bos4660-BOS X-Timer: - - S1728237459.553583,VS0,VE0 + - S1736796075.738094,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '13' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - bc0fe7264e7dee4a0a285e81b02d0c7d7a7ef2b8 + - e10b3205b89fa3a864c41ed6536f8ccd96a83ada X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8279-DEN + - cache-bos4677-BOS X-Timer: - - S1728237459.582904,VS0,VE0 + - S1736796075.818895,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '13' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7f74fe28fca1c73c409112f2322f13017423d7dd + - 4b84a830199f14775e5b56e3b8bb25b8b250b171 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8226-DEN + - cache-bos4621-BOS X-Timer: - - S1728237459.609755,VS0,VE1 + - S1736796075.876709,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:14 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:14 GMT Source-Age: - - '13' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4a988c6c47630cf97a126c8f32109cb68712855e + - 6752ed27e49e4b4380ee23a2defac24a27ceaa6a X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8250-DEN + - cache-bos4668-BOS X-Timer: - - S1728237459.639333,VS0,VE1 + - S1736796075.944382,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '12' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 080addd9d23a4355e4c505d656f3f1940d2e5325 + - 04d67c8f60b2ef7244af651655d91b11259ae4d9 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8245-DEN + - cache-bos4647-BOS X-Timer: - - S1728237459.668875,VS0,VE1 + - S1736796075.008305,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '12' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -478,19 +478,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - decfef4bba07a64b275d5e71515335243f4cc7b9 + - a58a73b2878bd0db736cf1f6590c36114bf9ffe9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8276-DEN + - cache-bos4655-BOS X-Timer: - - S1728237459.698710,VS0,VE0 + - S1736796075.066679,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '12' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -557,19 +557,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 96b65627929c630f6e0bc7b9eb4de049628a81af + - 5f8e08a09264c07e6e08cc345e08eba216b9db82 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8261-DEN + - cache-bos4632-BOS X-Timer: - - S1728237459.726292,VS0,VE1 + - S1736796075.125001,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/eo/json-schema/schema.json response: @@ -636,13 +636,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '12' + - '16' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1fb6a3348303457f714f7e9f91a35077b3116890 + - 51004eb3793c2816f0deb115e877bf9f734885c0 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2D51:A1DE:5F6E3B:69A130:6702CF81 + - 0C7E:37A04C:266BAF1:2A79924:67856799 X-Served-By: - - cache-den8267-DEN + - cache-bos4647-BOS X-Timer: - - S1728237459.756094,VS0,VE1 + - S1736796075.188305,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/view/json-schema/schema.json response: @@ -722,13 +722,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '10' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -742,15 +742,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8a751d935a6520b597875c7121a07a5faaa722ee + - 03a7107c73f344417ac63a5aae78d4412412a9cf X-Frame-Options: - deny X-GitHub-Request-Id: - - 5920:1CA6FD:6230EC:6C6434:6702CF88 + - D83B:37A04C:266BCDE:2A79B33:6785679E X-Served-By: - - cache-den8280-DEN + - cache-bos4621-BOS X-Timer: - - S1728237459.789529,VS0,VE1 + - S1736796075.256429,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example67].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example67].yaml index 5569bff24..ecf30dcdd 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example67].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example67].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 19899a7a2f9d9d7509c33483d3a84ee96337e4bd + - fd285b8faf0e7f1e199eccd61ef94499bfa277ee X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8241-DEN + - cache-bos4648-BOS X-Timer: - - S1728237459.833131,VS0,VE0 + - S1736796075.320200,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -188,19 +188,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e9016cbe6e1897d756ea216dc91d4755db8b8de1 + - 65c78f56fd3becc1b0941285a0ae441ca4fc5e23 X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8226-DEN + - cache-bos4633-BOS X-Timer: - - S1728237459.863463,VS0,VE0 + - S1736796075.396069,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '13' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -265,19 +265,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6133ffa623014e79dfb3d2e59b171f4e78f9125d + - 579db0cd22909bbb5cacaca6a913593fdc105778 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8259-DEN + - cache-bos4668-BOS X-Timer: - - S1728237459.886612,VS0,VE0 + - S1736796075.466196,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '13' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a50f49c8a62986bccf788f4bed9b2dbb36719a1d + - 4c6cf0094829a71837a39a5db98761ad116acf1c X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8270-DEN + - cache-bos4639-BOS X-Timer: - - S1728237459.912508,VS0,VE1 + - S1736796076.524374,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '13' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 53acbbd43abba5516a40e9f22c3c5e031a10c417 + - 17cd93e29b79efc99d72d131dcc20bd9c39b794f X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8274-DEN + - cache-bos4643-BOS X-Timer: - - S1728237459.937340,VS0,VE0 + - S1736796076.582736,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '12' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -478,19 +478,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b5daa1f92478125dbcea82d4dfc41ad0650ab17d + - 2d3d1b0f3d7073c63b9dfb3aabee1d24a3d43e9b X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8273-DEN + - cache-bos4672-BOS X-Timer: - - S1728237459.961849,VS0,VE0 + - S1736796076.649323,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:38 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:38 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '12' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - efe138d653a55ef1bf1de8fc15c94cc2358c2b4b + - 87594a197e11ec5fd76bb1a6d5ca58dea4644cfb X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8274-DEN + - cache-bos4658-BOS X-Timer: - - S1728237459.984078,VS0,VE1 + - S1736796076.721090,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/eo/json-schema/schema.json response: @@ -636,13 +636,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '12' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6b767d6155a57bc356f3e65e77b04795b12034fa + - 1af1a6f0eaed0a3d8fb73d36094ea21cb9762b46 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2D51:A1DE:5F6E3B:69A130:6702CF81 + - 0C7E:37A04C:266BAF1:2A79924:67856799 X-Served-By: - - cache-den8265-DEN + - cache-bos4643-BOS X-Timer: - - S1728237459.007883,VS0,VE1 + - S1736796076.776287,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/view/json-schema/schema.json response: @@ -722,13 +722,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '10' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -742,15 +742,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3a38aecbb1e1d30c5f49d12ee28996d58b6f260e + - 90ecc1eab5a12ae22a49172a7a266cd3ecf9659b X-Frame-Options: - deny X-GitHub-Request-Id: - - 5920:1CA6FD:6230EC:6C6434:6702CF88 + - D83B:37A04C:266BCDE:2A79B33:6785679E X-Served-By: - - cache-den8229-DEN + - cache-bos4635-BOS X-Timer: - - S1728237459.034115,VS0,VE1 + - S1736796076.849014,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example68].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example68].yaml index f3cb8929b..e61d1fe3f 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example68].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example68].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '14' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 296f83dd5acfed290ae034aa6d124d96dc81d464 + - 66269d255845483c765fb878f323d26c2adda9c1 X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8267-DEN + - cache-bos4641-BOS X-Timer: - - S1728237459.070154,VS0,VE0 + - S1736796076.924754,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:15 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:15 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a26171419174a3e1a8a16701d77655e676bc932e + - 8d9fb662b048fe27751e576c5f7f93473d8be00f X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8243-DEN + - cache-bos4645-BOS X-Timer: - - S1728237459.097153,VS0,VE1 + - S1736796076.994830,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4ee74f152e6d26f58f476568e5f136de551f45ce + - 74c2b8345c2c308284400cc95263b4a1afe3804a X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8255-DEN + - cache-bos4667-BOS X-Timer: - - S1728237459.120661,VS0,VE1 + - S1736796076.058368,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 60d3fc662e4a422a67c593ad50700ea039298e04 + - c1ff44eb738af6d384f651ff343b9105833231e0 X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8267-DEN + - cache-bos4676-BOS X-Timer: - - S1728237459.147980,VS0,VE0 + - S1736796076.126969,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -407,19 +407,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '19' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 632721c12e58a8ff62d0c4ce562901acb511daf6 + - 27c6ccfe110d04d8cb90a7f2a13062fd5f3113a8 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8249-DEN + - cache-bos4666-BOS X-Timer: - - S1728237459.173807,VS0,VE1 + - S1736796076.200504,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -478,19 +478,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e5d9e1945050d9825a3c268439cc1f27be21375e + - 41818f30b42ffd9801b64c78b6e4d8309de489a1 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8252-DEN + - cache-bos4620-BOS X-Timer: - - S1728237459.200489,VS0,VE0 + - S1736796076.277415,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '17' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - cdc25799805d9e462d226691a4c91dee5b582e93 + - f174d68e75b5802bccc6f22fb8e373e57881b458 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8229-DEN + - cache-bos4649-BOS X-Timer: - - S1728237459.228781,VS0,VE1 + - S1736796076.332529,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example69].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example69].yaml index f16ad8fb7..553126fab 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example69].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example69].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/item.json response: @@ -100,13 +100,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '14' + - '19' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '4' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - cb0218380b9d2a84167eaced51ed650887d57e9b + - 39c107c4794949ed5620f9b98de6e5e7c5b2328d X-Frame-Options: - deny X-GitHub-Request-Id: - - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 + - 5F23:38BE00:25BAD67:29CB6F9:67856799 X-Served-By: - - cache-den8274-DEN + - cache-bos4639-BOS X-Timer: - - S1728237459.263120,VS0,VE1 + - S1736796076.408971,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/basics.json response: @@ -172,13 +172,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '19' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1cb4ccbe221b4bf95f38003ae0c4c3c97b7078cc + - d96e887dac6c15a23d1f4a82144e5cea33131b1b X-Frame-Options: - deny X-GitHub-Request-Id: - - C5EC:3EDAE6:600288:6A3805:6702CF84 + - CD64:37A04C:266BA42:2A7985F:67856799 X-Served-By: - - cache-den8254-DEN + - cache-bos4657-BOS X-Timer: - - S1728237459.293868,VS0,VE1 + - S1736796076.481195,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/datetimerange.json response: @@ -249,13 +249,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -265,19 +265,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f888751e7d6d2b55ff829ad079496555c440b53b + - 930e5bbea9c37a5b932270aca1af20f29320deb4 X-Frame-Options: - deny X-GitHub-Request-Id: - - A5C5:183A6B:5EB34C:68E0F5:6702CF82 + - ED10:3722A2:2643B54:2A544F2:67856799 X-Served-By: - - cache-den8225-DEN + - cache-bos4647-BOS X-Timer: - - S1728237459.320750,VS0,VE2 + - S1736796077.558878,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/instrument.json response: @@ -322,13 +322,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -338,19 +338,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0118f88cffb3869978a3df4df63e9e3fa1abbf6b + - f9dd3a975abfa2f26960deb82e7b00acf8145ded X-Frame-Options: - deny X-GitHub-Request-Id: - - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 + - 142D:35F504:2551DC2:2962778:67856799 X-Served-By: - - cache-den8239-DEN + - cache-bos4686-BOS X-Timer: - - S1728237459.349905,VS0,VE0 + - S1736796077.622330,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/licensing.json response: @@ -391,13 +391,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '19' Strict-Transport-Security: - max-age=31536000 Vary: @@ -407,19 +407,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 499e95e918274f13546b470607e9a46f2d2a6338 + - 95abacd259c81b319d0214745e7792c558632542 X-Frame-Options: - deny X-GitHub-Request-Id: - - BE0E:1949AB:63C641:6DF947:6702CF85 + - 93A7:35F504:2551DE1:296279A:6785679A X-Served-By: - - cache-den8270-DEN + - cache-bos4643-BOS X-Timer: - - S1728237459.379421,VS0,VE46 + - S1736796077.686783,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/metadata.json response: @@ -462,13 +462,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -478,19 +478,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 68562b58191229e70f259e09b1ff743aebb72dab + - 019d61ff4acdb4787e35a243fff8e76883921345 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1CA3:C353F:5E158E:6847D9:6702CF86 + - 7C06:3D78BA:2639F0D:2A4A81D:6785679A X-Served-By: - - cache-den8278-DEN + - cache-bos4620-BOS X-Timer: - - S1728237459.456645,VS0,VE1 + - S1736796077.746849,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/item-spec/json-schema/provider.json response: @@ -541,13 +541,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0fb4c5cce3bd25bd7daab2d26528dbe5b64ee666 + - 425c95ddd48b5da2c5f76cf0c8ef26962a85f4af X-Frame-Options: - deny X-GitHub-Request-Id: - - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 + - 8378:3ACBEC:25BD3F4:29CDD93:67856799 X-Served-By: - - cache-den8276-DEN + - cache-bos4659-BOS X-Timer: - - S1728237459.492922,VS0,VE0 + - S1736796077.818144,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/eo/json-schema/schema.json response: @@ -636,13 +636,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '13' + - '18' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 489d0ddab1a8d99ceb65a85236005a92da10ea30 + - 4c21671271ee03a7b330b56d70592bbe8f5d58db X-Frame-Options: - deny X-GitHub-Request-Id: - - 2D51:A1DE:5F6E3B:69A130:6702CF81 + - 0C7E:37A04C:266BAF1:2A79924:67856799 X-Served-By: - - cache-den8223-DEN + - cache-bos4644-BOS X-Timer: - - S1728237460.521057,VS0,VE1 + - S1736796077.892757,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.9.0/extensions/view/json-schema/schema.json response: @@ -722,13 +722,13 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:16 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Sun, 06 Oct 2024 18:02:39 GMT + - Mon, 13 Jan 2025 19:26:16 GMT Source-Age: - - '11' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -742,15 +742,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0be7be68ddd2590ec39b57ef4e30039d52c67db0 + - 56dec3bda1e90902291f583b701eb05c1949df2d X-Frame-Options: - deny X-GitHub-Request-Id: - - 5920:1CA6FD:6230EC:6C6434:6702CF88 + - D83B:37A04C:266BCDE:2A79B33:6785679E X-Served-By: - - cache-den8255-DEN + - cache-bos4630-BOS X-Timer: - - S1728237460.559004,VS0,VE1 + - S1736796077.962982,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example6].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example6].yaml index 59a9469ab..249f98059 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example6].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example6].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,11 +112,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:20 GMT + - Mon, 13 Jan 2025 19:20:49 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:20 GMT + - Mon, 13 Jan 2025 19:25:49 GMT Source-Age: - '1' Strict-Transport-Security: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 85402ca8a612047e8fa215192dba6bfbc52f0af1 + - a481491217a7810c19566098b347d7107b8450c5 X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8264-DEN + - cache-bos4666-BOS X-Timer: - - S1728237441.958674,VS0,VE1 + - S1736796049.384632,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/checksum/json-schema/schema.json response: @@ -198,11 +198,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:49 GMT ETag: - '"ceed674cee48a43076989957b8a4f96d8acba3f52df1d52a3745e28225923aac"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:49 GMT Source-Age: - '0' Strict-Transport-Security: @@ -218,15 +218,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9be95ffe4c832f98970a35788b0eab507c5fe41e + - 3602e6812ce57b6d79ad9287acd85f6454bf280b X-Frame-Options: - deny X-GitHub-Request-Id: - - 4D1E:183A6B:5EAFC0:68DD36:6702CF80 + - FFEC:398F81:2754DC3:2B657F5:67856791 X-Served-By: - - cache-den8254-DEN + - cache-bos4622-BOS X-Timer: - - S1728237441.987505,VS0,VE146 + - S1736796049.460057,VS0,VE149 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example70].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example70].yaml index 5a77c40c7..ef3c3e25c 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example70].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example70].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:17 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -75,15 +75,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - b1f406ab5948a8781206ce71cf109668871f37b2 + - 80f5982d8e1579549b89044ae817f8f3df232fc5 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8221-DEN + - cache-bos4654-BOS X-Timer: - - S1728237460.604346,VS0,VE75 + - S1736796077.076914,VS0,VE31 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example71].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example71].yaml index f06bc0d27..79426335a 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example71].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example71].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:17 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -75,15 +75,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 49ecfffdd4dfa61ee0237e369deb8dec430ab361 + - 6500157fbd76405f3939b1428b3f8fc0ffd2dff3 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8270-DEN + - cache-bos4680-BOS X-Timer: - - S1728237460.725657,VS0,VE1 + - S1736796077.198765,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example72].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example72].yaml index 3cfe663a6..e59569997 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example72].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example72].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:17 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -115,17 +115,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 4f2d256701c0fb28a6ed94f17e32c650e2ccd84e + - 672ac51e23d112e00950b42f5402615251a1249f X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8272-DEN + - cache-bos4679-BOS X-Timer: - - S1728237460.767473,VS0,VE61 + - S1736796077.294376,VS0,VE41 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -139,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -191,7 +189,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:17 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -207,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0aaee0aab10ac68a3e802e8c709832ace80a29fe + - 67d0ea9fe5ef4eb2f014e2d7ead585d6d4fe44b9 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8250-DEN + - cache-bos4676-BOS X-Timer: - - S1728237460.865505,VS0,VE6 + - S1736796077.420694,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example73].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example73].yaml index b489904e4..fd2f03cce 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example73].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example73].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:17 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -115,17 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f8f1b0aee532cdf2b38b93d3eadd39a28e76f1c4 + - ee79569a99164ae47c0f9e108b4c3179f196df17 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8275-DEN + - cache-bos4655-BOS X-Timer: - - S1728237460.916266,VS0,VE1 + - S1736796078.510585,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -139,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +179,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '1' Cache-Control: - max-age=600 Connection: @@ -191,7 +189,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:39 GMT + - Mon, 13 Jan 2025 19:21:17 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -207,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 97b61cd1f21c06afdbcc19f122792f8cb999477b + - f3036fafd8eae3d9d56c3113d9927065273ff6c2 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8231-DEN + - cache-bos4636-BOS X-Timer: - - S1728237460.961107,VS0,VE2 + - S1736796078.616205,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example74].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example74].yaml index f21c797fc..c2faade64 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example74].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example74].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '46' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:40 GMT + - Mon, 13 Jan 2025 19:21:17 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -111,19 +111,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '1' X-Fastly-Request-ID: - - 91ed4c953ca5e3f7d23d550c5bb87b3bb12432ca + - 0e23091a3537569a807c03df17fbcf1e44520eec X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8250-DEN + - cache-bos4636-BOS X-Timer: - - S1728237460.997759,VS0,VE69 + - S1736796078.718241,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '46' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:40 GMT + - Mon, 13 Jan 2025 19:21:17 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -178,21 +178,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '1' X-Fastly-Request-ID: - - ce0640e71a50d905400b29142f05c3e450db22b3 + - 78297979985b7ab1aa50f6724e6cb9c43ece515f X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8252-DEN + - cache-bos4684-BOS X-Timer: - - S1728237460.105730,VS0,VE58 + - S1736796078.813995,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '46' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:40 GMT + - Mon, 13 Jan 2025 19:21:17 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -277,19 +275,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '1' X-Fastly-Request-ID: - - 15bddee8450efa07c1a135de14e606fa912b52e2 + - 2452b71b6f5bf5b7e88818bb7b4b1fb03cbbe071 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8227-DEN + - cache-bos4638-BOS X-Timer: - - S1728237460.200197,VS0,VE63 + - S1736796078.906710,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '45' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:40 GMT + - Mon, 13 Jan 2025 19:21:17 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -348,19 +346,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '1' X-Fastly-Request-ID: - - 20575b9510a984a6153027b3826a300075c36067 + - 6c9c29c5738314fc125ffb6133375a2e0a7fd7ed X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8281-DEN + - cache-bos4643-BOS X-Timer: - - S1728237460.297142,VS0,VE58 + - S1736796078.994436,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '45' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:40 GMT + - Mon, 13 Jan 2025 19:21:18 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -414,21 +412,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '1' X-Fastly-Request-ID: - - 4c6dc6d0f59d522dedb161a799d0a2d46b5462fc + - 86d7d542963b51e3056264ed4be7dd8d6589405b X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8282-DEN + - cache-bos4620-BOS X-Timer: - - S1728237460.388567,VS0,VE59 + - S1736796078.088646,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '45' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:40 GMT + - Mon, 13 Jan 2025 19:21:18 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -490,19 +486,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '1' X-Fastly-Request-ID: - - e44a7633e5643a4affa9e50adb4fef776c9dfbbc + - b9b67ebaa2fc3ecbe080a7a8ea9191bc9203748e X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8266-DEN + - cache-bos4670-BOS X-Timer: - - S1728237460.482871,VS0,VE58 + - S1736796078.170069,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/checksum/json-schema/schema.json response: @@ -571,7 +567,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:40 GMT + - Mon, 13 Jan 2025 19:21:18 GMT ETag: - '"66e1651c-939"' Last-Modified: @@ -587,17 +583,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 7bc5572b9536bbc5ee3253c53b9367b75351c307 + - bf250947220abbd6821378a4596f53438eda9d45 X-GitHub-Request-Id: - - 7DC6:215EAC:3D1DA0A:437D7E0:6702CF93 + - F6E6:77CFF:44281E9:4D0100A:678567AE X-Served-By: - - cache-den8282-DEN + - cache-bos4667-BOS X-Timer: - - S1728237461.569904,VS0,VE67 + - S1736796078.254264,VS0,VE45 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:18 GMT x-proxy-cache: - MISS status: @@ -611,7 +605,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -663,7 +657,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:40 GMT + - Mon, 13 Jan 2025 19:21:18 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -679,15 +673,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4873835cd474b5f15c8a53319619cc9dcd1464b7 + - e21bdead2d9b1e5ced9b42a2e32b2169690480f7 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8233-DEN + - cache-bos4657-BOS X-Timer: - - S1728237461.679649,VS0,VE2 + - S1736796078.378253,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -701,7 +695,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -793,7 +787,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:40 GMT + - Mon, 13 Jan 2025 19:21:18 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -809,17 +803,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1944c97d65a22666c4dc8d8be9a9566b3fbc01b1 + - a4d3ab82c1d3f31b7a3c65b81c54a7b57e58422f X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8243-DEN + - cache-bos4640-BOS X-Timer: - - S1728237461.716458,VS0,VE1 + - S1736796078.473054,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example75].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example75].yaml index 2d800f9f5..ca895f434 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example75].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example75].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '1' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:41 GMT + - Mon, 13 Jan 2025 19:21:18 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -115,17 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e60deb418cf2a4662f26a7f0c9502b2cd903b71f + - d154e734cad6d4517e3ae9a0ced929f95fca2e45 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8259-DEN + - cache-bos4652-BOS X-Timer: - - S1728237462.768037,VS0,VE1 + - S1736796079.546673,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -139,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +179,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '2' Cache-Control: - max-age=600 Connection: @@ -191,7 +189,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:42 GMT + - Mon, 13 Jan 2025 19:21:18 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -207,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 7b31cdac23ba0a05ae3022df6267dc2bd71b0e72 + - 2f21a4867e2ecdca684abfaf51c0eb967a35bcb4 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8273-DEN + - cache-bos4623-BOS X-Timer: - - S1728237463.818074,VS0,VE2 + - S1736796079.646387,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -229,7 +227,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/collection-assets/json-schema/schema.json response: @@ -262,7 +260,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:42 GMT + - Mon, 13 Jan 2025 19:21:18 GMT ETag: - '"66e1651c-3ab"' Last-Modified: @@ -278,15 +276,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - a59db248ba27c8e03ccf6bd63fb4f22817134a56 + - a04b0810590c248aa42993c14c330d00d7408760 X-GitHub-Request-Id: - - AAFD:3E300:36AE5B9:3D0E07F:6702CF95 + - D5A1:13E969:4305E05:4BDE620:678567AE X-Served-By: - - cache-den8247-DEN + - cache-bos4668-BOS X-Timer: - - S1728237463.854031,VS0,VE68 + - S1736796079.734234,VS0,VE22 expires: - - Sun, 06 Oct 2024 18:07:42 GMT + - Mon, 13 Jan 2025 19:31:18 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -300,7 +300,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -382,7 +382,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '47' Cache-Control: - max-age=600 Connection: @@ -392,7 +392,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:42 GMT + - Mon, 13 Jan 2025 19:21:18 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -408,15 +408,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1a9a20098422476398e24f65388b1f787cdaf728 + - 4e4bf0ecf53141da257da8abed4aba4488c136b5 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8281-DEN + - cache-bos4655-BOS X-Timer: - - S1728237463.956515,VS0,VE2 + - S1736796079.838634,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example76].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example76].yaml index 9110cf62f..67a535667 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example76].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example76].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '2' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:43 GMT + - Mon, 13 Jan 2025 19:21:18 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -115,17 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1491a98d0adc83510ec4ab1ef05e84030e1cd513 + - 4222e09890fd89e8ddac030db037d10df4ef14cd X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8236-DEN + - cache-bos4681-BOS X-Timer: - - S1728237463.002740,VS0,VE1 + - S1736796079.936359,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -139,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +179,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '2' Cache-Control: - max-age=600 Connection: @@ -191,7 +189,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:43 GMT + - Mon, 13 Jan 2025 19:21:19 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -207,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 546bf1f126286e9003c75ca8e33951586e304ccd + - 363d5096bf2479e67c598f0bebccc11084b35cf4 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8232-DEN + - cache-bos4661-BOS X-Timer: - - S1728237463.033509,VS0,VE2 + - S1736796079.020419,VS0,VE4 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -229,7 +227,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/datacube/json-schema/schema.json response: @@ -350,7 +348,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:43 GMT + - Mon, 13 Jan 2025 19:21:19 GMT ETag: - '"66e1651c-1d66"' Last-Modified: @@ -366,15 +364,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - f27278b779aaa482320c37b8349bacd88dcc9a0b + - 7e1ee991145ef454ec9fa3cfde588eef10ad7b21 X-GitHub-Request-Id: - - 7AFA:687EA:3798A5F:3DF8423:6702CF95 + - B900:17F0E3:438D158:4C65B9D:678567AE X-Served-By: - - cache-den8229-DEN + - cache-bos4682-BOS X-Timer: - - S1728237463.061044,VS0,VE67 + - S1736796079.113046,VS0,VE29 expires: - - Sun, 06 Oct 2024 18:07:43 GMT + - Mon, 13 Jan 2025 19:31:19 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -388,7 +388,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -470,7 +470,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '47' Cache-Control: - max-age=600 Connection: @@ -480,7 +480,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:19 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -496,15 +496,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 761320c4990f9b0d481b4f88ce56c8222ef5fcbc + - ddeaf18e270a3ebefdf662fbfe1536a4cfc1a736 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8225-DEN + - cache-bos4645-BOS X-Timer: - - S1728237464.170700,VS0,VE1 + - S1736796079.248574,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example77].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example77].yaml index 8e3fa1bb0..0faba9a11 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example77].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example77].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '47' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:19 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 930b2807a27696368eaf27903e28372df43ead53 + - d355aaf0634f7de03bb9e163c1866c4fdc53d4df X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8225-DEN + - cache-bos4679-BOS X-Timer: - - S1728237464.214545,VS0,VE1 + - S1736796079.332685,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '47' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:19 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - befbdc930d7c82ae9860c2400246d27a4b505b03 + - 3017c2be2cf009dc1bebd6d26a563b82678cfaea X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8277-DEN + - cache-bos4654-BOS X-Timer: - - S1728237464.248047,VS0,VE2 + - S1736796079.420220,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '47' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:19 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2d91719fd7493f1204a44ffe053b5e72b7b83ddb + - ceef47fbcd2d7a58119b81471cdee7a14a259db0 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8250-DEN + - cache-bos4622-BOS X-Timer: - - S1728237464.271612,VS0,VE1 + - S1736796080.508822,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '47' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:19 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f4c6cbea16c44fa26c5015d9806421c9efd34c39 + - a97a2201d6fde0b35f79689ac0ae515fd8688fd8 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8223-DEN + - cache-bos4662-BOS X-Timer: - - S1728237464.360485,VS0,VE2 + - S1736796080.598363,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '47' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:19 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c2e6187bc0bc3c2ab5e37a5703f042279d2f574f + - 87419ab856ec206c3f126f8c028dbb1c36d3e561 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8238-DEN + - cache-bos4660-BOS X-Timer: - - S1728237464.397277,VS0,VE1 + - S1736796080.690182,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '47' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:19 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 06857d6547109d690b0928f4eb9a10decb90203b + - 5f2dd4aa011a43139a58b1c58523431cd249e663 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8251-DEN + - cache-bos4673-BOS X-Timer: - - S1728237464.436070,VS0,VE2 + - S1736796080.770449,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/datacube/json-schema/schema.json response: @@ -639,7 +635,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:19 GMT ETag: - '"66e1651c-1d66"' Last-Modified: @@ -655,15 +651,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b1841ccf233e68eaa44e90365655b2318b59ce75 + - b54e43912e083e285c8fcad8a3d2809aba8ab487 X-GitHub-Request-Id: - - 7AFA:687EA:3798A5F:3DF8423:6702CF95 + - B900:17F0E3:438D158:4C65B9D:678567AE X-Served-By: - - cache-den8268-DEN + - cache-bos4638-BOS X-Timer: - - S1728237464.469710,VS0,VE2 + - S1736796080.850984,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:43 GMT + - Mon, 13 Jan 2025 19:31:19 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -677,7 +675,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -759,7 +757,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '3' Cache-Control: - max-age=600 Connection: @@ -769,7 +767,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:19 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -783,19 +781,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 2a6f0ae31d6e58aa15ce27ec819e5f34dd70f8bc + - b2241ff55f3e4a2796dbd1d6e3a92da185cb5470 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8243-DEN + - cache-bos4644-BOS X-Timer: - - S1728237465.506274,VS0,VE1 + - S1736796080.966481,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -809,7 +805,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -851,7 +847,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '3' Cache-Control: - max-age=600 Connection: @@ -861,7 +857,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:20 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -877,15 +873,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - eea91873c95998cccace01547526ddd788029a8a + - 10a2d61fa081ec7691a7730ddcebcb7b2095a696 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8244-DEN + - cache-bos4630-BOS X-Timer: - - S1728237465.540840,VS0,VE1 + - S1736796080.050285,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example78].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example78].yaml index 130e63960..147929170 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example78].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example78].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '48' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:20 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fc37258819b9a87544cb4fc9aa6066803c63c6b6 + - 3528117bce7f29c1e595ae4abe59a2a5c8b45d71 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8267-DEN + - cache-bos4640-BOS X-Timer: - - S1728237465.577732,VS0,VE2 + - S1736796080.120601,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '48' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:20 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 689bec29d69d19b0a616ec3a52959360746dae04 + - 13971ee2f5469670527740cf6fc5f8c1f7f46903 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8227-DEN + - cache-bos4624-BOS X-Timer: - - S1728237465.610906,VS0,VE2 + - S1736796080.207179,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '48' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:20 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 708778419ac7445a037fd9f6d64db5a1724f6a99 + - 2f8b50100f11a627b96f957af799f56731003b7b X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8266-DEN + - cache-bos4651-BOS X-Timer: - - S1728237465.666565,VS0,VE2 + - S1736796080.288207,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '48' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:20 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 486869fc3138b988b7210146d573401c172ebffe + - 474492584ca3d6a207130394dcf3513e9123f0f4 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8230-DEN + - cache-bos4685-BOS X-Timer: - - S1728237465.701807,VS0,VE1 + - S1736796080.370286,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '48' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:20 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8998a683f7ea2d9c7e5f03ff73d07c0d27214f9b + - 266651dd99d5f87e23a85ac2243cfb3242b1113e X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8254-DEN + - cache-bos4674-BOS X-Timer: - - S1728237465.732817,VS0,VE1 + - S1736796080.446940,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '48' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:44 GMT + - Mon, 13 Jan 2025 19:21:20 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 398709a49275744498e1bb2390b6e55f37728a37 + - ceab6d7b3d1b9c8aad31d6c820025c40cf81a1e0 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8223-DEN + - cache-bos4656-BOS X-Timer: - - S1728237465.761066,VS0,VE1 + - S1736796081.533011,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -566,7 +562,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:20 GMT ETag: - '"66e1651c-805"' Last-Modified: @@ -582,15 +578,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - b4d27620d33357074bf1d95bcaa21ac46aa4b494 + - 27faa5370c682d933e8b053aa8b6d8b6a4aeb986 X-GitHub-Request-Id: - - E8D9:1C7115:3966C49:3FC69B2:6702CF98 + - 58A3:52C42:437E2BF:4C56E42:678567AF X-Served-By: - - cache-den8277-DEN + - cache-bos4631-BOS X-Timer: - - S1728237465.788111,VS0,VE259 + - S1736796081.624102,VS0,VE39 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:20 GMT x-origin-cache: - HIT x-proxy-cache: @@ -606,7 +602,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -655,7 +651,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:20 GMT ETag: - '"66e1651c-829"' Last-Modified: @@ -671,17 +667,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 34403196742506b49be5d52f8ef340468b78a2a7 + - 2940e80b244893b2b59660e478df6c608ab874a9 X-GitHub-Request-Id: - - AE2B:2BEEA3:3A11710:4071547:6702CF98 + - 2068:32BF5C:43D7C50:4CB111B:678567B0 X-Served-By: - - cache-den8244-DEN + - cache-bos4665-BOS X-Timer: - - S1728237465.152312,VS0,VE67 + - S1736796081.743126,VS0,VE61 expires: - - Sun, 06 Oct 2024 18:07:45 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:20 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example79].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example79].yaml index 7f199a301..dd47dbc59 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example79].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example79].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '3' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:20 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -113,19 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 332a3d3063929692938d6d779396bbd2931e61e6 + - 3accd03c5164d98b3739c136e2b7dc39913cf951 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8220-DEN + - cache-bos4652-BOS X-Timer: - - S1728237465.267319,VS0,VE1 + - S1736796081.886165,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -139,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +179,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '4' Cache-Control: - max-age=600 Connection: @@ -191,7 +189,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:20 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -207,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b792fb5fa72c5dda3747aa84f034f2a87cc58029 + - 07719e039d99d395c44a407691f439a2879959cf X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8222-DEN + - cache-bos4673-BOS X-Timer: - - S1728237465.303521,VS0,VE2 + - S1736796081.962746,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -229,7 +227,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/item-assets/json-schema/schema.json response: @@ -272,7 +270,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:21 GMT ETag: - '"66e1651c-65f"' Last-Modified: @@ -288,15 +286,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - bd0b77253caa229cd9f1704981721fd77996e5f4 + - 947a67c9db950e08677a69e31d27e4803fbb7055 X-GitHub-Request-Id: - - 5A6D:215EAC:3D1E00F:437DE72:6702CF98 + - 1FC1:4F85:46158D9:4EEEA5C:678567B0 X-Served-By: - - cache-den8283-DEN + - cache-bos4640-BOS X-Timer: - - S1728237465.337954,VS0,VE66 + - S1736796081.045794,VS0,VE35 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example7].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example7].yaml index 866d51c8e..9301c3788 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example7].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example7].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,11 +112,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:49 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:49 GMT Source-Age: - '1' Strict-Transport-Security: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 66d5945d662f749bba40fbd501e0e70757694213 + - ff1cbdca32578773043f0ee2996bd072e09c56fe X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8236-DEN + - cache-bos4631-BOS X-Timer: - - S1728237441.164120,VS0,VE1 + - S1736796050.681047,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example80].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example80].yaml index 0ea9eb618..814d444b9 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example80].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example80].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -49,7 +49,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '4' Cache-Control: - max-age=600 Connection: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:21 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -75,15 +75,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a9010d5940a8f1ba0cbd5f9a339469cafa27d29a + - bee11e422e6112637c2d5a07a2595f9799382417 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8256-DEN + - cache-bos4656-BOS X-Timer: - - S1728237465.452260,VS0,VE2 + - S1736796081.158274,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example81].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example81].yaml index b8c4f569c..8c82c67d8 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example81].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example81].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '49' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:21 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9c5a013ced6e8ce2c64f0ad3966912abcf23690a + - 3fd9d4e3e347f5af05fc413419916e52ec07bee1 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8246-DEN + - cache-bos4631-BOS X-Timer: - - S1728237465.488627,VS0,VE1 + - S1736796081.240506,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '49' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:21 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c9bead0cb72e4007673c60ab4dd152313915a69d + - 9363fbdc6d7da6b0df56e1f725915273ec46cae2 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8255-DEN + - cache-bos4650-BOS X-Timer: - - S1728237466.520696,VS0,VE1 + - S1736796081.322447,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '49' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:21 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 77066a54a6c6684dbdf525fcf84a2c93bb212935 + - 4daf71915d6992605e34a0c2bb65508e62800b6e X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8248-DEN + - cache-bos4677-BOS X-Timer: - - S1728237466.552582,VS0,VE1 + - S1736796081.412666,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '49' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:21 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f3d85a041bb1e40f18d5feec9183dda7fd142537 + - 31bf92c2ddd800d33b7d3000e274363d57fde3b7 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8232-DEN + - cache-bos4680-BOS X-Timer: - - S1728237466.578631,VS0,VE1 + - S1736796082.500944,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '49' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:21 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b61bdfa05772c0d3d72fbcb8dedec0ec14ff56b8 + - 019b41b61c820bba5007a8f73212c3c1bb6ce215 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8264-DEN + - cache-bos4656-BOS X-Timer: - - S1728237466.609604,VS0,VE1 + - S1736796082.586647,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '49' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:21 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 03ad6fd26e253159b14799ea0e689ab094f02a37 + - 3a50be233eb7045606a172a4719900a0e94a3eaf X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8235-DEN + - cache-bos4662-BOS X-Timer: - - S1728237466.644955,VS0,VE1 + - S1736796082.676630,VS0,VE33 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -598,7 +594,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:21 GMT ETag: - '"66e1651c-1226"' Last-Modified: @@ -614,15 +610,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 27826bae49045f55ea148ad969acc9e4c2edb899 + - 202d302b50345c18c1d34b190211c8f674bfb0df X-GitHub-Request-Id: - - 965A:88140:39A89DD:40086EC:6702CF96 + - C894:3C3B5B:43EEBE9:4CC7609:678567B1 X-Served-By: - - cache-den8262-DEN + - cache-bos4654-BOS X-Timer: - - S1728237466.676077,VS0,VE62 + - S1736796082.800544,VS0,VE31 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -638,7 +634,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -683,7 +679,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:21 GMT ETag: - '"66e1651c-70b"' Last-Modified: @@ -699,15 +695,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 43cfcb56b034db5d0830100102ff7713dad0edaf + - 2bc585c416fb5d1798c225c769c8fb66c8ec0bc6 X-GitHub-Request-Id: - - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 + - EF08:2542B:42EACC0:4BC34D3:678567B1 X-Served-By: - - cache-den8237-DEN + - cache-bos4627-BOS X-Timer: - - S1728237466.776268,VS0,VE63 + - S1736796082.922154,VS0,VE41 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -723,7 +719,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -805,7 +801,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '5' Cache-Control: - max-age=600 Connection: @@ -815,7 +811,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -831,17 +827,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 04ca0b8dfbb60d38b357022c3c1fa60eb883d615 + - 0b5d640e9a8ac3e2f152223e5b1969dd40e19dda X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8235-DEN + - cache-bos4642-BOS X-Timer: - - S1728237466.878234,VS0,VE1 + - S1736796082.056428,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -855,7 +849,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -897,7 +891,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '5' Cache-Control: - max-age=600 Connection: @@ -907,7 +901,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -923,15 +917,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f6a462d107d3bb84dbc2634b9445af8a17055ff0 + - bc0f1b724fb9b65256f157e16bbf1d4644bee0a0 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8277-DEN + - cache-bos4645-BOS X-Timer: - - S1728237466.908856,VS0,VE1 + - S1736796082.148288,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example82].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example82].yaml index ed9447b2a..8499aa06a 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example82].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example82].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '50' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '7' X-Fastly-Request-ID: - - bcaee3fbcc202e9c79c7845ab1b09a8c52fa4e66 + - 929470fbd3455f63d6adfc42ba951926a0ffdd66 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8262-DEN + - cache-bos4644-BOS X-Timer: - - S1728237466.950449,VS0,VE1 + - S1736796082.242485,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '50' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:45 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 95bb542b7eb4eadb0586a299cec4fa1486bb9e04 + - ee00303b509e7d9462b2fcf51d08f2a6ffda69a7 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8256-DEN + - cache-bos4660-BOS X-Timer: - - S1728237466.982320,VS0,VE2 + - S1736796082.338326,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '50' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 53f24d80fa5a53c37d3f1b02e7d567bdadfd6628 + - 90358c90f15f6e75787654daf6fb73f5aa956c61 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8252-DEN + - cache-bos4672-BOS X-Timer: - - S1728237466.006335,VS0,VE1 + - S1736796082.426044,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '50' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 29343b7e2ed71ee75a012a4cde9ca7e61fb7df9f + - 8ca8f6b12c314a69fa349e6f79e12aec30223cd3 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8254-DEN + - cache-bos4674-BOS X-Timer: - - S1728237466.031951,VS0,VE2 + - S1736796083.508425,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '50' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 376baea7119a019188ac1107050e088e386e5c38 + - 4bd4274a01ba3041cb5969795c1ae3e2a01d2bbb X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8253-DEN + - cache-bos4648-BOS X-Timer: - - S1728237466.069299,VS0,VE1 + - S1736796083.592276,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '50' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2570a0764a11a23a401adfe1efe92f6a6b948dd0 + - 7452dea6884d57ad3d596106d3f07273026cbe41 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8241-DEN + - cache-bos4678-BOS X-Timer: - - S1728237466.098427,VS0,VE3 + - S1736796083.680617,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -588,7 +584,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '1' Cache-Control: - max-age=600 Connection: @@ -598,7 +594,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-1226"' Last-Modified: @@ -614,15 +610,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 73ca6fbd28217f2f2a7d8e25cefe34e1c4bbf3be + - 2e1104f5da00e384b2e6d36f1b5c4729c9d20ea5 X-GitHub-Request-Id: - - 965A:88140:39A89DD:40086EC:6702CF96 + - C894:3C3B5B:43EEBE9:4CC7609:678567B1 X-Served-By: - - cache-den8228-DEN + - cache-bos4642-BOS X-Timer: - - S1728237466.127116,VS0,VE2 + - S1736796083.758597,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -638,7 +634,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -673,7 +669,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '1' Cache-Control: - max-age=600 Connection: @@ -683,7 +679,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-70b"' Last-Modified: @@ -699,15 +695,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d17ce060e7329d7153ecfde40735809ba4f5105d + - 32a3e7c5ac5bf9cd5c407492f5447484abe2b36f X-GitHub-Request-Id: - - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 + - EF08:2542B:42EACC0:4BC34D3:678567B1 X-Served-By: - - cache-den8262-DEN + - cache-bos4645-BOS X-Timer: - - S1728237466.153236,VS0,VE1 + - S1736796083.844419,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -723,7 +719,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -815,7 +811,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -831,17 +827,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fa7da2003af85d60470dc2984410e5e5af428fc0 + - a78e7a1e180d1c680c4cd45dcda7d3b7d47d788a X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8248-DEN + - cache-bos4620-BOS X-Timer: - - S1728237466.179973,VS0,VE1 + - S1736796083.916402,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -855,7 +849,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -897,7 +891,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '6' Cache-Control: - max-age=600 Connection: @@ -907,7 +901,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:22 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -923,15 +917,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 899abe83fddf3b6b536e37de7d7dab0afb262049 + - 2ba18199f284485075ddf4b572bcdcccb6f88519 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8249-DEN + - cache-bos4681-BOS X-Timer: - - S1728237466.207010,VS0,VE2 + - S1736796083.988751,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example83].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example83].yaml index 0c276dc1b..7c304cfd2 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example83].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example83].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '51' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f8b405c154c17d3381ef350e3ee6045b3e866c71 + - 3a4c960167d84a346c4ebe9294b0fa5adda2efc5 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8283-DEN + - cache-bos4646-BOS X-Timer: - - S1728237466.236980,VS0,VE2 + - S1736796083.068085,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '51' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e0dbd28b5a59331d5af1a0851a60576f8b0dbaae + - 87cde0831cfaecf2b758cf51b622488db1f85ccf X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8242-DEN + - cache-bos4683-BOS X-Timer: - - S1728237466.268390,VS0,VE1 + - S1736796083.156161,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '51' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -279,17 +277,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - e64345f0fb03da32a920d7802fc74775c28eb367 + - feac1777cb7739ff99c8f9b1d7367abefd7661bc X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8267-DEN + - cache-bos4651-BOS X-Timer: - - S1728237466.291818,VS0,VE1 + - S1736796083.230058,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '51' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 711ee03238d680a89a5c1594a982e1be63b44a73 + - 1e2ce6a0e983dc547e0549fc68f5ade58fdafa1c X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8250-DEN + - cache-bos4639-BOS X-Timer: - - S1728237466.317591,VS0,VE1 + - S1736796083.302503,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '51' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -416,19 +414,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - dd20b8ea93e506c1aea451a0d8a7f85242cfdc0c + - 626980babb903ad8ecbd077de8d66a7d470ea53d X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8271-DEN + - cache-bos4648-BOS X-Timer: - - S1728237466.348886,VS0,VE1 + - S1736796083.376709,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '51' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 53334a3ae1a958742ee13228ec08e0ba9c9e2c1b + - 70b0d88d0e0f696235fe19092b5888b1bdc24e7a X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8247-DEN + - cache-bos4665-BOS X-Timer: - - S1728237466.374327,VS0,VE2 + - S1736796083.446935,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -588,7 +584,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -598,7 +594,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-1226"' Last-Modified: @@ -614,15 +610,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ba3f05380a73f85b665588e3de9056163231dc81 + - 2599d4378d08eda313d6c81056abdd168b845075 X-GitHub-Request-Id: - - 965A:88140:39A89DD:40086EC:6702CF96 + - C894:3C3B5B:43EEBE9:4CC7609:678567B1 X-Served-By: - - cache-den8242-DEN + - cache-bos4633-BOS X-Timer: - - S1728237466.400020,VS0,VE1 + - S1736796084.528149,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -638,7 +634,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -673,7 +669,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -683,7 +679,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-70b"' Last-Modified: @@ -699,15 +695,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 05b2d0812bd7e23fd611920274863c6e1fb7ae1a + - 5356b19b0f258176339e437c5f30c113bd439466 X-GitHub-Request-Id: - - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 + - EF08:2542B:42EACC0:4BC34D3:678567B1 X-Served-By: - - cache-den8253-DEN + - cache-bos4620-BOS X-Timer: - - S1728237466.427293,VS0,VE1 + - S1736796084.610539,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -723,7 +719,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -805,7 +801,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '6' Cache-Control: - max-age=600 Connection: @@ -815,7 +811,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -831,17 +827,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0c94fbc3f85887dffebbcbca1f674c3dd134b827 + - 35cccc91336793fd3bd7ef144d57e539e5ffd15a X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8245-DEN + - cache-bos4636-BOS X-Timer: - - S1728237466.460307,VS0,VE1 + - S1736796084.690433,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -855,7 +849,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -907,7 +901,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -923,15 +917,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 7b111fe4deb1cdd70424427299354d3c227458d5 + - ac3e72d4c3ee4cd09ef6ebdcaa1b7dfec8fbf42e X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8259-DEN + - cache-bos4685-BOS X-Timer: - - S1728237466.485179,VS0,VE1 + - S1736796084.778653,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example84].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example84].yaml index 982aeed5a..d6662a2cc 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example84].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example84].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -115,17 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 218e5ad4234c418708a8de4311bfdd990821b2d2 + - 75dac2cffc207d4a22d8601cf4128ab0a2655ff3 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8281-DEN + - cache-bos4679-BOS X-Timer: - - S1728237467.520399,VS0,VE1 + - S1736796084.858067,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -139,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -191,7 +189,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:23 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -207,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f49ce45bea7d28aec8ffb107e062237edc8b12fe + - 9e7b0a17a34caa3cf148639f5bc7b1bff1b33e72 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8276-DEN + - cache-bos4668-BOS X-Timer: - - S1728237467.556722,VS0,VE1 + - S1736796084.933124,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example85].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example85].yaml index 9dfd56738..3ce3de7e5 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example85].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example85].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -113,19 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - ec823ef6eeec1f2416243e47d6fcb34a8882467a + - ae255fa593ed4670982c677484c4947f6596b385 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8236-DEN + - cache-bos4648-BOS X-Timer: - - S1728237467.589587,VS0,VE0 + - S1736796084.014157,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -139,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -191,7 +189,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -205,17 +203,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 05482112e9d9f6a7396ea7e60926419bd42a5750 + - 7e21b226972e75eda69f548ce32e8108f227b2c7 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8276-DEN + - cache-bos4627-BOS X-Timer: - - S1728237467.616077,VS0,VE1 + - S1736796084.106552,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example86].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example86].yaml index 182a00234..571eebac6 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example86].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example86].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '52' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b33a00b80598f9e9bb0fd3aceba439ad36e66fb6 + - 5556a3a91678d6aed9e72c06a5eb1aa5a78438d5 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8234-DEN + - cache-bos4643-BOS X-Timer: - - S1728237467.648739,VS0,VE2 + - S1736796084.194361,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '52' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b9fd8acc35a043db98d72de43dd796a8f227fb0a + - ee0e460b60398e7107d4558c9369a4f9d402873b X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8275-DEN + - cache-bos4640-BOS X-Timer: - - S1728237467.681094,VS0,VE2 + - S1736796084.280734,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '52' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - cecc70472687352e7ded2fa7072c113f057b499d + - 1552810c3e83c45eadc49878818013bfd40ef913 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8277-DEN + - cache-bos4664-BOS X-Timer: - - S1728237467.709064,VS0,VE52 + - S1736796084.356793,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '52' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -350,17 +348,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 109654443b047435fabf6ffe3ff367e2234b57db + - b75b02c181c61f32d0dcad3b3b75cfd834c6ab9b X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8250-DEN + - cache-bos4681-BOS X-Timer: - - S1728237467.792101,VS0,VE1 + - S1736796084.436928,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '52' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -416,19 +414,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 8ceb9974afc31ae76385a48beb6c92e667c57bc7 + - d453fd855b2a3274a28ba0e41e48100c5d35e9aa X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8268-DEN + - cache-bos4674-BOS X-Timer: - - S1728237467.820677,VS0,VE1 + - S1736796085.523680,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '52' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - c410dca4f0e180bdb3513d146bd664b8672dc856 + - 767208ccfdef6901e992710933285308d6c57a1b X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8251-DEN + - cache-bos4662-BOS X-Timer: - - S1728237467.850074,VS0,VE1 + - S1736796085.596280,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -588,7 +584,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '3' Cache-Control: - max-age=600 Connection: @@ -598,7 +594,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-1226"' Last-Modified: @@ -614,15 +610,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3eb08a33d429971e3abe820f855d0bffce2d7110 + - 4e7ce6bf01f36d7127290cfa065b0eb9b5beb2b9 X-GitHub-Request-Id: - - 965A:88140:39A89DD:40086EC:6702CF96 + - C894:3C3B5B:43EEBE9:4CC7609:678567B1 X-Served-By: - - cache-den8256-DEN + - cache-bos4649-BOS X-Timer: - - S1728237467.878494,VS0,VE1 + - S1736796085.682274,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -638,7 +634,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -673,7 +669,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '3' Cache-Control: - max-age=600 Connection: @@ -683,7 +679,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-70b"' Last-Modified: @@ -699,15 +695,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ca7a107203a3523d0fb045ab00883ee922486edd + - c69fd07644c4ae015f073623bb8ba8de6879f974 X-GitHub-Request-Id: - - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 + - EF08:2542B:42EACC0:4BC34D3:678567B1 X-Served-By: - - cache-den8255-DEN + - cache-bos4652-BOS X-Timer: - - S1728237467.910037,VS0,VE1 + - S1736796085.778019,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -723,7 +719,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -805,7 +801,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '8' Cache-Control: - max-age=600 Connection: @@ -815,7 +811,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -831,17 +827,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 37f943b91045d58ae55b01f384d96559e64df3f0 + - 1fd8df975a4518291bd870be62aa8f8e4b9c2f0f X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8250-DEN + - cache-bos4632-BOS X-Timer: - - S1728237467.943409,VS0,VE7 + - S1736796085.888613,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -855,7 +849,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -897,7 +891,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '8' Cache-Control: - max-age=600 Connection: @@ -907,7 +901,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:46 GMT + - Mon, 13 Jan 2025 19:21:24 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -923,15 +917,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5970312c44e34bd31f9a924085c6feaf3f47852e + - 7bd325ce03bced9fe654369f5c6a4a4514e9f200 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8238-DEN + - cache-bos4633-BOS X-Timer: - - S1728237467.981112,VS0,VE2 + - S1736796085.978077,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example87].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example87].yaml index a90f8f9d8..9e99b6c51 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example87].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example87].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '53' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:47 GMT + - Mon, 13 Jan 2025 19:21:25 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - baa426ff8e262bb6413e58498d1683dbf6641245 + - f00989e40dde71cc3d36f5f3eb2e4a305e50051e X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8262-DEN + - cache-bos4675-BOS X-Timer: - - S1728237467.016249,VS0,VE0 + - S1736796085.094520,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '53' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:47 GMT + - Mon, 13 Jan 2025 19:21:25 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f0222886f21aabbd695467006a8ff1e267579093 + - 457fb831b3f6a9dd990d2c25af14c1ba827de7a1 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8278-DEN + - cache-bos4620-BOS X-Timer: - - S1728237467.050354,VS0,VE1 + - S1736796085.184293,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '53' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:47 GMT + - Mon, 13 Jan 2025 19:21:25 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a6142469d0dc8d663cd6b0a212a9b2991b07aaf1 + - a661328eb75c5449fdd30d339c2940189ef95b20 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8235-DEN + - cache-bos4623-BOS X-Timer: - - S1728237467.077103,VS0,VE1 + - S1736796085.258822,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '53' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:47 GMT + - Mon, 13 Jan 2025 19:21:25 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 56e56c886c5bd5d648afc3f6189beb752a687532 + - b14b5cd7ffc7f9ff26224b80bf6f04089ea03905 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8283-DEN + - cache-bos4625-BOS X-Timer: - - S1728237467.103221,VS0,VE1 + - S1736796085.368443,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '53' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:47 GMT + - Mon, 13 Jan 2025 19:21:25 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -416,19 +414,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '3' X-Fastly-Request-ID: - - 34b8470cd4a3b3c767ad869ac449cb6312cd9198 + - 88ca2436c4cf7f5cfa2b3248f2cc2758309d3f6d X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8253-DEN + - cache-bos4674-BOS X-Timer: - - S1728237467.129333,VS0,VE1 + - S1736796085.462965,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '53' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:47 GMT + - Mon, 13 Jan 2025 19:21:25 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 66fc39957c26a445cdb369d1d8098ba0f1639bfb + - 223765b861090c756452bb145b605f28b49728ff X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8224-DEN + - cache-bos4686-BOS X-Timer: - - S1728237467.189525,VS0,VE2 + - S1736796086.548333,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -588,7 +584,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '4' Cache-Control: - max-age=600 Connection: @@ -598,7 +594,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:47 GMT + - Mon, 13 Jan 2025 19:21:25 GMT ETag: - '"66e1651c-1226"' Last-Modified: @@ -614,15 +610,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b8ce44c019c37644e866e344e30b2195be9c7aa8 + - 91d40702b982b85f2ec78eed8bc995375dd6104c X-GitHub-Request-Id: - - 965A:88140:39A89DD:40086EC:6702CF96 + - C894:3C3B5B:43EEBE9:4CC7609:678567B1 X-Served-By: - - cache-den8251-DEN + - cache-bos4680-BOS X-Timer: - - S1728237467.220163,VS0,VE1 + - S1736796086.626511,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -638,7 +634,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -673,7 +669,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '4' Cache-Control: - max-age=600 Connection: @@ -683,7 +679,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:25 GMT ETag: - '"66e1651c-70b"' Last-Modified: @@ -699,15 +695,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9af74557a4d2a0729afaa0ada85fe37a13e444b1 + - 3b5145fd383b55c497592d7fb4476a0975ebef07 X-GitHub-Request-Id: - - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 + - EF08:2542B:42EACC0:4BC34D3:678567B1 X-Served-By: - - cache-den8244-DEN + - cache-bos4628-BOS X-Timer: - - S1728237468.258028,VS0,VE2 + - S1736796086.734317,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -723,7 +719,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -815,7 +811,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:25 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -831,17 +827,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9e9b1fc7f81e1d6b0804cf54c6325856c98790cb + - ea7e5839c14b2820fc5310ce55c37667679a64f3 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8233-DEN + - cache-bos4637-BOS X-Timer: - - S1728237468.295748,VS0,VE2 + - S1736796086.822565,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -855,7 +849,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -907,7 +901,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:25 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -923,15 +917,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b48da250ae50fe7ebf49361fe9122ea1d3ad68f7 + - 53f475018c00101be12bab7a05c30fc8228f05aa X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8265-DEN + - cache-bos4655-BOS X-Timer: - - S1728237468.328012,VS0,VE2 + - S1736796086.908516,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example88].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example88].yaml index ab0da2a11..b42707cca 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example88].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example88].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -115,17 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 62c5e720d701385797b85a9f8376bedc4374cd55 + - 096e523f84c021513af2a8996bcc02ab18c34866 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8267-DEN + - cache-bos4676-BOS X-Timer: - - S1728237468.370169,VS0,VE1 + - S1736796086.006477,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -139,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -191,7 +189,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -207,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - bac1f7ff83a4a72c79b4c0b11a813c03d3a49afb + - 7c36b5b05b2e1ee93e293c9e406e3731810487ab X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8257-DEN + - cache-bos4670-BOS X-Timer: - - S1728237468.401245,VS0,VE2 + - S1736796086.084280,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example89].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example89].yaml index 492c4ca6b..fbd025f5a 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example89].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example89].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '54' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 9afe81df82a22734117a78b683d3d78df676171a + - fc56408181c04349367db97e1a81136d9e988eb1 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8267-DEN + - cache-bos4661-BOS X-Timer: - - S1728237468.430347,VS0,VE1 + - S1736796086.162544,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '54' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 089cfadf174bb707a06ae4b98c0599e9b6a3cd56 + - af10c21e57fd3e600a5499ffaf78f2155571e8ff X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8251-DEN + - cache-bos4682-BOS X-Timer: - - S1728237468.456972,VS0,VE2 + - S1736796086.244807,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '54' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3b758fe3e5c7a6e8b692f428966f08670e198989 + - bfd297c63930c265d0d75655e630e7384f34894a X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8253-DEN + - cache-bos4637-BOS X-Timer: - - S1728237468.481981,VS0,VE1 + - S1736796086.325148,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '54' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 31aaf115f707571d1ac58438f3fd3a59afc60bcb + - 6c9373782515517329c026f17eeecd911cca5290 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8272-DEN + - cache-bos4673-BOS X-Timer: - - S1728237469.507459,VS0,VE1 + - S1736796086.402871,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '54' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 229efeedab692b5c50da089f7e643ff0ee0e9fbc + - e44824f0f1b65083170cfa2fd01e56953517371e X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8256-DEN + - cache-bos4666-BOS X-Timer: - - S1728237469.536560,VS0,VE1 + - S1736796086.490390,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '54' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - dc31148c623ce8e8d6381781bd2eccd47cc72fef + - b561b0d1528a6acaf81c03a43bffb8bac3310442 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8234-DEN + - cache-bos4684-BOS X-Timer: - - S1728237469.560451,VS0,VE1 + - S1736796087.573122,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -588,7 +584,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '5' Cache-Control: - max-age=600 Connection: @@ -598,7 +594,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-1226"' Last-Modified: @@ -614,15 +610,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c03143b9063c80122b962b7b25e485a9d07e0c2f + - 310c0affd720708d702d69d1ee5da78aecfaaa23 X-GitHub-Request-Id: - - 965A:88140:39A89DD:40086EC:6702CF96 + - C894:3C3B5B:43EEBE9:4CC7609:678567B1 X-Served-By: - - cache-den8247-DEN + - cache-bos4640-BOS X-Timer: - - S1728237469.587854,VS0,VE2 + - S1736796087.656797,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -638,7 +634,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -673,7 +669,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '5' Cache-Control: - max-age=600 Connection: @@ -683,7 +679,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-70b"' Last-Modified: @@ -699,15 +695,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e5942f8ba67a0af5144ba3ab6d7df7d49fee8fa7 + - 28740a33fcfa91e1d7c2b9e86d83d378fa3fd1e1 X-GitHub-Request-Id: - - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 + - EF08:2542B:42EACC0:4BC34D3:678567B1 X-Served-By: - - cache-den8226-DEN + - cache-bos4681-BOS X-Timer: - - S1728237469.626309,VS0,VE1 + - S1736796087.761533,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:21 GMT x-origin-cache: - HIT x-proxy-cache: @@ -723,7 +719,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -815,7 +811,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -829,19 +825,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '3' X-Fastly-Request-ID: - - 86aa73f8a97ba762bf7f1f7e56ca83aba1145d57 + - 81a8bdcb2cdd4cbb90f4a6e9de4d9f6d0b318328 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8235-DEN + - cache-bos4652-BOS X-Timer: - - S1728237469.658998,VS0,VE1 + - S1736796087.858762,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -855,7 +849,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -897,7 +891,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '10' Cache-Control: - max-age=600 Connection: @@ -907,7 +901,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:26 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -923,15 +917,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 69b7ed054140818a338342c82975799e71ca09ed + - db57b1c549d69f52cdf9fc5291eed19d0da4abc0 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8246-DEN + - cache-bos4632-BOS X-Timer: - - S1728237469.686213,VS0,VE2 + - S1736796087.934786,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example8].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example8].yaml index 7226331e0..f5f5c375f 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example8].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example8].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,11 +112,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:49 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:49 GMT Source-Age: - '1' Strict-Transport-Security: @@ -128,19 +128,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2e923984c906dede1cc955922f4fe1f0743590e8 + - 2f86741e6106ec12248b16e585f6eea4539aabed X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8257-DEN + - cache-bos4626-BOS X-Timer: - - S1728237441.197617,VS0,VE0 + - S1736796050.752548,VS0,VE1 X-XSS-Protection: - 1; mode=block status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example90].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example90].yaml index 3e82607b8..e6eb372fe 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example90].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example90].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '55' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - 1c97f19765907971679a047a0cfe8d8ed1113978 + - a2d6c1bdf6043d3407847ce7c114c78c707a437f X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8234-DEN + - cache-bos4675-BOS X-Timer: - - S1728237469.723159,VS0,VE0 + - S1736796087.008612,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '55' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6612ab80c40747cd78cfb10a51e04cbbd1d94cc3 + - 4432b36e2fd7f179a32767edc836cbc078e3232c X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8260-DEN + - cache-bos4652-BOS X-Timer: - - S1728237469.764966,VS0,VE1 + - S1736796087.086300,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '55' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6d6e53cfada9e2076ca96be7547a0db4d6a0aeaf + - 3be4007b9c216cc840e5ae497355e48e2a790eb1 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8224-DEN + - cache-bos4659-BOS X-Timer: - - S1728237469.809430,VS0,VE2 + - S1736796087.173430,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '55' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -350,17 +348,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 05bb7b1f9d77d34993bb90efdf9cc61789f41f0b + - 0d4bccaa43fb7d4caed7052d2240ecd5d026a6ff X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8222-DEN + - cache-bos4673-BOS X-Timer: - - S1728237469.840067,VS0,VE2 + - S1736796087.251990,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '55' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4223be7b8c57f8484d34032bc71e3a5bc80192e7 + - f69650039a231a14dd867741cc8bbff9f03d07b3 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8251-DEN + - cache-bos4636-BOS X-Timer: - - S1728237469.866615,VS0,VE2 + - S1736796087.326203,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '55' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6f31f9c579b1848818216e7fce99f6ce789c9c21 + - 47d82e282b0973640a02c81ea1dcd325f1235f71 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8277-DEN + - cache-bos4669-BOS X-Timer: - - S1728237469.889493,VS0,VE1 + - S1736796087.404318,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example91].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example91].yaml index ee80d2792..57f94eb98 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example91].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example91].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '56' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 487e898d70a66012023cf08bede5af55defafdea + - 6b29879b5c456552b817e803db8aba6bcc3b87a2 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8273-DEN + - cache-bos4677-BOS X-Timer: - - S1728237469.916784,VS0,VE1 + - S1736796087.488759,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '56' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 05a310eabae1358fceac05d08c082ba8e4987f4d + - 3d39fa7472a162c35fe3675855e8161cf846a436 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8239-DEN + - cache-bos4666-BOS X-Timer: - - S1728237469.967653,VS0,VE1 + - S1736796088.640094,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '55' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:48 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4d05b0d7b3919a61aa8baac25a86b962cd34c20f + - 2ebd245b42a7d96c817e3684294216e7d517d1fd X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8245-DEN + - cache-bos4655-BOS X-Timer: - - S1728237469.991432,VS0,VE1 + - S1736796088.718516,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '55' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:49 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6f96eb9a706b65e6a2b5e398fa5d62fb6c829a7b + - 1efc093ee2564798f4aa8931ac0d4c0214aad7ff X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8229-DEN + - cache-bos4635-BOS X-Timer: - - S1728237469.017347,VS0,VE2 + - S1736796088.798554,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '55' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:49 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -416,19 +414,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Fastly-Request-ID: - - 4cad016848fc540ec76c396ff799b4d17e3a91d5 + - ba533b0eb07cd44b28f3b43a147a95dd03e0b2ed X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8253-DEN + - cache-bos4644-BOS X-Timer: - - S1728237469.043097,VS0,VE1 + - S1736796088.876543,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '55' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:49 GMT + - Mon, 13 Jan 2025 19:21:27 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b3ae1cf465eedbfabab44f3beb733ae516db77c7 + - cca0de78e8c4029948044273501fe04ba4576952 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8258-DEN + - cache-bos4635-BOS X-Timer: - - S1728237469.074814,VS0,VE1 + - S1736796088.953071,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example92].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example92].yaml index c67e2042a..511e9225c 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example92].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example92].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '56' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:49 GMT + - Mon, 13 Jan 2025 19:21:28 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f9683eaec34b2df7534060ac3f434ed9874b4959 + - 6c268ed6a0729adb8cf7d61108217631240e138e X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8238-DEN + - cache-bos4635-BOS X-Timer: - - S1728237469.108425,VS0,VE1 + - S1736796088.028716,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '56' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:49 GMT + - Mon, 13 Jan 2025 19:21:28 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f49fcb7064e67a56a298d786ffcdd7c02a71d131 + - a84a1de1a36a13ab2d0dbf8d3dc03e34de48cea6 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8235-DEN + - cache-bos4634-BOS X-Timer: - - S1728237469.138643,VS0,VE1 + - S1736796088.113027,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '56' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:49 GMT + - Mon, 13 Jan 2025 19:21:28 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 029f891053bf193053318d9c8973d6bcc7c1cc3d + - 7d2ce83c58d83ae5b6ed53181a109d584c164294 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8246-DEN + - cache-bos4663-BOS X-Timer: - - S1728237469.163303,VS0,VE2 + - S1736796088.189146,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '56' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:49 GMT + - Mon, 13 Jan 2025 19:21:28 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f5e944ecb6462452ba2187f5c219d64201521a70 + - 58f5b4fc9dcb517ad71f0db6b4930f16a5bf2a30 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8226-DEN + - cache-bos4678-BOS X-Timer: - - S1728237469.189360,VS0,VE2 + - S1736796088.283592,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '56' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:49 GMT + - Mon, 13 Jan 2025 19:21:28 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 403bca2acabfeb31c252d6d6bc642c938a8eb3c9 + - 4d5cf9ed91d76ac58b270cacd460153f11e6aa5d X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8278-DEN + - cache-bos4676-BOS X-Timer: - - S1728237469.233424,VS0,VE2 + - S1736796088.369021,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '56' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:49 GMT + - Mon, 13 Jan 2025 19:21:28 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -492,17 +488,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - cb852b038531f61c90bf43057b87cebf37a73cd3 + - afaed0f90089db0e23209083607e314ed465c138 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8271-DEN + - cache-bos4686-BOS X-Timer: - - S1728237469.303118,VS0,VE1 + - S1736796088.456323,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -556,7 +552,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '8' Cache-Control: - max-age=600 Connection: @@ -566,7 +562,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:49 GMT + - Mon, 13 Jan 2025 19:21:28 GMT ETag: - '"66e1651c-805"' Last-Modified: @@ -582,15 +578,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6bb544daa5b4e35ed25b47d158dcb601875972ca + - b97e849bec29a1b3db74dee1151ae1f2d2fc4ac7 X-GitHub-Request-Id: - - E8D9:1C7115:3966C49:3FC69B2:6702CF98 + - 58A3:52C42:437E2BF:4C56E42:678567AF X-Served-By: - - cache-den8262-DEN + - cache-bos4676-BOS X-Timer: - - S1728237469.336773,VS0,VE2 + - S1736796089.546873,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:20 GMT x-origin-cache: - HIT x-proxy-cache: @@ -606,7 +602,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/projection/json-schema/schema.json response: @@ -670,7 +666,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:49 GMT + - Mon, 13 Jan 2025 19:21:28 GMT ETag: - '"66e1651c-dc7"' Last-Modified: @@ -686,15 +682,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 43337f9a10251617ac36b13aa0f60870050c3c65 + - 55c1c1724f5dfb10b123b8a667db70b71269cd22 X-GitHub-Request-Id: - - E8DC:3E300:36AED75:3D0E8FA:6702CF9D + - 9F2E:F1388:432338B:4BFBF94:678567B8 X-Served-By: - - cache-den8246-DEN + - cache-bos4629-BOS X-Timer: - - S1728237469.369263,VS0,VE64 + - S1736796089.652409,VS0,VE24 expires: - - Sun, 06 Oct 2024 18:07:49 GMT + - Mon, 13 Jan 2025 19:31:28 GMT x-origin-cache: - HIT x-proxy-cache: @@ -710,7 +706,7 @@ interactions: Host: - proj.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://proj.org/schemas/v0.2/projjson.schema.json response: @@ -722,7 +718,7 @@ interactions: CF-Cache-Status: - EXPIRED CF-Ray: - - 8ce7893adb847b20-DEN + - 9017bfe2cda8d6a8-IAD Cache-Control: - max-age=1200 Connection: @@ -734,18 +730,20 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:50 GMT + - Mon, 13 Jan 2025 19:21:28 GMT Location: - https://proj.org/en/latest/schemas/v0.2/projjson.schema.json Server: - cloudflare Set-Cookie: - - _cfuvid=5UxH30i599UeGH41k6jBUzyTdbeZUsI4gn1_rG.rn2s-1728237470077-0.0.1.1-604800000; + - _cfuvid=2iQM0vUXto81KqUimPZwGn7s8uQhAfKqM_DAwoJw_is-1736796088894-0.0.1.1-604800000; path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Vary: - Accept-Language, Cookie, Accept-Encoding access-control-expose-headers: - Location + alt-svc: + - h3=":443"; ma=86400 cdn-cache-control: - public cross-origin-opener-policy: @@ -753,11 +751,13 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-00198cede0d27448d + - web-ext-theme-i-073e529e9c304daca x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-project: - osgeo-proj x-rtd-project-method: @@ -779,7 +779,7 @@ interactions: Host: - proj.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://proj.org/en/latest/schemas/v0.2/projjson.schema.json response: @@ -1227,9 +1227,9 @@ interactions: Access-Control-Allow-Origin: - '*' CF-Cache-Status: - - HIT + - MISS CF-Ray: - - 8ce7893c381969db-DEN + - 9017bfe45ddf56e6-IAD Cache-Control: - max-age=1200 Connection: @@ -1237,7 +1237,7 @@ interactions: Content-Type: - application/json Date: - - Sun, 06 Oct 2024 17:57:50 GMT + - Mon, 13 Jan 2025 19:21:29 GMT ETag: - W/"54be42a997d748d338984583b3f2c900" Last-Modified: @@ -1245,7 +1245,7 @@ interactions: Server: - cloudflare Set-Cookie: - - _cfuvid=yXX.fdMsUli60Rmv0sUpGsBXj17gVCSH378gbBpVmK8-1728237470200-0.0.1.1-604800000; + - _cfuvid=B042yXzBimCwNXfsIQ9XpzJ0cdRDB2LJL.HJGj9bPeI-1736796089178-0.0.1.1-604800000; path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -1253,24 +1253,28 @@ interactions: - Accept-Encoding access-control-allow-methods: - HEAD, OPTIONS, GET + alt-svc: + - h3=":443"; ma=86400 cdn-cache-control: - public referrer-policy: - no-referrer-when-downgrade x-amz-id-2: - - f5aASN/bFyj2phyPzWWHQ68IHhNiPEXh6zTTeg9+RJ9QQzj6sVVR2aT8uGUxg5L0kRyrjZjApiE= + - hgVzmHhEtFyhPed7VKOPPhzOJHRu5ohayHWqkM/7CjcVbhLz1+BtgYFrGOUm8boSXFisXZDMzRA= x-amz-meta-mtime: - '1714074779.458591481' x-amz-request-id: - - R8NFNYA0GYKBVMPW + - 1MAW5VPVHHDJMTRE x-amz-server-side-encryption: - AES256 x-backend: - - web-i-0437d377c305e1f87 + - web-ext-theme-i-077f2b65129dd3006 x-content-type-options: - nosniff x-rtd-domain: - proj.org + x-rtd-force-addons: + - 'true' x-rtd-path: - /proxito/html/osgeo-proj/latest/schemas/v0.2/projjson.schema.json x-rtd-project: @@ -1296,7 +1300,7 @@ interactions: Host: - geojson.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://geojson.org/schema/Polygon.json response: @@ -1328,7 +1332,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:50 GMT + - Mon, 13 Jan 2025 19:21:29 GMT ETag: - '"65f73090-2bf"' Last-Modified: @@ -1344,15 +1348,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - bebe90016f9f2e3aba4dbd36ced3d8a3c0d67b9b + - b5674b2d752f0b17571d5b9ba724abfea5e420fa X-GitHub-Request-Id: - - 888E:6EE00:3E54492:44B40E0:6702CF9E + - 7C94:32EA79:4488012:4D61133:678567B9 X-Served-By: - - cache-den8225-DEN + - cache-bos4650-BOS X-Timer: - - S1728237470.446000,VS0,VE65 + - S1736796090.582743,VS0,VE22 expires: - - Sun, 06 Oct 2024 18:07:50 GMT + - Mon, 13 Jan 2025 19:31:29 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example93].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example93].yaml index ae8cc702e..4b6ec6fca 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example93].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example93].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '58' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:50 GMT + - Mon, 13 Jan 2025 19:21:29 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - d1dfc374a1373d5080f5e1038ac8f6616e557545 + - 37814e6642c98a7707b3217da62f0fb972bc0b2d X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8255-DEN + - cache-bos4635-BOS X-Timer: - - S1728237471.553422,VS0,VE1 + - S1736796090.674984,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '58' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:50 GMT + - Mon, 13 Jan 2025 19:21:29 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9523e9ac0a5ec2c6637513b60dc655578e4c6668 + - 937a420a57dc6cecea37dec20341dc3a128f469f X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8270-DEN + - cache-bos4621-BOS X-Timer: - - S1728237471.581627,VS0,VE1 + - S1736796090.752036,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '58' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:50 GMT + - Mon, 13 Jan 2025 19:21:29 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1ec1652611ddc3c4666892d7d1234a520a5a1432 + - c0c7427933cf09b19992c4da093c6ce2d8eae26b X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8249-DEN + - cache-bos4653-BOS X-Timer: - - S1728237471.607907,VS0,VE1 + - S1736796090.830061,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '57' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:50 GMT + - Mon, 13 Jan 2025 19:21:29 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 919571fde4e182f8888715950426741744cd62f7 + - 29a84104bd21966b67c3a368f5cbfa830c5b8131 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8234-DEN + - cache-bos4684-BOS X-Timer: - - S1728237471.634616,VS0,VE2 + - S1736796090.904175,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '11' + - '57' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:51 GMT + - Mon, 13 Jan 2025 19:21:29 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5e2fd55999c624872a6fddb746d38b83c1316439 + - f922d8b0a55588c2f9d327fa40a2ef63d2fe91b3 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8263-DEN + - cache-bos4640-BOS X-Timer: - - S1728237472.669307,VS0,VE1 + - S1736796090.982243,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '11' + - '57' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:51 GMT + - Mon, 13 Jan 2025 19:21:30 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4063c1ad8730d865aa6e61f86be46ea355f9bf8d + - 15ac03f69444183bbe7ca69882b36995867a1d20 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8225-DEN + - cache-bos4653-BOS X-Timer: - - S1728237472.703180,VS0,VE2 + - S1736796090.044483,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sat/json-schema/schema.json response: @@ -558,7 +554,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:30 GMT ETag: - '"66e1651c-5bb"' Last-Modified: @@ -574,15 +570,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - baf333d6df529190bcb2ac1e80a092a53fc9b50d + - 5e519e68be79cef87d86d4befc90bdba46ca616e X-GitHub-Request-Id: - - C07F:1A16E6:3879144:3ED8D70:6702CF9F + - 2463:191F96:43C1ECA:4C9B49C:678567B9 X-Served-By: - - cache-den8268-DEN + - cache-bos4682-BOS X-Timer: - - S1728237472.733189,VS0,VE274 + - S1736796090.130952,VS0,VE48 expires: - - Sun, 06 Oct 2024 18:07:51 GMT + - Mon, 13 Jan 2025 19:31:30 GMT x-origin-cache: - HIT x-proxy-cache: @@ -598,7 +594,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sar/json-schema/schema.json response: @@ -675,7 +671,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:30 GMT ETag: - '"66e1651c-10cd"' Last-Modified: @@ -691,15 +687,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 3184c84968f7c16b1d943be9bd5c5529c3db77e9 + - 5771157935635495a532a26550bd0ca5c2e97dba X-GitHub-Request-Id: - - 3735:687EA:3799315:3DF8DF3:6702CF9F + - 770A:3BA38A:3FD81DC:48B0703:678567B9 X-Served-By: - - cache-den8221-DEN + - cache-bos4665-BOS X-Timer: - - S1728237472.109644,VS0,VE78 + - S1736796090.254857,VS0,VE27 expires: - - Sun, 06 Oct 2024 18:07:52 GMT + - Mon, 13 Jan 2025 19:31:30 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example94].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example94].yaml index 08c1262e5..f00c8bd9c 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example94].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example94].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '58' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:30 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 632c38737f25c29339c257cf79173baf3242d878 + - 41309e6f1402c76e230f77025b4cf5fd365cf55f X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8283-DEN + - cache-bos4670-BOS X-Timer: - - S1728237472.231303,VS0,VE1 + - S1736796090.370464,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '58' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:30 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a9a8eb3edd72681850487d6ff7231476faad782e + - b6774b2c23a8da3254813c3084b24192e05b1d9f X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8276-DEN + - cache-bos4685-BOS X-Timer: - - S1728237472.261349,VS0,VE1 + - S1736796090.458591,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '58' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:30 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -279,17 +277,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 052c8dece77aa75185e7a18b482dcb0411d85ee2 + - d1f0e6f696fc367f2ea0e240d4b58cb511367754 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8227-DEN + - cache-bos4622-BOS X-Timer: - - S1728237472.290817,VS0,VE1 + - S1736796091.549000,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '58' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:30 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6ea95cac2c0fc5148cd90c0fa9c543bc500cf1d7 + - 2073911bea1dea35d41432735c4e5b0c699b20a0 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8273-DEN + - cache-bos4642-BOS X-Timer: - - S1728237472.319116,VS0,VE1 + - S1736796091.630660,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '58' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:30 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ba1de459341c7fce796325242e7d6c041586776b + - 4fa26d4e7fab0e1ee8ce67e774822c575ca6dfb6 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8280-DEN + - cache-bos4628-BOS X-Timer: - - S1728237472.379958,VS0,VE1 + - S1736796091.706376,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '58' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:30 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -492,17 +488,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - d0d45a62408c4233c88be465f4a6548aafb1fcfb + - bd552d6feb100544249856241108c955a69d8d6a X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8225-DEN + - cache-bos4621-BOS X-Timer: - - S1728237472.411476,VS0,VE1 + - S1736796091.808347,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/checksum/json-schema/schema.json response: @@ -561,7 +557,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '13' Cache-Control: - max-age=600 Connection: @@ -571,7 +567,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:30 GMT ETag: - '"66e1651c-939"' Last-Modified: @@ -587,17 +583,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 11d7094dd3c1a8362a3803458680624f6177dbe0 + - ec29026f6c0f1d78a23b03bc0639adc58bcbec76 X-GitHub-Request-Id: - - 7DC6:215EAC:3D1DA0A:437D7E0:6702CF93 + - F6E6:77CFF:44281E9:4D0100A:678567AE X-Served-By: - - cache-den8282-DEN + - cache-bos4666-BOS X-Timer: - - S1728237472.439052,VS0,VE2 + - S1736796091.960319,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:18 GMT x-proxy-cache: - MISS status: @@ -611,7 +605,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -653,7 +647,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '14' Cache-Control: - max-age=600 Connection: @@ -663,7 +657,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -677,17 +671,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - dac8d44b731cd8e9f49b16bba99da9a303c902e9 + - 88319c0c503028dd88d3ccdd8533e806913dbddc X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8283-DEN + - cache-bos4636-BOS X-Timer: - - S1728237472.475023,VS0,VE1 + - S1736796091.052488,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -701,7 +695,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -783,7 +777,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '14' Cache-Control: - max-age=600 Connection: @@ -793,7 +787,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -807,19 +801,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 324de72242d050628116a0178142f6131e64275b + - 9c6e7f8443a55e281b637131650346d67d46e924 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8245-DEN + - cache-bos4654-BOS X-Timer: - - S1728237473.506216,VS0,VE0 + - S1736796091.132837,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -833,7 +825,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sar/json-schema/schema.json response: @@ -900,7 +892,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '1' Cache-Control: - max-age=600 Connection: @@ -910,7 +902,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-10cd"' Last-Modified: @@ -926,15 +918,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 78e08df10a3d065c17d369d8073842cfe73947d5 + - ff16e6643715f31ed7947db7a34311854b39e169 X-GitHub-Request-Id: - - 3735:687EA:3799315:3DF8DF3:6702CF9F + - 770A:3BA38A:3FD81DC:48B0703:678567B9 X-Served-By: - - cache-den8259-DEN + - cache-bos4668-BOS X-Timer: - - S1728237473.534507,VS0,VE1 + - S1736796091.220713,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:52 GMT + - Mon, 13 Jan 2025 19:31:30 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -948,7 +942,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sat/json-schema/schema.json response: @@ -988,7 +982,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-5bb"' Last-Modified: @@ -1004,15 +998,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0889cd2624b75a163edac93aaef2c29b631790c4 + - acf58aad20e61f8d605a10780010750a82f42bca X-GitHub-Request-Id: - - C07F:1A16E6:3879144:3ED8D70:6702CF9F + - 2463:191F96:43C1ECA:4C9B49C:678567B9 X-Served-By: - - cache-den8263-DEN + - cache-bos4665-BOS X-Timer: - - S1728237473.569794,VS0,VE1 + - S1736796091.306488,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:51 GMT + - Mon, 13 Jan 2025 19:31:30 GMT x-origin-cache: - HIT x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example95].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example95].yaml index c6c92baf3..e76b00596 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example95].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example95].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '59' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fe0da05d543d7643618cba863eef4caa5742218a + - 3c9a4e5e58760952c9840ce7415804c0e550d5a4 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8266-DEN + - cache-bos4673-BOS X-Timer: - - S1728237473.609010,VS0,VE3 + - S1736796091.401188,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '59' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 679bdf47366d543dc1d38aa89231bac8f8a85a69 + - 75e924c5d294af44a553bcbe9a5d2c6393a32f5f X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8250-DEN + - cache-bos4630-BOS X-Timer: - - S1728237473.638830,VS0,VE1 + - S1736796091.480143,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '59' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -279,17 +277,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Fastly-Request-ID: - - c47c57ddb3e3b8026868148760dd3df6c34d873d + - e8e97ecd012906c40d8f7c417f548752487b63a7 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8265-DEN + - cache-bos4622-BOS X-Timer: - - S1728237473.665099,VS0,VE1 + - S1736796092.572528,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '59' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2598f8c5d678aa16b295fc871f326854f0f7f158 + - 3c662edaefca2795e2266938a8a3468de0bdc5f9 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8265-DEN + - cache-bos4660-BOS X-Timer: - - S1728237473.692645,VS0,VE2 + - S1736796092.662071,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '59' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - eecc0bfac13cde1b41b4e06a739a58b983da58a1 + - 2d38082d292f88dfc816a098318c9465adbeb849 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8245-DEN + - cache-bos4685-BOS X-Timer: - - S1728237473.722763,VS0,VE1 + - S1736796092.748372,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '59' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fd65b7a2d85a4e0dbc44674b611834e5025079dd + - f3f9a992165de1673f0d601cb1a5fe91206be587 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8239-DEN + - cache-bos4650-BOS X-Timer: - - S1728237473.750855,VS0,VE2 + - S1736796092.824426,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sat/json-schema/schema.json response: @@ -548,7 +544,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -558,7 +554,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-5bb"' Last-Modified: @@ -574,15 +570,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 98a8deda177efadb86cca17a982bccd69e3207e0 + - 414aad8e0ad322c240ea393679a0b2894d022c2b X-GitHub-Request-Id: - - C07F:1A16E6:3879144:3ED8D70:6702CF9F + - 2463:191F96:43C1ECA:4C9B49C:678567B9 X-Served-By: - - cache-den8272-DEN + - cache-bos4625-BOS X-Timer: - - S1728237473.778621,VS0,VE1 + - S1736796092.898574,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:51 GMT + - Mon, 13 Jan 2025 19:31:30 GMT x-origin-cache: - HIT x-proxy-cache: @@ -598,7 +594,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -637,7 +633,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '11' Cache-Control: - max-age=600 Connection: @@ -647,7 +643,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:31 GMT ETag: - '"66e1651c-829"' Last-Modified: @@ -663,17 +659,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0c66a733e0d7fd313cfb1c45dd307b17d4d57184 + - aa5db35ec1b8a1c122772f1eeeb09d3052491542 X-GitHub-Request-Id: - - AE2B:2BEEA3:3A11710:4071547:6702CF98 + - 2068:32BF5C:43D7C50:4CB111B:678567B0 X-Served-By: - - cache-den8228-DEN + - cache-bos4642-BOS X-Timer: - - S1728237473.812193,VS0,VE1 + - S1736796092.978414,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:20 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example96].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example96].yaml index 94b07b98b..2e7484673 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example96].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example96].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '15' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -115,17 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0834e25c857ed601885b82c79bfc71a355b749e4 + - fae4b5cc868ddb328f00493940fcad97d426ed85 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8268-DEN + - cache-bos4684-BOS X-Timer: - - S1728237473.848760,VS0,VE1 + - S1736796092.066483,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -139,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +179,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '15' Cache-Control: - max-age=600 Connection: @@ -191,7 +189,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -207,15 +205,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 32f47f167e2e8f2e99ab2233519fc91159ba1ced + - 359da45e5a172a8ebb39134fa23840fe1e7e959d X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8243-DEN + - cache-bos4635-BOS X-Timer: - - S1728237473.879154,VS0,VE1 + - S1736796092.137262,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -229,7 +227,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/scientific/json-schema/schema.json response: @@ -283,7 +281,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:52 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-9a3"' Last-Modified: @@ -299,15 +297,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - fcbf86def4980100cc19348b243f2a2f8fdc7958 + - d3239d063c6d0caeb60c3e3134edf17ce0057435 X-GitHub-Request-Id: - - D2D5:269EC6:3A88965:40E8637:6702CFA0 + - 9F2E:F1388:4323758:4BFC3CA:678567BC X-Served-By: - - cache-den8264-DEN + - cache-bos4638-BOS X-Timer: - - S1728237473.904130,VS0,VE63 + - S1736796092.204445,VS0,VE29 expires: - - Sun, 06 Oct 2024 18:07:52 GMT + - Mon, 13 Jan 2025 19:31:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -323,7 +321,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -405,7 +403,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '60' Cache-Control: - max-age=600 Connection: @@ -415,7 +413,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:53 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -429,17 +427,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 6927053677e2f0b36c5d94cae95dfcdee2cebf4d + - ea4c40bef8a02e8ac1a8aa406debc7707abcd0db X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8233-DEN + - cache-bos4655-BOS X-Timer: - - S1728237473.000783,VS0,VE2 + - S1736796092.308801,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example97].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example97].yaml index 4e13c05df..41ec1b307 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example97].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example97].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '60' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:53 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9e23f245db5af251e1805e1b92038dbf986542d4 + - bc73a28abc8e35333589ca44b682fd91cfe086d4 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8261-DEN + - cache-bos4630-BOS X-Timer: - - S1728237473.049627,VS0,VE1 + - S1736796092.388259,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '60' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:53 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1939f856fa2e87e547bd6c29749d68fa6a602922 + - 3a205aca3f2c443e2f7ffb851ecef48d8f1f4e62 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8274-DEN + - cache-bos4657-BOS X-Timer: - - S1728237473.086626,VS0,VE1 + - S1736796092.482235,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '60' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:53 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -279,17 +277,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - b0e49191eb0ee7cb8f064dabf45fe4819ac8dc15 + - 72e0f5d00072d35e740dcbf06ee418f1e491a10d X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8245-DEN + - cache-bos4620-BOS X-Timer: - - S1728237473.118638,VS0,VE0 + - S1736796093.560612,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '60' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:53 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 688295d86270f7e6e6672d4713bae5a3590c5b44 + - d3998bcb31fca4c1abcae368a53fed85525d639f X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8248-DEN + - cache-bos4670-BOS X-Timer: - - S1728237473.161856,VS0,VE1 + - S1736796093.644332,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '60' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:53 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -416,19 +414,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '4' + - '1' X-Fastly-Request-ID: - - d9ab063ecd43dff708f21cc4a637cda4dca374b4 + - adfb58835d3a661c3d6e51be45d83dfe6880cc36 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8253-DEN + - cache-bos4629-BOS X-Timer: - - S1728237473.194268,VS0,VE1 + - S1736796093.718902,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '60' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:53 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a0cbf37bb7b8f012065f76ec9aa9a11ce9d753e7 + - e3fe6f498af28a9595177207930355fa3c0db2df X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8257-DEN + - cache-bos4630-BOS X-Timer: - - S1728237473.221876,VS0,VE2 + - S1736796093.798533,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/scientific/json-schema/schema.json response: @@ -562,7 +558,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '1' Cache-Control: - max-age=600 Connection: @@ -572,7 +568,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:53 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-9a3"' Last-Modified: @@ -588,15 +584,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d032a76e5736c41326aa757299a35a3d32293147 + - 024eb8fd9303e4806ee45947cb4f56415616b357 X-GitHub-Request-Id: - - D2D5:269EC6:3A88965:40E8637:6702CFA0 + - 9F2E:F1388:4323758:4BFC3CA:678567BC X-Served-By: - - cache-den8244-DEN + - cache-bos4621-BOS X-Timer: - - S1728237473.249914,VS0,VE2 + - S1736796093.866176,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:52 GMT + - Mon, 13 Jan 2025 19:31:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -612,7 +608,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -694,7 +690,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '16' Cache-Control: - max-age=600 Connection: @@ -704,7 +700,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:53 GMT + - Mon, 13 Jan 2025 19:21:32 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -720,17 +716,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - dd32f1015ce8677ceafda16f08f43599e721a003 + - 406cf66fb7526df87807fd29166b19135d612104 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8241-DEN + - cache-bos4670-BOS X-Timer: - - S1728237473.284193,VS0,VE1 + - S1736796093.944327,VS0,VE5 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -744,7 +738,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -786,7 +780,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '16' Cache-Control: - max-age=600 Connection: @@ -796,7 +790,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:53 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -812,15 +806,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 915c8cf90978b5ac6e52f5a53e10c6f3ab2bfc02 + - 8e5b90389706ddec81096842e03679d32641ea9c X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8248-DEN + - cache-bos4675-BOS X-Timer: - - S1728237473.313751,VS0,VE1 + - S1736796093.018308,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -834,7 +828,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/checksum/json-schema/schema.json response: @@ -877,7 +871,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '15' Cache-Control: - max-age=600 Connection: @@ -887,7 +881,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:53 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-939"' Last-Modified: @@ -903,17 +897,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d51a20212b257f6629c79298f13c34661f92bfb3 + - dd2205eb00aad35bfb28d257707709b076f68528 X-GitHub-Request-Id: - - 7DC6:215EAC:3D1DA0A:437D7E0:6702CF93 + - F6E6:77CFF:44281E9:4D0100A:678567AE X-Served-By: - - cache-den8239-DEN + - cache-bos4667-BOS X-Timer: - - S1728237473.342424,VS0,VE2 + - S1736796093.090075,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:18 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example98].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example98].yaml index a3e04f250..ae4669a28 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example98].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example98].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '61' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -115,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 37e7288cb6ad488cceaa817f30c88d0e87bc706b + - 648573bb0b3db0afeeba8af8e6bf3a785dc464c0 X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8265-DEN + - cache-bos4676-BOS X-Timer: - - S1728237474.388122,VS0,VE2 + - S1736796093.172722,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '61' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d2b6ca129884b7a65eef871a3dd2233f43f75df6 + - d992a54b5771dcdd49754126c4b46214e3de5735 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8259-DEN + - cache-bos4635-BOS X-Timer: - - S1728237474.427781,VS0,VE1 + - S1736796093.241400,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '61' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 19d868954b74cd40eef31ebd8d250ea166cccd11 + - 8ff345642efb8be50c06ac1b75b1bcae9c625886 X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8273-DEN + - cache-bos4643-BOS X-Timer: - - S1728237474.460729,VS0,VE52 + - S1736796093.319383,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '61' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e13a2166ae2f2ba5d6f9d58bcb3764bebd7f30bd + - daa8582749a785e75b42b107f7e0e0b48ecf85c9 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8242-DEN + - cache-bos4633-BOS X-Timer: - - S1728237475.554160,VS0,VE1 + - S1736796093.408534,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '61' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -416,19 +414,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 5d566ab30d0f32d7dcb068efd5f33a49db2d953b + - afe8e00fafcc3e5bce1c68db8a8ccdcdce8d09b9 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8274-DEN + - cache-bos4629-BOS X-Timer: - - S1728237475.584516,VS0,VE2 + - S1736796093.490855,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '61' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c63225145fba529588c568d7fff494687fbb9d0a + - 943e23f35a2ad2ac91efc66a33b716a3b3e908c0 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8246-DEN + - cache-bos4640-BOS X-Timer: - - S1728237475.617528,VS0,VE2 + - S1736796094.588669,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/datacube/json-schema/schema.json response: @@ -629,7 +625,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '15' Cache-Control: - max-age=600 Connection: @@ -639,7 +635,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-1d66"' Last-Modified: @@ -655,15 +651,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 686f1f260acc6f793436b8ba2d42d959e4b17174 + - 6727e92cf06521ff671d3bb55655807de758944d X-GitHub-Request-Id: - - 7AFA:687EA:3798A5F:3DF8423:6702CF95 + - B900:17F0E3:438D158:4C65B9D:678567AE X-Served-By: - - cache-den8252-DEN + - cache-bos4620-BOS X-Timer: - - S1728237475.646589,VS0,VE1 + - S1736796094.686659,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:43 GMT + - Mon, 13 Jan 2025 19:31:19 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -677,7 +675,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -759,7 +757,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '16' Cache-Control: - max-age=600 Connection: @@ -769,7 +767,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -785,17 +783,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f091cb79fcb4c2f150d0874e8df72e57d592da22 + - f6338ea9bae1f8e730fbdcc8450d2f10c03364d5 X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8279-DEN + - cache-bos4634-BOS X-Timer: - - S1728237475.689505,VS0,VE1 + - S1736796094.785416,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -809,7 +805,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -851,7 +847,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '17' Cache-Control: - max-age=600 Connection: @@ -861,7 +857,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -877,15 +873,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4c24cbaee41439974ab2d77d32698cb1dea2b3ff + - cc5d8c713d96fe8d24397dddc6ac9925c5d43546 X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8241-DEN + - cache-bos4637-BOS X-Timer: - - S1728237475.720941,VS0,VE2 + - S1736796094.863940,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -899,7 +895,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -937,7 +933,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '13' Cache-Control: - max-age=600 Connection: @@ -947,7 +943,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:33 GMT ETag: - '"66e1651c-805"' Last-Modified: @@ -963,15 +959,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d7ce953987cb5f4bcd02f19791a8ed662a143b9d + - 80f510a53b723f3e41f59139607d3d76afb964df X-GitHub-Request-Id: - - E8D9:1C7115:3966C49:3FC69B2:6702CF98 + - 58A3:52C42:437E2BF:4C56E42:678567AF X-Served-By: - - cache-den8264-DEN + - cache-bos4669-BOS X-Timer: - - S1728237475.749889,VS0,VE1 + - S1736796094.946584,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:20 GMT x-origin-cache: - HIT x-proxy-cache: @@ -987,7 +983,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/tiled-assets/json-schema/schema.json response: @@ -1104,7 +1100,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:34 GMT ETag: - '"66e1651c-1c4b"' Last-Modified: @@ -1120,15 +1116,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 1dc1a3b0ed55287e9660b5b1723edc85c1aafd61 + - 5d4e48092787b83be2aabf103e64c89f74e31fd7 X-GitHub-Request-Id: - - 4B7F:B71F9:3BC47DF:42249DF:6702CFA2 + - FB0E:22F2A5:46F453D:4FCD475:678567B4 X-Served-By: - - cache-den8227-DEN + - cache-bos4647-BOS X-Timer: - - S1728237475.783778,VS0,VE61 + - S1736796094.040593,VS0,VE37 expires: - - Sun, 06 Oct 2024 18:07:54 GMT + - Mon, 13 Jan 2025 19:31:34 GMT x-origin-cache: - HIT x-proxy-cache: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example99].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example99].yaml index b23de4017..8f5544667 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example99].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example99].yaml @@ -7,7 +7,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -89,7 +89,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '62' Cache-Control: - max-age=600 Connection: @@ -99,7 +99,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:34 GMT ETag: - '"66e1651c-147c"' Last-Modified: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - b1d03634e5a0056835b7674a450d06feb13007df + - f38e11ae0b3fdb9e1823c944dc5e886b6714724b X-GitHub-Request-Id: - - 3735:687EA:3798775:3DF80EE:6702CF93 + - 5807:1660B9:419011D:481CEFA:6785677E X-Served-By: - - cache-den8226-DEN + - cache-bos4636-BOS X-Timer: - - S1728237475.894963,VS0,VE2 + - S1736796094.176833,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:31 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/basics.json response: @@ -156,7 +156,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '62' Cache-Control: - max-age=600 Connection: @@ -166,7 +166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:34 GMT ETag: - '"66e1651c-21c"' Last-Modified: @@ -182,17 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ca13369a188ed22655ddad3154b4144502572b61 + - 06924cae574725ae1f8d0f80edc83947800a80a5 X-GitHub-Request-Id: - - 39FD:88140:39A823E:4007EA8:6702CF93 + - 755A:1A5A62:41CF5C0:485C5E2:6785677F X-Served-By: - - cache-den8273-DEN + - cache-bos4655-BOS X-Timer: - - S1728237475.924128,VS0,VE2 + - S1736796094.270485,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -206,7 +204,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +253,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '62' Cache-Control: - max-age=600 Connection: @@ -265,7 +263,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:34 GMT ETag: - '"66e1651c-a82"' Last-Modified: @@ -281,15 +279,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e72bfe875ce7d1dd395d271bb2cb496bc6ebc9a9 + - 7653ee3e50c20822cde6221acc2705831adddf3e X-GitHub-Request-Id: - - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 + - 521A:288381:40D8AEE:476567C:67856778 X-Served-By: - - cache-den8271-DEN + - cache-bos4652-BOS X-Timer: - - S1728237475.953052,VS0,VE2 + - S1736796094.358450,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +303,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +324,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '62' Cache-Control: - max-age=600 Connection: @@ -336,7 +334,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:54 GMT + - Mon, 13 Jan 2025 19:21:34 GMT ETag: - '"66e1651c-2a2"' Last-Modified: @@ -352,15 +350,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 94e35d23477ea0a61b9aef25c438b4fb4ac0b334 + - 3b9077619ba6814bf80d5ec7a7d90adfdea57d92 X-GitHub-Request-Id: - - E409:2C5686:37942D5:3DF3B2A:6702CF93 + - FBC0:389225:434F69D:49DC23D:67856780 X-Served-By: - - cache-den8231-DEN + - cache-bos4641-BOS X-Timer: - - S1728237475.978596,VS0,VE1 + - S1736796094.446534,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +374,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +390,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '62' Cache-Control: - max-age=600 Connection: @@ -402,7 +400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:34 GMT ETag: - '"66e1651c-135"' Last-Modified: @@ -418,17 +416,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3b626d02900ac582fef386ac428d9f07b1287176 + - c4810d69752bead34716f62c9d2bf242a20cace8 X-GitHub-Request-Id: - - C7A3:25A7B1:3C07C25:4267971:6702CF93 + - 7BFC:2464FF:4361B47:49EE9E5:6785677E X-Served-By: - - cache-den8222-DEN + - cache-bos4684-BOS X-Timer: - - S1728237475.008582,VS0,VE1 + - S1736796095.534480,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:30:32 GMT x-proxy-cache: - MISS status: @@ -442,7 +438,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -468,7 +464,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '62' Cache-Control: - max-age=600 Connection: @@ -478,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:34 GMT ETag: - '"66e1651c-40e"' Last-Modified: @@ -494,15 +490,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 22e94005c25946eff1ab60566daf130ceb96a27e + - 2abc5b591fcc2ffecd6feb7bec547ef3660eb766 X-GitHub-Request-Id: - - 424E:23FCDC:39ED650:404D361:6702CF8A + - 55DF:288381:40D8B8B:476572A:67856780 X-Served-By: - - cache-den8276-DEN + - cache-bos4622-BOS X-Timer: - - S1728237475.038685,VS0,VE1 + - S1736796095.620428,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:40 GMT + - Mon, 13 Jan 2025 19:30:32 GMT x-origin-cache: - HIT x-proxy-cache: @@ -518,7 +514,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -556,7 +552,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '14' Cache-Control: - max-age=600 Connection: @@ -566,7 +562,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:34 GMT ETag: - '"66e1651c-805"' Last-Modified: @@ -582,15 +578,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b9dcf1452c6b96e33d304e3c43d6f7d47f34c533 + - 80f12ed17a8d150d8cd93c7ecb678fc5fdd9bd11 X-GitHub-Request-Id: - - E8D9:1C7115:3966C49:3FC69B2:6702CF98 + - 58A3:52C42:437E2BF:4C56E42:678567AF X-Served-By: - - cache-den8225-DEN + - cache-bos4670-BOS X-Timer: - - S1728237475.066771,VS0,VE1 + - S1736796095.718667,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:45 GMT + - Mon, 13 Jan 2025 19:31:20 GMT x-origin-cache: - HIT x-proxy-cache: @@ -606,7 +602,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/tiled-assets/json-schema/schema.json response: @@ -713,7 +709,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '1' Cache-Control: - max-age=600 Connection: @@ -723,7 +719,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:34 GMT ETag: - '"66e1651c-1c4b"' Last-Modified: @@ -739,15 +735,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c453ae8210f94aafca14fd2814eefd437fb28abf + - 2461f77f6d1bf1b8f1512f097567fdf7e8dcdd22 X-GitHub-Request-Id: - - 4B7F:B71F9:3BC47DF:42249DF:6702CFA2 + - FB0E:22F2A5:46F453D:4FCD475:678567B4 X-Served-By: - - cache-den8281-DEN + - cache-bos4652-BOS X-Timer: - - S1728237475.100003,VS0,VE3 + - S1736796095.806223,VS0,VE1 expires: - - Sun, 06 Oct 2024 18:07:54 GMT + - Mon, 13 Jan 2025 19:31:34 GMT x-origin-cache: - HIT x-proxy-cache: @@ -763,7 +759,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -805,7 +801,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '18' Cache-Control: - max-age=600 Connection: @@ -815,7 +811,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:34 GMT ETag: - '"66e1651c-84e"' Last-Modified: @@ -829,17 +825,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 9f01ec8ca68e795fbfd747c97579bc27f1c4e44d + - a7464eccd01ffa4aaece2ddbdbcf4c1dadfe6cce X-GitHub-Request-Id: - - EAEE:31444D:3881203:3EE0C9C:6702CF93 + - EF0B:150623:4960A01:5239E88:678567AD X-Served-By: - - cache-den8240-DEN + - cache-bos4656-BOS X-Timer: - - S1728237475.140038,VS0,VE1 + - S1736796095.902271,VS0,VE0 expires: - - Sun, 06 Oct 2024 18:07:39 GMT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: @@ -853,7 +849,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -935,7 +931,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '18' Cache-Control: - max-age=600 Connection: @@ -945,7 +941,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 06 Oct 2024 17:57:55 GMT + - Mon, 13 Jan 2025 19:21:34 GMT ETag: - '"66e1651c-14e2"' Last-Modified: @@ -961,17 +957,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 38d9f49990549a656fefe1a5967b5a9a6f0c6f95 + - 147813462dc052bb91ba166540c536454dd882fb X-GitHub-Request-Id: - - 317F:1D6D8E:38B0767:3F1014B:6702CF93 + - 96C3:3828BB:4264605:4B3CADC:678567AD X-Served-By: - - cache-den8260-DEN + - cache-bos4675-BOS X-Timer: - - S1728237475.265823,VS0,VE2 + - S1736796095.988599,VS0,VE2 expires: - - Sun, 06 Oct 2024 18:07:39 GMT - x-origin-cache: - - HIT + - Mon, 13 Jan 2025 19:31:17 GMT x-proxy-cache: - MISS status: diff --git a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example9].yaml b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example9].yaml index 81e360e2d..7f26aa24f 100644 --- a/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example9].yaml +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example9].yaml @@ -7,7 +7,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/item-spec/json-schema/item.json response: @@ -112,11 +112,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:49 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:49 GMT Source-Age: - '1' Strict-Transport-Security: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - bab542892403cf0c7b1aa4eedfd7fa9ef7154c74 + - 069ab97f7b125bd47e9877e9547676971537661b X-Frame-Options: - deny X-GitHub-Request-Id: - - C67D:B91D0:5B9A75:65CA55:6702CF7F + - AD16:35F504:25517AC:296210D:6785678F X-Served-By: - - cache-den8245-DEN + - cache-bos4678-BOS X-Timer: - - S1728237441.229360,VS0,VE1 + - S1736796050.828889,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.12 + - Python-urllib/3.11 method: GET uri: https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/extensions/eo/json-schema/schema.json response: @@ -220,11 +220,11 @@ interactions: Cross-Origin-Resource-Policy: - cross-origin Date: - - Sun, 06 Oct 2024 17:57:21 GMT + - Mon, 13 Jan 2025 19:20:49 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Sun, 06 Oct 2024 18:02:21 GMT + - Mon, 13 Jan 2025 19:25:49 GMT Source-Age: - '1' Strict-Transport-Security: @@ -240,15 +240,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 93ef40ba939ab244aaf1753fdb3f7d15c9ac4dff + - 01ced0306cd269d3f8455dffa6c787516006369d X-Frame-Options: - deny X-GitHub-Request-Id: - - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F + - D614:3722A2:2643690:2A53FD5:67856790 X-Served-By: - - cache-den8255-DEN + - cache-bos4660-BOS X-Timer: - - S1728237441.255761,VS0,VE1 + - S1736796050.898628,VS0,VE1 X-XSS-Protection: - 1; mode=block status: