diff --git a/CHANGELOG.md b/CHANGELOG.md index b19857882..254536bea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +### Changed + +- Write STAC v1.1.0 ([#1427](https://github.com/stac-utils/pystac/pull/1427)) + ## [v1.11.0] - 2024-09-26 ### Added diff --git a/docs/example-catalog/catalog.json b/docs/example-catalog/catalog.json index e7366d659..285d412b6 100644 --- a/docs/example-catalog/catalog.json +++ b/docs/example-catalog/catalog.json @@ -1,6 +1,6 @@ { "type": "Catalog", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [], "id": "landsat-stac-collection-catalog", "title": "STAC for Landsat data", diff --git a/pystac/validation/jsonschemas/stac-spec/v1.0.0/basics.json b/pystac/validation/jsonschemas/stac-spec/v1.0.0/basics.json deleted file mode 100644 index 68e8f37ae..000000000 --- a/pystac/validation/jsonschemas/stac-spec/v1.0.0/basics.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json#", - "title": "Basic Descriptive Fields", - "type": "object", - "properties": { - "title": { - "title": "Item Title", - "description": "A human-readable title describing the Item.", - "type": "string" - }, - "description": { - "title": "Item Description", - "description": "Detailed multi-line description to fully explain the Item.", - "type": "string" - } - } -} \ No newline at end of file diff --git a/pystac/validation/jsonschemas/stac-spec/v1.1.0/bands.json b/pystac/validation/jsonschemas/stac-spec/v1.1.0/bands.json new file mode 100644 index 000000000..94ec087a2 --- /dev/null +++ b/pystac/validation/jsonschemas/stac-spec/v1.1.0/bands.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://schemas.stacspec.org/v1.1.0/item-spec/json-schema/bands.json", + "title": "Bands Field", + "type": "object", + "properties": { + "bands": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + } + }, + "allOf": [ + { + "$ref": "common.json" + } + ] + } + } + } +} \ No newline at end of file diff --git a/pystac/validation/jsonschemas/stac-spec/v1.1.0/basics.json b/pystac/validation/jsonschemas/stac-spec/v1.1.0/basics.json new file mode 100644 index 000000000..cc2f49a61 --- /dev/null +++ b/pystac/validation/jsonschemas/stac-spec/v1.1.0/basics.json @@ -0,0 +1,34 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://schemas.stacspec.org/v1.1.0/item-spec/json-schema/basics.json", + "title": "Basic Descriptive Fields", + "type": "object", + "properties": { + "title": { + "title": "Title", + "description": "A human-readable title describing the entity.", + "type": "string" + }, + "description": { + "title": "Description", + "description": "Detailed multi-line description to fully explain the entity.", + "type": "string", + "minLength": 1 + }, + "keywords": { + "title": "Keywords", + "description": "List of keywords describing the entity.", + "type": "array", + "items": { + "type": "string" + } + }, + "roles": { + "title": "Roles", + "type": "array", + "items": { + "type": "string" + } + } + } +} \ No newline at end of file diff --git a/pystac/validation/jsonschemas/stac-spec/v1.0.0/catalog.json b/pystac/validation/jsonschemas/stac-spec/v1.1.0/catalog.json similarity index 52% rename from pystac/validation/jsonschemas/stac-spec/v1.0.0/catalog.json rename to pystac/validation/jsonschemas/stac-spec/v1.1.0/catalog.json index 31b2c8f8a..ca7efc15e 100644 --- a/pystac/validation/jsonschemas/stac-spec/v1.0.0/catalog.json +++ b/pystac/validation/jsonschemas/stac-spec/v1.1.0/catalog.json @@ -1,17 +1,21 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://schemas.stacspec.org/v1.0.0/catalog-spec/json-schema/catalog.json#", + "$id": "https://schemas.stacspec.org/v1.1.0/catalog-spec/json-schema/catalog.json", "title": "STAC Catalog Specification", "description": "This object represents Catalogs in a SpatioTemporal Asset Catalog.", "allOf": [ { "$ref": "#/definitions/catalog" + }, + { + "$ref": "../../item-spec/json-schema/common.json" } ], "definitions": { "catalog": { "title": "STAC Catalog", "type": "object", + "$comment": "title and description is validated through the common metadata.", "required": [ "stac_version", "type", @@ -23,7 +27,7 @@ "stac_version": { "title": "STAC version", "type": "string", - "const": "1.0.0" + "const": "1.1.0" }, "stac_extensions": { "title": "STAC extensions", @@ -44,49 +48,8 @@ "type": "string", "minLength": 1 }, - "title": { - "title": "Title", - "type": "string" - }, - "description": { - "title": "Description", - "type": "string", - "minLength": 1 - }, "links": { - "title": "Links", - "type": "array", - "items": { - "$ref": "#/definitions/link" - } - } - } - }, - "link": { - "type": "object", - "required": [ - "rel", - "href" - ], - "properties": { - "href": { - "title": "Link reference", - "type": "string", - "format": "iri-reference", - "minLength": 1 - }, - "rel": { - "title": "Link relation type", - "type": "string", - "minLength": 1 - }, - "type": { - "title": "Link type", - "type": "string" - }, - "title": { - "title": "Link title", - "type": "string" + "$ref": "../../item-spec/json-schema/item.json#/definitions/links" } } } diff --git a/pystac/validation/jsonschemas/stac-spec/v1.0.0/collection.json b/pystac/validation/jsonschemas/stac-spec/v1.1.0/collection.json similarity index 65% rename from pystac/validation/jsonschemas/stac-spec/v1.0.0/collection.json rename to pystac/validation/jsonschemas/stac-spec/v1.1.0/collection.json index 2ad20902d..e9ef74311 100644 --- a/pystac/validation/jsonschemas/stac-spec/v1.0.0/collection.json +++ b/pystac/validation/jsonschemas/stac-spec/v1.1.0/collection.json @@ -1,18 +1,22 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://schemas.stacspec.org/v1.0.0/collection-spec/json-schema/collection.json#", + "$id": "https://schemas.stacspec.org/v1.1.0/collection-spec/json-schema/collection.json", "title": "STAC Collection Specification", "description": "This object represents Collections in a SpatioTemporal Asset Catalog.", "allOf": [ { "$ref": "#/definitions/collection" + }, + { + "$ref": "../../item-spec/json-schema/common.json" } ], "definitions": { "collection": { "title": "STAC Collection", - "description": "These are the fields specific to a STAC Collection. All other fields are inherited from STAC Catalog.", + "description": "These are the fields specific to a STAC Collection.", "type": "object", + "$comment": "title, description, keywords, providers and license is validated through the common metadata.", "required": [ "stac_version", "type", @@ -26,7 +30,7 @@ "stac_version": { "title": "STAC version", "type": "string", - "const": "1.0.0" + "const": "1.1.0" }, "stac_extensions": { "title": "STAC extensions", @@ -47,64 +51,6 @@ "type": "string", "minLength": 1 }, - "title": { - "title": "Title", - "type": "string" - }, - "description": { - "title": "Description", - "type": "string", - "minLength": 1 - }, - "keywords": { - "title": "Keywords", - "type": "array", - "items": { - "type": "string" - } - }, - "license": { - "title": "Collection License Name", - "type": "string", - "pattern": "^[\\w\\-\\.\\+]+$" - }, - "providers": { - "type": "array", - "items": { - "type": "object", - "required": [ - "name" - ], - "properties": { - "name": { - "title": "Organization name", - "type": "string" - }, - "description": { - "title": "Organization description", - "type": "string" - }, - "roles": { - "title": "Organization roles", - "type": "array", - "items": { - "type": "string", - "enum": [ - "producer", - "licensor", - "processor", - "host" - ] - } - }, - "url": { - "title": "Organization homepage", - "type": "string", - "format": "iri" - } - } - } - }, "extent": { "title": "Extents", "type": "object", @@ -123,18 +69,26 @@ "bbox": { "title": "Spatial extents", "type": "array", - "minItems": 1, + "oneOf": [ + { + "minItems": 1, + "maxItems": 1 + }, + { + "minItems": 3 + } + ], "items": { "title": "Spatial extent", "type": "array", "oneOf": [ { - "minItems":4, - "maxItems":4 + "minItems": 4, + "maxItems": 4 }, { - "minItems":6, - "maxItems":6 + "minItems": 6, + "maxItems": 6 } ], "items": { @@ -177,46 +131,52 @@ "assets": { "$ref": "../../item-spec/json-schema/item.json#/definitions/assets" }, - "links": { - "title": "Links", - "type": "array", - "items": { - "$ref": "#/definitions/link" + "item_assets": { + "additionalProperties": { + "allOf": [ + { + "type": "object", + "minProperties": 2, + "properties": { + "href": { + "title": "Disallow href", + "not": {} + }, + "title": { + "title": "Asset title", + "type": "string" + }, + "description": { + "title": "Asset description", + "type": "string" + }, + "type": { + "title": "Asset type", + "type": "string" + }, + "roles": { + "title": "Asset roles", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + { + "$ref": "../../item-spec/json-schema/common.json" + } + ] } }, + "links": { + "$ref": "../../item-spec/json-schema/item.json#/definitions/links" + }, "summaries": { "$ref": "#/definitions/summaries" } } }, - "link": { - "type": "object", - "required": [ - "rel", - "href" - ], - "properties": { - "href": { - "title": "Link reference", - "type": "string", - "format": "iri-reference", - "minLength": 1 - }, - "rel": { - "title": "Link relation type", - "type": "string", - "minLength": 1 - }, - "type": { - "title": "Link type", - "type": "string" - }, - "title": { - "title": "Link title", - "type": "string" - } - } - }, "summaries": { "type": "object", "additionalProperties": { diff --git a/pystac/validation/jsonschemas/stac-spec/v1.1.0/common.json b/pystac/validation/jsonschemas/stac-spec/v1.1.0/common.json new file mode 100644 index 000000000..2b947b03d --- /dev/null +++ b/pystac/validation/jsonschemas/stac-spec/v1.1.0/common.json @@ -0,0 +1,30 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://schemas.stacspec.org/v1.1.0/item-spec/json-schema/commonjson", + "title": "STAC Common Metadata", + "type": "object", + "description": "This schema includes all common metadata fields.", + "allOf": [ + { + "$ref": "basics.json" + }, + { + "$ref": "bands.json" + }, + { + "$ref": "datetime.json" + }, + { + "$ref": "data-values.json" + }, + { + "$ref": "instrument.json" + }, + { + "$ref": "licensing.json" + }, + { + "$ref": "provider.json" + } + ] +} diff --git a/pystac/validation/jsonschemas/stac-spec/v1.1.0/data-values.json b/pystac/validation/jsonschemas/stac-spec/v1.1.0/data-values.json new file mode 100644 index 000000000..55fea87cf --- /dev/null +++ b/pystac/validation/jsonschemas/stac-spec/v1.1.0/data-values.json @@ -0,0 +1,84 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://schemas.stacspec.org/v1.1.0/item-spec/json-schema/data-values.json#", + "title": "Fields related to data values", + "type": "object", + "properties": { + "data_type": { + "title": "Data type of the values", + "type": "string", + "enum": [ + "int8", + "int16", + "int32", + "int64", + "uint8", + "uint16", + "uint32", + "uint64", + "float16", + "float32", + "float64", + "cint16", + "cint32", + "cfloat32", + "cfloat64", + "other" + ] + }, + "nodata": { + "title": "No data value", + "oneOf": [ + { + "type": "number" + }, + { + "type": "string", + "enum": [ + "nan", + "inf", + "-inf" + ] + } + ] + }, + "statistics": { + "title": "Statistics", + "type": "object", + "minProperties": 1, + "properties": { + "minimum": { + "title": "Minimum value of all the data values", + "type": "number" + }, + "maximum": { + "title": "Maximum value of all the data values", + "type": "number" + }, + "mean": { + "title": "Mean value of all the data values", + "type": "number" + }, + "stddev": { + "title": "Standard deviation value of all the data values", + "type": "number" + }, + "count": { + "title": "Total number of all data values", + "type": "integer", + "minimum": 0 + }, + "valid_percent": { + "title": "Percentage of valid (not nodata) values", + "type": "number", + "minimum": 0, + "maximum": 100 + } + } + }, + "unit": { + "title": "Unit denomination of the data value", + "type": "string" + } + } +} \ No newline at end of file diff --git a/pystac/validation/jsonschemas/stac-spec/v1.0.0/datetime.json b/pystac/validation/jsonschemas/stac-spec/v1.1.0/datetime.json similarity index 72% rename from pystac/validation/jsonschemas/stac-spec/v1.0.0/datetime.json rename to pystac/validation/jsonschemas/stac-spec/v1.1.0/datetime.json index 4c7a3a143..b4bc9261f 100644 --- a/pystac/validation/jsonschemas/stac-spec/v1.0.0/datetime.json +++ b/pystac/validation/jsonschemas/stac-spec/v1.1.0/datetime.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json#", + "$id": "https://schemas.stacspec.org/v1.1.0/item-spec/json-schema/datetime.json", "title": "Date and Time Fields", "type": "object", "dependencies": { @@ -18,21 +18,21 @@ "properties": { "datetime": { "title": "Date and Time", - "description": "The searchable date/time of the assets, in UTC (Formatted in RFC 3339) ", + "description": "The searchable date/time of the data, in UTC (Formatted in RFC 3339) ", "type": ["string", "null"], "format": "date-time", "pattern": "(\\+00:00|Z)$" }, "start_datetime": { "title": "Start Date and Time", - "description": "The searchable start date/time of the assets, in UTC (Formatted in RFC 3339) ", + "description": "The searchable start date/time of the data, in UTC (Formatted in RFC 3339) ", "type": "string", "format": "date-time", "pattern": "(\\+00:00|Z)$" }, "end_datetime": { "title": "End Date and Time", - "description": "The searchable end date/time of the assets, in UTC (Formatted in RFC 3339) ", + "description": "The searchable end date/time of the data, in UTC (Formatted in RFC 3339) ", "type": "string", "format": "date-time", "pattern": "(\\+00:00|Z)$" diff --git a/pystac/validation/jsonschemas/stac-spec/v1.0.0/instrument.json b/pystac/validation/jsonschemas/stac-spec/v1.1.0/instrument.json similarity index 87% rename from pystac/validation/jsonschemas/stac-spec/v1.0.0/instrument.json rename to pystac/validation/jsonschemas/stac-spec/v1.1.0/instrument.json index 688c4a497..ab9742713 100644 --- a/pystac/validation/jsonschemas/stac-spec/v1.0.0/instrument.json +++ b/pystac/validation/jsonschemas/stac-spec/v1.1.0/instrument.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json#", + "$id": "https://schemas.stacspec.org/v1.1.0/item-spec/json-schema/instrument.json", "title": "Instrument Fields", "type": "object", "properties": { diff --git a/pystac/validation/jsonschemas/stac-spec/v1.0.0/item.json b/pystac/validation/jsonschemas/stac-spec/v1.1.0/item.json similarity index 52% rename from pystac/validation/jsonschemas/stac-spec/v1.0.0/item.json rename to pystac/validation/jsonschemas/stac-spec/v1.1.0/item.json index cea31dfb0..1c8c945b9 100644 --- a/pystac/validation/jsonschemas/stac-spec/v1.0.0/item.json +++ b/pystac/validation/jsonschemas/stac-spec/v1.1.0/item.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#", + "$id": "https://schemas.stacspec.org/v1.1.0/item-spec/json-schema/item.json", "title": "STAC Item", "type": "object", "description": "This object represents the metadata for an item in a SpatioTemporal Asset Catalog.", @@ -10,25 +10,6 @@ } ], "definitions": { - "common_metadata": { - "allOf": [ - { - "$ref": "basics.json" - }, - { - "$ref": "datetime.json" - }, - { - "$ref": "instrument.json" - }, - { - "$ref": "licensing.json" - }, - { - "$ref": "provider.json" - } - ] - }, "core": { "allOf": [ { @@ -93,7 +74,7 @@ "stac_version": { "title": "STAC version", "type": "string", - "const": "1.0.0" + "const": "1.1.0" }, "stac_extensions": { "title": "STAC extensions", @@ -112,12 +93,7 @@ "minLength": 1 }, "links": { - "title": "Item links", - "description": "Links to item relations", - "type": "array", - "items": { - "$ref": "#/definitions/link" - } + "$ref": "#/definitions/links" }, "assets": { "$ref": "#/definitions/assets" @@ -125,7 +101,7 @@ "properties": { "allOf": [ { - "$ref": "#/definitions/common_metadata" + "$ref": "common.json" }, { "anyOf": [ @@ -153,72 +129,171 @@ ] } }, - "if": { - "properties": { - "links": { - "contains": { - "required": [ - "rel" - ], + "$comment": "Rules enforcement for STAC Item", + "allOf": [ + { + "if": { + "properties": { + "links": { + "contains": { + "required": [ + "rel" + ], + "properties": { + "rel": { + "const": "collection" + } + } + } + } + } + }, + "then": { + "required": [ + "collection" + ], + "properties": { + "collection": { + "title": "Collection ID", + "description": "The ID of the STAC Collection this Item references to.", + "type": "string", + "minLength": 1 + } + } + }, + "else": { + "properties": { + "collection": { + "not": {} + } + } + } + }, + { + "$comment": "The if-then-else below checks whether the bands field is given in assets or not. If not, allows bands in properties (then), otherwise, disallows bands in properties (else).", + "if": { + "$comment": "If there is no asset with bands...", + "required": [ + "assets" + ], + "properties": { + "assets": { + "type": "object", + "additionalProperties": { + "properties": { + "bands": false + } + } + } + } + }, + "then": { + "$comment": "... then bands are not allowed in properties...", + "properties": { "properties": { - "rel": { - "const": "collection" + "properties": { + "bands": false } } } + }, + "else": { + "$comment": "... otherwise bands are allowed in properties.", + "properties": { + "properties": { + "$ref": "bands.json" + } + } + } + } + ] + } + ] + }, + "links": { + "title": "Item links", + "description": "Links to item relations", + "type": "array", + "items": { + "$ref": "#/definitions/link" + } + }, + "link": { + "allOf": [ + { + "type": "object", + "required": [ + "rel", + "href" + ], + "properties": { + "href": { + "title": "Link reference", + "type": "string", + "format": "iri-reference", + "minLength": 1 + }, + "rel": { + "title": "Link relation type", + "type": "string", + "minLength": 1 + }, + "type": { + "title": "Link type", + "type": "string" + }, + "title": { + "title": "Link title", + "type": "string" + }, + "method": { + "title": "Link method", + "type": "string", + "pattern": "^[A-Z]+$", + "default": "GET" + }, + "headers": { + "title": "Link headers", + "type": "object", + "additionalProperties": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + } + } + ] } + }, + "body": { + "title": "Link body", + "$comment": "Any type is allowed." } }, - "then": { - "required": [ - "collection" - ], + "$comment": "Link with relationship `self` must be absolute URI", + "if": { "properties": { - "collection": { - "title": "Collection ID", - "description": "The ID of the STAC Collection this Item references to.", - "type": "string", - "minLength": 1 + "rel": { + "const": "self" } } }, - "else": { + "then": { "properties": { - "collection": { - "not": {} + "href": { + "format": "iri" } } } - } - ] - }, - "link": { - "type": "object", - "required": [ - "rel", - "href" - ], - "properties": { - "href": { - "title": "Link reference", - "type": "string", - "format": "iri-reference", - "minLength": 1 }, - "rel": { - "title": "Link relation type", - "type": "string", - "minLength": 1 - }, - "type": { - "title": "Link type", - "type": "string" - }, - "title": { - "title": "Link title", - "type": "string" + { + "$ref": "common.json" } - } + ] }, "assets": { "title": "Asset links", @@ -264,7 +339,7 @@ } }, { - "$ref": "#/definitions/common_metadata" + "$ref": "common.json" } ] } diff --git a/pystac/validation/jsonschemas/stac-spec/v1.0.0/licensing.json b/pystac/validation/jsonschemas/stac-spec/v1.1.0/licensing.json similarity index 71% rename from pystac/validation/jsonschemas/stac-spec/v1.0.0/licensing.json rename to pystac/validation/jsonschemas/stac-spec/v1.1.0/licensing.json index ca0eed8b9..8f650712d 100644 --- a/pystac/validation/jsonschemas/stac-spec/v1.0.0/licensing.json +++ b/pystac/validation/jsonschemas/stac-spec/v1.1.0/licensing.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json#", + "$id": "https://schemas.stacspec.org/v1.1.0/item-spec/json-schema/licensing.json", "title": "Licensing Fields", "type": "object", "properties": { diff --git a/pystac/validation/jsonschemas/stac-spec/v1.0.0/provider.json b/pystac/validation/jsonschemas/stac-spec/v1.1.0/provider.json similarity index 92% rename from pystac/validation/jsonschemas/stac-spec/v1.0.0/provider.json rename to pystac/validation/jsonschemas/stac-spec/v1.1.0/provider.json index 01cfadcec..92a980406 100644 --- a/pystac/validation/jsonschemas/stac-spec/v1.0.0/provider.json +++ b/pystac/validation/jsonschemas/stac-spec/v1.1.0/provider.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json#", + "$id": "https://schemas.stacspec.org/v1.1.0/item-spec/json-schema/provider.json", "title": "Provider Fields", "type": "object", "properties": { diff --git a/pystac/validation/local_validator.py b/pystac/validation/local_validator.py index 06dc8e050..48101b67c 100644 --- a/pystac/validation/local_validator.py +++ b/pystac/validation/local_validator.py @@ -42,7 +42,10 @@ def get_local_schema_cache() -> dict[str, dict[str, Any]]: f"item-spec/json-schema/{name}.json" ): _read_schema(f"stac-spec/v{VERSION}/{name}.json") for name in ( + "bands", "basics", + "common", + "data-values", "datetime", "instrument", "licensing", diff --git a/pystac/version.py b/pystac/version.py index 49971ad05..c470ea545 100644 --- a/pystac/version.py +++ b/pystac/version.py @@ -5,7 +5,7 @@ class STACVersion: - DEFAULT_STAC_VERSION = "1.0.0" + DEFAULT_STAC_VERSION = "1.1.0" """Latest STAC version supported by PySTAC""" DEFAULT_STAC_API_VERSION = "1.0.0" diff --git a/tests/data-files/catalogs/cbers-partial/CBERS4AWFI/collection.json b/tests/data-files/catalogs/cbers-partial/CBERS4AWFI/collection.json index f9a79b607..fd61437e2 100644 --- a/tests/data-files/catalogs/cbers-partial/CBERS4AWFI/collection.json +++ b/tests/data-files/catalogs/cbers-partial/CBERS4AWFI/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "CBERS4AWFI", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "CBERS4 AWFI camera catalog", "links": [ { diff --git a/tests/data-files/catalogs/cbers-partial/CBERS4MUX/collection.json b/tests/data-files/catalogs/cbers-partial/CBERS4MUX/collection.json index 3649645a4..2139aac93 100644 --- a/tests/data-files/catalogs/cbers-partial/CBERS4MUX/collection.json +++ b/tests/data-files/catalogs/cbers-partial/CBERS4MUX/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "CBERS4MUX", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "CBERS4 MUX camera catalog", "links": [ { diff --git a/tests/data-files/catalogs/cbers-partial/CBERS4PAN10M/collection.json b/tests/data-files/catalogs/cbers-partial/CBERS4PAN10M/collection.json index b0e667f4b..d33eef2cf 100644 --- a/tests/data-files/catalogs/cbers-partial/CBERS4PAN10M/collection.json +++ b/tests/data-files/catalogs/cbers-partial/CBERS4PAN10M/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "CBERS4PAN10M", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "CBERS4 PAN10M camera catalog", "links": [ { diff --git a/tests/data-files/catalogs/cbers-partial/CBERS4PAN5M/collection.json b/tests/data-files/catalogs/cbers-partial/CBERS4PAN5M/collection.json index cbfc4dc27..e88f8bb1d 100644 --- a/tests/data-files/catalogs/cbers-partial/CBERS4PAN5M/collection.json +++ b/tests/data-files/catalogs/cbers-partial/CBERS4PAN5M/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "CBERS4PAN5M", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "CBERS4 PAN5M camera catalog", "links": [ { diff --git a/tests/data-files/catalogs/cbers-partial/catalog.json b/tests/data-files/catalogs/cbers-partial/catalog.json index e63b7d6ad..18c5ad2f9 100644 --- a/tests/data-files/catalogs/cbers-partial/catalog.json +++ b/tests/data-files/catalogs/cbers-partial/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "CBERS4", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Catalogs of CBERS-4 mission's imagery on AWS", "links": [ { diff --git a/tests/data-files/catalogs/test-case-1/catalog.json b/tests/data-files/catalogs/test-case-1/catalog.json index 07cbb381d..14edfa229 100644 --- a/tests/data-files/catalogs/test-case-1/catalog.json +++ b/tests/data-files/catalogs/test-case-1/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "test", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test catalog", "links": [ { diff --git a/tests/data-files/catalogs/test-case-1/country-1/area-1-1/area-1-1-imagery/area-1-1-imagery.json b/tests/data-files/catalogs/test-case-1/country-1/area-1-1/area-1-1-imagery/area-1-1-imagery.json index 851efd6cf..d20f31afd 100644 --- a/tests/data-files/catalogs/test-case-1/country-1/area-1-1/area-1-1-imagery/area-1-1-imagery.json +++ b/tests/data-files/catalogs/test-case-1/country-1/area-1-1/area-1-1-imagery/area-1-1-imagery.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "area-1-1-imagery", "properties": { "datetime": "2019-10-04T18:55:37Z" diff --git a/tests/data-files/catalogs/test-case-1/country-1/area-1-1/area-1-1-labels/area-1-1-labels.json b/tests/data-files/catalogs/test-case-1/country-1/area-1-1/area-1-1-labels/area-1-1-labels.json index 6f66c3ef4..9439ae796 100644 --- a/tests/data-files/catalogs/test-case-1/country-1/area-1-1/area-1-1-labels/area-1-1-labels.json +++ b/tests/data-files/catalogs/test-case-1/country-1/area-1-1/area-1-1-labels/area-1-1-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "area-1-1-labels", "properties": { "datetime": "2019-10-04T18:55:37Z", diff --git a/tests/data-files/catalogs/test-case-1/country-1/area-1-1/collection.json b/tests/data-files/catalogs/test-case-1/country-1/area-1-1/collection.json index 55d238946..01cfcbb1e 100644 --- a/tests/data-files/catalogs/test-case-1/country-1/area-1-1/collection.json +++ b/tests/data-files/catalogs/test-case-1/country-1/area-1-1/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "area-1-1", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test collection country-1", "links": [ { diff --git a/tests/data-files/catalogs/test-case-1/country-1/area-1-2/area-1-2-imagery/area-1-2-imagery.json b/tests/data-files/catalogs/test-case-1/country-1/area-1-2/area-1-2-imagery/area-1-2-imagery.json index 62368d388..4394240ee 100644 --- a/tests/data-files/catalogs/test-case-1/country-1/area-1-2/area-1-2-imagery/area-1-2-imagery.json +++ b/tests/data-files/catalogs/test-case-1/country-1/area-1-2/area-1-2-imagery/area-1-2-imagery.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "area-1-2-imagery", "properties": { "datetime": "2019-10-04T18:55:37Z" diff --git a/tests/data-files/catalogs/test-case-1/country-1/area-1-2/area-1-2-labels/area-1-2-labels.json b/tests/data-files/catalogs/test-case-1/country-1/area-1-2/area-1-2-labels/area-1-2-labels.json index ce89fa5c9..0d76899a5 100644 --- a/tests/data-files/catalogs/test-case-1/country-1/area-1-2/area-1-2-labels/area-1-2-labels.json +++ b/tests/data-files/catalogs/test-case-1/country-1/area-1-2/area-1-2-labels/area-1-2-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "area-1-2-labels", "properties": { "datetime": "2019-10-04T18:55:37Z", diff --git a/tests/data-files/catalogs/test-case-1/country-1/area-1-2/collection.json b/tests/data-files/catalogs/test-case-1/country-1/area-1-2/collection.json index 82cd636b9..83263e698 100644 --- a/tests/data-files/catalogs/test-case-1/country-1/area-1-2/collection.json +++ b/tests/data-files/catalogs/test-case-1/country-1/area-1-2/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "area-1-2", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test collection country-1", "links": [ { diff --git a/tests/data-files/catalogs/test-case-1/country-1/catalog.json b/tests/data-files/catalogs/test-case-1/country-1/catalog.json index 7466de06b..d4ba17017 100644 --- a/tests/data-files/catalogs/test-case-1/country-1/catalog.json +++ b/tests/data-files/catalogs/test-case-1/country-1/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "country-1", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test catalog country-1", "links": [ { diff --git a/tests/data-files/catalogs/test-case-1/country-2/area-2-1/area-2-1-imagery/area-2-1-imagery.json b/tests/data-files/catalogs/test-case-1/country-2/area-2-1/area-2-1-imagery/area-2-1-imagery.json index 359d2a854..61be587a2 100644 --- a/tests/data-files/catalogs/test-case-1/country-2/area-2-1/area-2-1-imagery/area-2-1-imagery.json +++ b/tests/data-files/catalogs/test-case-1/country-2/area-2-1/area-2-1-imagery/area-2-1-imagery.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "area-2-1-imagery", "properties": { "datetime": "2019-10-04T18:55:37Z" diff --git a/tests/data-files/catalogs/test-case-1/country-2/area-2-1/area-2-1-labels/area-2-1-labels.json b/tests/data-files/catalogs/test-case-1/country-2/area-2-1/area-2-1-labels/area-2-1-labels.json index 4bbfc22fc..ab31889b0 100644 --- a/tests/data-files/catalogs/test-case-1/country-2/area-2-1/area-2-1-labels/area-2-1-labels.json +++ b/tests/data-files/catalogs/test-case-1/country-2/area-2-1/area-2-1-labels/area-2-1-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "area-2-1-labels", "properties": { "datetime": "2019-10-04T18:55:37Z", diff --git a/tests/data-files/catalogs/test-case-1/country-2/area-2-1/collection.json b/tests/data-files/catalogs/test-case-1/country-2/area-2-1/collection.json index 5bc58cc88..ccabd5b73 100644 --- a/tests/data-files/catalogs/test-case-1/country-2/area-2-1/collection.json +++ b/tests/data-files/catalogs/test-case-1/country-2/area-2-1/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "area-2-1", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test collection country-2", "links": [ { diff --git a/tests/data-files/catalogs/test-case-1/country-2/area-2-2/area-2-2-imagery/area-2-2-imagery.json b/tests/data-files/catalogs/test-case-1/country-2/area-2-2/area-2-2-imagery/area-2-2-imagery.json index 5cb2453f6..546dc6c11 100644 --- a/tests/data-files/catalogs/test-case-1/country-2/area-2-2/area-2-2-imagery/area-2-2-imagery.json +++ b/tests/data-files/catalogs/test-case-1/country-2/area-2-2/area-2-2-imagery/area-2-2-imagery.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "area-2-2-imagery", "properties": { "datetime": "2019-10-04T18:55:37Z" diff --git a/tests/data-files/catalogs/test-case-1/country-2/area-2-2/area-2-2-labels/area-2-2-labels.json b/tests/data-files/catalogs/test-case-1/country-2/area-2-2/area-2-2-labels/area-2-2-labels.json index c5658dfdf..89176e1a6 100644 --- a/tests/data-files/catalogs/test-case-1/country-2/area-2-2/area-2-2-labels/area-2-2-labels.json +++ b/tests/data-files/catalogs/test-case-1/country-2/area-2-2/area-2-2-labels/area-2-2-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "area-2-2-labels", "properties": { "datetime": "2019-10-04T18:55:37Z", diff --git a/tests/data-files/catalogs/test-case-1/country-2/area-2-2/collection.json b/tests/data-files/catalogs/test-case-1/country-2/area-2-2/collection.json index 7ecd629d0..165e45580 100644 --- a/tests/data-files/catalogs/test-case-1/country-2/area-2-2/collection.json +++ b/tests/data-files/catalogs/test-case-1/country-2/area-2-2/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "area-2-2", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test collection country-2", "links": [ { diff --git a/tests/data-files/catalogs/test-case-1/country-2/catalog.json b/tests/data-files/catalogs/test-case-1/country-2/catalog.json index 7ef53bfaf..15ab0791d 100644 --- a/tests/data-files/catalogs/test-case-1/country-2/catalog.json +++ b/tests/data-files/catalogs/test-case-1/country-2/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "country-2", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test catalog country-2", "links": [ { diff --git a/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/5b922d42-9a77-4f79-a672-86096f7f849e/cf73ec1a-d790-4b59-b077-e101738571ed/cf73ec1a-d790-4b59-b077-e101738571ed.json b/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/5b922d42-9a77-4f79-a672-86096f7f849e/cf73ec1a-d790-4b59-b077-e101738571ed/cf73ec1a-d790-4b59-b077-e101738571ed.json index c743bcf42..b7094ab45 100644 --- a/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/5b922d42-9a77-4f79-a672-86096f7f849e/cf73ec1a-d790-4b59-b077-e101738571ed/cf73ec1a-d790-4b59-b077-e101738571ed.json +++ b/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/5b922d42-9a77-4f79-a672-86096f7f849e/cf73ec1a-d790-4b59-b077-e101738571ed/cf73ec1a-d790-4b59-b077-e101738571ed.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "cf73ec1a-d790-4b59-b077-e101738571ed", "properties": { "label:description": "Labels in layer", diff --git a/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/5b922d42-9a77-4f79-a672-86096f7f849e/collection.json b/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/5b922d42-9a77-4f79-a672-86096f7f849e/collection.json index 75aa8307a..9e891dd02 100644 --- a/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/5b922d42-9a77-4f79-a672-86096f7f849e/collection.json +++ b/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/5b922d42-9a77-4f79-a672-86096f7f849e/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "5b922d42-9a77-4f79-a672-86096f7f849e", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Label collection in layer 1a8c1632-fa91-4a62-b33e-3a87c2ebdf16", "links": [ { diff --git a/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/collection.json b/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/collection.json index 8eac986ee..fec28f6aa 100644 --- a/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/collection.json +++ b/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "1a8c1632-fa91-4a62-b33e-3a87c2ebdf16", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Project layer collection", "links": [ { diff --git a/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/f433578c-f879-414d-8101-83142a0a13c3/collection.json b/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/f433578c-f879-414d-8101-83142a0a13c3/collection.json index 53404f782..2bc1cc53f 100644 --- a/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/f433578c-f879-414d-8101-83142a0a13c3/collection.json +++ b/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/f433578c-f879-414d-8101-83142a0a13c3/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "f433578c-f879-414d-8101-83142a0a13c3", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Scene collection in layer 1a8c1632-fa91-4a62-b33e-3a87c2ebdf16", "links": [ { diff --git a/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/f433578c-f879-414d-8101-83142a0a13c3/d43bead8-e3f8-4c51-95d6-e24e750a402b/d43bead8-e3f8-4c51-95d6-e24e750a402b.json b/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/f433578c-f879-414d-8101-83142a0a13c3/d43bead8-e3f8-4c51-95d6-e24e750a402b/d43bead8-e3f8-4c51-95d6-e24e750a402b.json index df4c78b50..89aef54f4 100644 --- a/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/f433578c-f879-414d-8101-83142a0a13c3/d43bead8-e3f8-4c51-95d6-e24e750a402b/d43bead8-e3f8-4c51-95d6-e24e750a402b.json +++ b/tests/data-files/catalogs/test-case-2/1a8c1632-fa91-4a62-b33e-3a87c2ebdf16/f433578c-f879-414d-8101-83142a0a13c3/d43bead8-e3f8-4c51-95d6-e24e750a402b/d43bead8-e3f8-4c51-95d6-e24e750a402b.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "d43bead8-e3f8-4c51-95d6-e24e750a402b", "properties": { "datetime": "2019-08-07T20:37:10Z" diff --git a/tests/data-files/catalogs/test-case-2/catalog.json b/tests/data-files/catalogs/test-case-2/catalog.json index 0ca5f00b8..35864d36f 100644 --- a/tests/data-files/catalogs/test-case-2/catalog.json +++ b/tests/data-files/catalogs/test-case-2/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "01749366-9e25-4b42-a4d1-5aae9f8c9eec", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Exported from Raster Foundry 2019-10-04 15:55:13.759", "links": [ { diff --git a/tests/data-files/catalogs/test-case-4/acc/665946-labels/665946-labels.json b/tests/data-files/catalogs/test-case-4/acc/665946-labels/665946-labels.json index 8c49cb3f7..f60011f54 100644 --- a/tests/data-files/catalogs/test-case-4/acc/665946-labels/665946-labels.json +++ b/tests/data-files/catalogs/test-case-4/acc/665946-labels/665946-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "665946-labels", "properties": { "label:description": "Geojson building labels for scene 665946", diff --git a/tests/data-files/catalogs/test-case-4/acc/665946/665946.json b/tests/data-files/catalogs/test-case-4/acc/665946/665946.json index 09d362e19..ab96949bf 100644 --- a/tests/data-files/catalogs/test-case-4/acc/665946/665946.json +++ b/tests/data-files/catalogs/test-case-4/acc/665946/665946.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "665946", "properties": { "area": "acc", diff --git a/tests/data-files/catalogs/test-case-4/acc/a42435-labels/a42435-labels.json b/tests/data-files/catalogs/test-case-4/acc/a42435-labels/a42435-labels.json index d109c716c..6969ac8b4 100644 --- a/tests/data-files/catalogs/test-case-4/acc/a42435-labels/a42435-labels.json +++ b/tests/data-files/catalogs/test-case-4/acc/a42435-labels/a42435-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "a42435-labels", "properties": { "label:description": "Geojson building labels for scene a42435", diff --git a/tests/data-files/catalogs/test-case-4/acc/a42435/a42435.json b/tests/data-files/catalogs/test-case-4/acc/a42435/a42435.json index 39ab3e62c..8e8fc9a26 100644 --- a/tests/data-files/catalogs/test-case-4/acc/a42435/a42435.json +++ b/tests/data-files/catalogs/test-case-4/acc/a42435/a42435.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "a42435", "properties": { "area": "acc", diff --git a/tests/data-files/catalogs/test-case-4/acc/ca041a-labels/ca041a-labels.json b/tests/data-files/catalogs/test-case-4/acc/ca041a-labels/ca041a-labels.json index c6599843b..39b6ca316 100644 --- a/tests/data-files/catalogs/test-case-4/acc/ca041a-labels/ca041a-labels.json +++ b/tests/data-files/catalogs/test-case-4/acc/ca041a-labels/ca041a-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "ca041a-labels", "properties": { "label:description": "Geojson building labels for scene ca041a", diff --git a/tests/data-files/catalogs/test-case-4/acc/ca041a/ca041a.json b/tests/data-files/catalogs/test-case-4/acc/ca041a/ca041a.json index b95f00089..7d41e274c 100644 --- a/tests/data-files/catalogs/test-case-4/acc/ca041a/ca041a.json +++ b/tests/data-files/catalogs/test-case-4/acc/ca041a/ca041a.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "ca041a", "properties": { "area": "acc", diff --git a/tests/data-files/catalogs/test-case-4/acc/collection.json b/tests/data-files/catalogs/test-case-4/acc/collection.json index 4a471c459..10cd3bdd5 100644 --- a/tests/data-files/catalogs/test-case-4/acc/collection.json +++ b/tests/data-files/catalogs/test-case-4/acc/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "acc", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Tier 1 training data from acc", "links": [ { diff --git a/tests/data-files/catalogs/test-case-4/acc/d41d81-labels/d41d81-labels.json b/tests/data-files/catalogs/test-case-4/acc/d41d81-labels/d41d81-labels.json index 4ed08581c..18f5ab786 100644 --- a/tests/data-files/catalogs/test-case-4/acc/d41d81-labels/d41d81-labels.json +++ b/tests/data-files/catalogs/test-case-4/acc/d41d81-labels/d41d81-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "d41d81-labels", "properties": { "label:description": "Geojson building labels for scene d41d81", diff --git a/tests/data-files/catalogs/test-case-4/acc/d41d81/d41d81.json b/tests/data-files/catalogs/test-case-4/acc/d41d81/d41d81.json index 4e9b29f8d..d462a4c96 100644 --- a/tests/data-files/catalogs/test-case-4/acc/d41d81/d41d81.json +++ b/tests/data-files/catalogs/test-case-4/acc/d41d81/d41d81.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "d41d81", "properties": { "area": "acc", diff --git a/tests/data-files/catalogs/test-case-4/catalog.json b/tests/data-files/catalogs/test-case-4/catalog.json index fc27e5cc8..62de85b2c 100644 --- a/tests/data-files/catalogs/test-case-4/catalog.json +++ b/tests/data-files/catalogs/test-case-4/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "train_tier_1", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Tier 1 training data and labels", "links": [ { diff --git a/tests/data-files/catalogs/test-case-4/dar/0a4c40-labels/0a4c40-labels.json b/tests/data-files/catalogs/test-case-4/dar/0a4c40-labels/0a4c40-labels.json index d82b04c6a..77aecf964 100644 --- a/tests/data-files/catalogs/test-case-4/dar/0a4c40-labels/0a4c40-labels.json +++ b/tests/data-files/catalogs/test-case-4/dar/0a4c40-labels/0a4c40-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "0a4c40-labels", "properties": { "label:description": "Geojson building labels for scene 0a4c40", diff --git a/tests/data-files/catalogs/test-case-4/dar/0a4c40/0a4c40.json b/tests/data-files/catalogs/test-case-4/dar/0a4c40/0a4c40.json index 6b0ea8560..d48be4352 100644 --- a/tests/data-files/catalogs/test-case-4/dar/0a4c40/0a4c40.json +++ b/tests/data-files/catalogs/test-case-4/dar/0a4c40/0a4c40.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "0a4c40", "properties": { "area": "dar", diff --git a/tests/data-files/catalogs/test-case-4/dar/353093-labels/353093-labels.json b/tests/data-files/catalogs/test-case-4/dar/353093-labels/353093-labels.json index 851b1a780..4c2fb29db 100644 --- a/tests/data-files/catalogs/test-case-4/dar/353093-labels/353093-labels.json +++ b/tests/data-files/catalogs/test-case-4/dar/353093-labels/353093-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "353093-labels", "properties": { "label:description": "Geojson building labels for scene 353093", diff --git a/tests/data-files/catalogs/test-case-4/dar/353093/353093.json b/tests/data-files/catalogs/test-case-4/dar/353093/353093.json index e838cd082..12bebc060 100644 --- a/tests/data-files/catalogs/test-case-4/dar/353093/353093.json +++ b/tests/data-files/catalogs/test-case-4/dar/353093/353093.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "353093", "properties": { "area": "dar", diff --git a/tests/data-files/catalogs/test-case-4/dar/42f235-labels/42f235-labels.json b/tests/data-files/catalogs/test-case-4/dar/42f235-labels/42f235-labels.json index a9303cccc..1291c8a96 100644 --- a/tests/data-files/catalogs/test-case-4/dar/42f235-labels/42f235-labels.json +++ b/tests/data-files/catalogs/test-case-4/dar/42f235-labels/42f235-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "42f235-labels", "properties": { "label:description": "Geojson building labels for scene 42f235", diff --git a/tests/data-files/catalogs/test-case-4/dar/42f235/42f235.json b/tests/data-files/catalogs/test-case-4/dar/42f235/42f235.json index a2e619c70..86854c8e6 100644 --- a/tests/data-files/catalogs/test-case-4/dar/42f235/42f235.json +++ b/tests/data-files/catalogs/test-case-4/dar/42f235/42f235.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "42f235", "properties": { "area": "dar", diff --git a/tests/data-files/catalogs/test-case-4/dar/a017f9-labels/a017f9-labels.json b/tests/data-files/catalogs/test-case-4/dar/a017f9-labels/a017f9-labels.json index 6abbc2422..aa827cb48 100644 --- a/tests/data-files/catalogs/test-case-4/dar/a017f9-labels/a017f9-labels.json +++ b/tests/data-files/catalogs/test-case-4/dar/a017f9-labels/a017f9-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "a017f9-labels", "properties": { "label:description": "Geojson building labels for scene a017f9", diff --git a/tests/data-files/catalogs/test-case-4/dar/a017f9/a017f9.json b/tests/data-files/catalogs/test-case-4/dar/a017f9/a017f9.json index 2dc89f478..761e2f97d 100644 --- a/tests/data-files/catalogs/test-case-4/dar/a017f9/a017f9.json +++ b/tests/data-files/catalogs/test-case-4/dar/a017f9/a017f9.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "a017f9", "properties": { "area": "dar", diff --git a/tests/data-files/catalogs/test-case-4/dar/b15fce-labels/b15fce-labels.json b/tests/data-files/catalogs/test-case-4/dar/b15fce-labels/b15fce-labels.json index 1734531d1..721b72aab 100644 --- a/tests/data-files/catalogs/test-case-4/dar/b15fce-labels/b15fce-labels.json +++ b/tests/data-files/catalogs/test-case-4/dar/b15fce-labels/b15fce-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "b15fce-labels", "properties": { "label:description": "Geojson building labels for scene b15fce", diff --git a/tests/data-files/catalogs/test-case-4/dar/b15fce/b15fce.json b/tests/data-files/catalogs/test-case-4/dar/b15fce/b15fce.json index 4a8106fd3..23c3b39f0 100644 --- a/tests/data-files/catalogs/test-case-4/dar/b15fce/b15fce.json +++ b/tests/data-files/catalogs/test-case-4/dar/b15fce/b15fce.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "b15fce", "properties": { "area": "dar", diff --git a/tests/data-files/catalogs/test-case-4/dar/collection.json b/tests/data-files/catalogs/test-case-4/dar/collection.json index 9b02b4f8e..4a253a796 100644 --- a/tests/data-files/catalogs/test-case-4/dar/collection.json +++ b/tests/data-files/catalogs/test-case-4/dar/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "dar", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Tier 1 training data from dar", "links": [ { diff --git a/tests/data-files/catalogs/test-case-4/dar/f883a0-labels/f883a0-labels.json b/tests/data-files/catalogs/test-case-4/dar/f883a0-labels/f883a0-labels.json index c3c515a58..0fa0b8beb 100644 --- a/tests/data-files/catalogs/test-case-4/dar/f883a0-labels/f883a0-labels.json +++ b/tests/data-files/catalogs/test-case-4/dar/f883a0-labels/f883a0-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "f883a0-labels", "properties": { "label:description": "Geojson building labels for scene f883a0", diff --git a/tests/data-files/catalogs/test-case-4/dar/f883a0/f883a0.json b/tests/data-files/catalogs/test-case-4/dar/f883a0/f883a0.json index 3cb5fa580..79057d9b4 100644 --- a/tests/data-files/catalogs/test-case-4/dar/f883a0/f883a0.json +++ b/tests/data-files/catalogs/test-case-4/dar/f883a0/f883a0.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "f883a0", "properties": { "area": "dar", diff --git a/tests/data-files/catalogs/test-case-4/kam/4e7c7f-labels/4e7c7f-labels.json b/tests/data-files/catalogs/test-case-4/kam/4e7c7f-labels/4e7c7f-labels.json index 1eab4d5a9..22b94526b 100644 --- a/tests/data-files/catalogs/test-case-4/kam/4e7c7f-labels/4e7c7f-labels.json +++ b/tests/data-files/catalogs/test-case-4/kam/4e7c7f-labels/4e7c7f-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "4e7c7f-labels", "properties": { "label:description": "Geojson building labels for scene 4e7c7f", diff --git a/tests/data-files/catalogs/test-case-4/kam/4e7c7f/4e7c7f.json b/tests/data-files/catalogs/test-case-4/kam/4e7c7f/4e7c7f.json index 76746a303..8f95552ff 100644 --- a/tests/data-files/catalogs/test-case-4/kam/4e7c7f/4e7c7f.json +++ b/tests/data-files/catalogs/test-case-4/kam/4e7c7f/4e7c7f.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "4e7c7f", "properties": { "area": "kam", diff --git a/tests/data-files/catalogs/test-case-4/kam/collection.json b/tests/data-files/catalogs/test-case-4/kam/collection.json index 0d0939fa5..37c3fef23 100644 --- a/tests/data-files/catalogs/test-case-4/kam/collection.json +++ b/tests/data-files/catalogs/test-case-4/kam/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "kam", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Tier 1 training data from kam", "links": [ { diff --git a/tests/data-files/catalogs/test-case-4/mon/207cc7-labels/207cc7-labels.json b/tests/data-files/catalogs/test-case-4/mon/207cc7-labels/207cc7-labels.json index 69e26024c..b41a47afd 100644 --- a/tests/data-files/catalogs/test-case-4/mon/207cc7-labels/207cc7-labels.json +++ b/tests/data-files/catalogs/test-case-4/mon/207cc7-labels/207cc7-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "207cc7-labels", "properties": { "label:description": "Geojson building labels for scene 207cc7", diff --git a/tests/data-files/catalogs/test-case-4/mon/207cc7/207cc7.json b/tests/data-files/catalogs/test-case-4/mon/207cc7/207cc7.json index bd0c7fd72..ce6699489 100644 --- a/tests/data-files/catalogs/test-case-4/mon/207cc7/207cc7.json +++ b/tests/data-files/catalogs/test-case-4/mon/207cc7/207cc7.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "207cc7", "properties": { "area": "mon", diff --git a/tests/data-files/catalogs/test-case-4/mon/401175-labels/401175-labels.json b/tests/data-files/catalogs/test-case-4/mon/401175-labels/401175-labels.json index 800435556..a1c0e3d98 100644 --- a/tests/data-files/catalogs/test-case-4/mon/401175-labels/401175-labels.json +++ b/tests/data-files/catalogs/test-case-4/mon/401175-labels/401175-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "401175-labels", "properties": { "label:description": "Geojson building labels for scene 401175", diff --git a/tests/data-files/catalogs/test-case-4/mon/401175/401175.json b/tests/data-files/catalogs/test-case-4/mon/401175/401175.json index e0789d660..cf9db2ece 100644 --- a/tests/data-files/catalogs/test-case-4/mon/401175/401175.json +++ b/tests/data-files/catalogs/test-case-4/mon/401175/401175.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "401175", "properties": { "area": "mon", diff --git a/tests/data-files/catalogs/test-case-4/mon/493701-labels/493701-labels.json b/tests/data-files/catalogs/test-case-4/mon/493701-labels/493701-labels.json index d1aac2b37..b828d9258 100644 --- a/tests/data-files/catalogs/test-case-4/mon/493701-labels/493701-labels.json +++ b/tests/data-files/catalogs/test-case-4/mon/493701-labels/493701-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "493701-labels", "properties": { "label:description": "Geojson building labels for scene 493701", diff --git a/tests/data-files/catalogs/test-case-4/mon/493701/493701.json b/tests/data-files/catalogs/test-case-4/mon/493701/493701.json index ad29432e2..bef050523 100644 --- a/tests/data-files/catalogs/test-case-4/mon/493701/493701.json +++ b/tests/data-files/catalogs/test-case-4/mon/493701/493701.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "493701", "properties": { "area": "mon", diff --git a/tests/data-files/catalogs/test-case-4/mon/collection.json b/tests/data-files/catalogs/test-case-4/mon/collection.json index b4ab67571..fd7925393 100644 --- a/tests/data-files/catalogs/test-case-4/mon/collection.json +++ b/tests/data-files/catalogs/test-case-4/mon/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "mon", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Tier 1 training data from mon", "links": [ { diff --git a/tests/data-files/catalogs/test-case-4/mon/f15272-labels/f15272-labels.json b/tests/data-files/catalogs/test-case-4/mon/f15272-labels/f15272-labels.json index b76a57bf1..babe6fd0d 100644 --- a/tests/data-files/catalogs/test-case-4/mon/f15272-labels/f15272-labels.json +++ b/tests/data-files/catalogs/test-case-4/mon/f15272-labels/f15272-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "f15272-labels", "properties": { "label:description": "Geojson building labels for scene f15272", diff --git a/tests/data-files/catalogs/test-case-4/mon/f15272/f15272.json b/tests/data-files/catalogs/test-case-4/mon/f15272/f15272.json index ae64b0744..b9ffde673 100644 --- a/tests/data-files/catalogs/test-case-4/mon/f15272/f15272.json +++ b/tests/data-files/catalogs/test-case-4/mon/f15272/f15272.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "f15272", "properties": { "area": "mon", diff --git a/tests/data-files/catalogs/test-case-4/nia/825a50-labels/825a50-labels.json b/tests/data-files/catalogs/test-case-4/nia/825a50-labels/825a50-labels.json index 5e5c68f08..6a467a497 100644 --- a/tests/data-files/catalogs/test-case-4/nia/825a50-labels/825a50-labels.json +++ b/tests/data-files/catalogs/test-case-4/nia/825a50-labels/825a50-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "825a50-labels", "properties": { "label:description": "Geojson building labels for scene 825a50", diff --git a/tests/data-files/catalogs/test-case-4/nia/825a50/825a50.json b/tests/data-files/catalogs/test-case-4/nia/825a50/825a50.json index be9d4723f..ebf9b0539 100644 --- a/tests/data-files/catalogs/test-case-4/nia/825a50/825a50.json +++ b/tests/data-files/catalogs/test-case-4/nia/825a50/825a50.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "825a50", "properties": { "area": "nia", diff --git a/tests/data-files/catalogs/test-case-4/nia/collection.json b/tests/data-files/catalogs/test-case-4/nia/collection.json index 912a23527..41b70d0de 100644 --- a/tests/data-files/catalogs/test-case-4/nia/collection.json +++ b/tests/data-files/catalogs/test-case-4/nia/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "nia", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Tier 1 training data from nia", "links": [ { diff --git a/tests/data-files/catalogs/test-case-4/ptn/abe1a3-labels/abe1a3-labels.json b/tests/data-files/catalogs/test-case-4/ptn/abe1a3-labels/abe1a3-labels.json index bb7c30d3a..cf64a98b6 100644 --- a/tests/data-files/catalogs/test-case-4/ptn/abe1a3-labels/abe1a3-labels.json +++ b/tests/data-files/catalogs/test-case-4/ptn/abe1a3-labels/abe1a3-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "abe1a3-labels", "properties": { "label:description": "Geojson building labels for scene abe1a3", diff --git a/tests/data-files/catalogs/test-case-4/ptn/abe1a3/abe1a3.json b/tests/data-files/catalogs/test-case-4/ptn/abe1a3/abe1a3.json index 742add1c9..26e64e184 100644 --- a/tests/data-files/catalogs/test-case-4/ptn/abe1a3/abe1a3.json +++ b/tests/data-files/catalogs/test-case-4/ptn/abe1a3/abe1a3.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "abe1a3", "properties": { "area": "ptn", diff --git a/tests/data-files/catalogs/test-case-4/ptn/collection.json b/tests/data-files/catalogs/test-case-4/ptn/collection.json index 51b541518..078ee9690 100644 --- a/tests/data-files/catalogs/test-case-4/ptn/collection.json +++ b/tests/data-files/catalogs/test-case-4/ptn/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "ptn", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Tier 1 training data from ptn", "links": [ { diff --git a/tests/data-files/catalogs/test-case-4/ptn/f49f31-labels/f49f31-labels.json b/tests/data-files/catalogs/test-case-4/ptn/f49f31-labels/f49f31-labels.json index 1dee4a024..9a82944e6 100644 --- a/tests/data-files/catalogs/test-case-4/ptn/f49f31-labels/f49f31-labels.json +++ b/tests/data-files/catalogs/test-case-4/ptn/f49f31-labels/f49f31-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "f49f31-labels", "properties": { "label:description": "Geojson building labels for scene f49f31", diff --git a/tests/data-files/catalogs/test-case-4/ptn/f49f31/f49f31.json b/tests/data-files/catalogs/test-case-4/ptn/f49f31/f49f31.json index 7761f5905..e2a2a9d19 100644 --- a/tests/data-files/catalogs/test-case-4/ptn/f49f31/f49f31.json +++ b/tests/data-files/catalogs/test-case-4/ptn/f49f31/f49f31.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "f49f31", "properties": { "area": "ptn", diff --git a/tests/data-files/catalogs/test-case-4/znz/06f252-labels/06f252-labels.json b/tests/data-files/catalogs/test-case-4/znz/06f252-labels/06f252-labels.json index 28397fb0d..8992dca96 100644 --- a/tests/data-files/catalogs/test-case-4/znz/06f252-labels/06f252-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/06f252-labels/06f252-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "06f252-labels", "properties": { "label:description": "Geojson building labels for scene 06f252", diff --git a/tests/data-files/catalogs/test-case-4/znz/06f252/06f252.json b/tests/data-files/catalogs/test-case-4/znz/06f252/06f252.json index deb2f6e5d..279ff7200 100644 --- a/tests/data-files/catalogs/test-case-4/znz/06f252/06f252.json +++ b/tests/data-files/catalogs/test-case-4/znz/06f252/06f252.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "06f252", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/076995-labels/076995-labels.json b/tests/data-files/catalogs/test-case-4/znz/076995-labels/076995-labels.json index e8b4978ca..2da3c48e0 100644 --- a/tests/data-files/catalogs/test-case-4/znz/076995-labels/076995-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/076995-labels/076995-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "076995-labels", "properties": { "label:description": "Geojson building labels for scene 076995", diff --git a/tests/data-files/catalogs/test-case-4/znz/076995/076995.json b/tests/data-files/catalogs/test-case-4/znz/076995/076995.json index 8ea3941e1..62f053e28 100644 --- a/tests/data-files/catalogs/test-case-4/znz/076995/076995.json +++ b/tests/data-files/catalogs/test-case-4/znz/076995/076995.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "076995", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/33cae6-labels/33cae6-labels.json b/tests/data-files/catalogs/test-case-4/znz/33cae6-labels/33cae6-labels.json index fe3a53e90..4a28413fb 100644 --- a/tests/data-files/catalogs/test-case-4/znz/33cae6-labels/33cae6-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/33cae6-labels/33cae6-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "33cae6-labels", "properties": { "label:description": "Geojson building labels for scene 33cae6", diff --git a/tests/data-files/catalogs/test-case-4/znz/33cae6/33cae6.json b/tests/data-files/catalogs/test-case-4/znz/33cae6/33cae6.json index 1833fd991..916d47e87 100644 --- a/tests/data-files/catalogs/test-case-4/znz/33cae6/33cae6.json +++ b/tests/data-files/catalogs/test-case-4/znz/33cae6/33cae6.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "33cae6", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/3b20d4-labels/3b20d4-labels.json b/tests/data-files/catalogs/test-case-4/znz/3b20d4-labels/3b20d4-labels.json index 8002395e7..64e4413f5 100644 --- a/tests/data-files/catalogs/test-case-4/znz/3b20d4-labels/3b20d4-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/3b20d4-labels/3b20d4-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "3b20d4-labels", "properties": { "label:description": "Geojson building labels for scene 3b20d4", diff --git a/tests/data-files/catalogs/test-case-4/znz/3b20d4/3b20d4.json b/tests/data-files/catalogs/test-case-4/znz/3b20d4/3b20d4.json index ddf41bfd7..b252b71d9 100644 --- a/tests/data-files/catalogs/test-case-4/znz/3b20d4/3b20d4.json +++ b/tests/data-files/catalogs/test-case-4/znz/3b20d4/3b20d4.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "3b20d4", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/3f8360-labels/3f8360-labels.json b/tests/data-files/catalogs/test-case-4/znz/3f8360-labels/3f8360-labels.json index 4cdbe5395..eee930df4 100644 --- a/tests/data-files/catalogs/test-case-4/znz/3f8360-labels/3f8360-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/3f8360-labels/3f8360-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "3f8360-labels", "properties": { "label:description": "Geojson building labels for scene 3f8360", diff --git a/tests/data-files/catalogs/test-case-4/znz/3f8360/3f8360.json b/tests/data-files/catalogs/test-case-4/znz/3f8360/3f8360.json index 542d0da95..9aa7267cc 100644 --- a/tests/data-files/catalogs/test-case-4/znz/3f8360/3f8360.json +++ b/tests/data-files/catalogs/test-case-4/znz/3f8360/3f8360.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "3f8360", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/425403-labels/425403-labels.json b/tests/data-files/catalogs/test-case-4/znz/425403-labels/425403-labels.json index 61cbdaa51..cbcb65d21 100644 --- a/tests/data-files/catalogs/test-case-4/znz/425403-labels/425403-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/425403-labels/425403-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "425403-labels", "properties": { "label:description": "Geojson building labels for scene 425403", diff --git a/tests/data-files/catalogs/test-case-4/znz/425403/425403.json b/tests/data-files/catalogs/test-case-4/znz/425403/425403.json index 803994a74..906b07b1e 100644 --- a/tests/data-files/catalogs/test-case-4/znz/425403/425403.json +++ b/tests/data-files/catalogs/test-case-4/znz/425403/425403.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "425403", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/75cdfa-labels/75cdfa-labels.json b/tests/data-files/catalogs/test-case-4/znz/75cdfa-labels/75cdfa-labels.json index 86ca2a2ca..af1777b57 100644 --- a/tests/data-files/catalogs/test-case-4/znz/75cdfa-labels/75cdfa-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/75cdfa-labels/75cdfa-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "75cdfa-labels", "properties": { "label:description": "Geojson building labels for scene 75cdfa", diff --git a/tests/data-files/catalogs/test-case-4/znz/75cdfa/75cdfa.json b/tests/data-files/catalogs/test-case-4/znz/75cdfa/75cdfa.json index 70f9c6499..cd1c49d49 100644 --- a/tests/data-files/catalogs/test-case-4/znz/75cdfa/75cdfa.json +++ b/tests/data-files/catalogs/test-case-4/znz/75cdfa/75cdfa.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "75cdfa", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/9b8638-labels/9b8638-labels.json b/tests/data-files/catalogs/test-case-4/znz/9b8638-labels/9b8638-labels.json index b2f897e81..b1a600c6e 100644 --- a/tests/data-files/catalogs/test-case-4/znz/9b8638-labels/9b8638-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/9b8638-labels/9b8638-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "9b8638-labels", "properties": { "label:description": "Geojson building labels for scene 9b8638", diff --git a/tests/data-files/catalogs/test-case-4/znz/9b8638/9b8638.json b/tests/data-files/catalogs/test-case-4/znz/9b8638/9b8638.json index 5b6bec042..0eee09322 100644 --- a/tests/data-files/catalogs/test-case-4/znz/9b8638/9b8638.json +++ b/tests/data-files/catalogs/test-case-4/znz/9b8638/9b8638.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "9b8638", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/aee7fd-labels/aee7fd-labels.json b/tests/data-files/catalogs/test-case-4/znz/aee7fd-labels/aee7fd-labels.json index fce92c30f..7f6a4d5ca 100644 --- a/tests/data-files/catalogs/test-case-4/znz/aee7fd-labels/aee7fd-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/aee7fd-labels/aee7fd-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "aee7fd-labels", "properties": { "label:description": "Geojson building labels for scene aee7fd", diff --git a/tests/data-files/catalogs/test-case-4/znz/aee7fd/aee7fd.json b/tests/data-files/catalogs/test-case-4/znz/aee7fd/aee7fd.json index 2cb8c26ef..4af942eb2 100644 --- a/tests/data-files/catalogs/test-case-4/znz/aee7fd/aee7fd.json +++ b/tests/data-files/catalogs/test-case-4/znz/aee7fd/aee7fd.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "aee7fd", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/bc32f1-labels/bc32f1-labels.json b/tests/data-files/catalogs/test-case-4/znz/bc32f1-labels/bc32f1-labels.json index dd0f27b37..7de5c9423 100644 --- a/tests/data-files/catalogs/test-case-4/znz/bc32f1-labels/bc32f1-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/bc32f1-labels/bc32f1-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "bc32f1-labels", "properties": { "label:description": "Geojson building labels for scene bc32f1", diff --git a/tests/data-files/catalogs/test-case-4/znz/bc32f1/bc32f1.json b/tests/data-files/catalogs/test-case-4/znz/bc32f1/bc32f1.json index 4604c83e0..2becf9013 100644 --- a/tests/data-files/catalogs/test-case-4/znz/bc32f1/bc32f1.json +++ b/tests/data-files/catalogs/test-case-4/znz/bc32f1/bc32f1.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "bc32f1", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/bd5c14-labels/bd5c14-labels.json b/tests/data-files/catalogs/test-case-4/znz/bd5c14-labels/bd5c14-labels.json index 29220ea44..624664282 100644 --- a/tests/data-files/catalogs/test-case-4/znz/bd5c14-labels/bd5c14-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/bd5c14-labels/bd5c14-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "bd5c14-labels", "properties": { "label:description": "Geojson building labels for scene bd5c14", diff --git a/tests/data-files/catalogs/test-case-4/znz/bd5c14/bd5c14.json b/tests/data-files/catalogs/test-case-4/znz/bd5c14/bd5c14.json index bd30cf1c6..5681fcbcf 100644 --- a/tests/data-files/catalogs/test-case-4/znz/bd5c14/bd5c14.json +++ b/tests/data-files/catalogs/test-case-4/znz/bd5c14/bd5c14.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "bd5c14", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/c7415c-labels/c7415c-labels.json b/tests/data-files/catalogs/test-case-4/znz/c7415c-labels/c7415c-labels.json index 2061f4535..75937078f 100644 --- a/tests/data-files/catalogs/test-case-4/znz/c7415c-labels/c7415c-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/c7415c-labels/c7415c-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "c7415c-labels", "properties": { "label:description": "Geojson building labels for scene c7415c", diff --git a/tests/data-files/catalogs/test-case-4/znz/c7415c/c7415c.json b/tests/data-files/catalogs/test-case-4/znz/c7415c/c7415c.json index 10577a129..fd3a4311e 100644 --- a/tests/data-files/catalogs/test-case-4/znz/c7415c/c7415c.json +++ b/tests/data-files/catalogs/test-case-4/znz/c7415c/c7415c.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "c7415c", "properties": { "area": "znz", diff --git a/tests/data-files/catalogs/test-case-4/znz/collection.json b/tests/data-files/catalogs/test-case-4/znz/collection.json index fdbfe4815..6a51b8656 100644 --- a/tests/data-files/catalogs/test-case-4/znz/collection.json +++ b/tests/data-files/catalogs/test-case-4/znz/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "znz", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Tier 1 training data from znz", "links": [ { diff --git a/tests/data-files/catalogs/test-case-4/znz/e52478-labels/e52478-labels.json b/tests/data-files/catalogs/test-case-4/znz/e52478-labels/e52478-labels.json index 571a75870..8cb355238 100644 --- a/tests/data-files/catalogs/test-case-4/znz/e52478-labels/e52478-labels.json +++ b/tests/data-files/catalogs/test-case-4/znz/e52478-labels/e52478-labels.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "e52478-labels", "properties": { "label:description": "Geojson building labels for scene e52478", diff --git a/tests/data-files/catalogs/test-case-4/znz/e52478/e52478.json b/tests/data-files/catalogs/test-case-4/znz/e52478/e52478.json index e22516b83..0223c1fd1 100644 --- a/tests/data-files/catalogs/test-case-4/znz/e52478/e52478.json +++ b/tests/data-files/catalogs/test-case-4/znz/e52478/e52478.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "e52478", "properties": { "area": "znz", 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 943131dbd..267b41344 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 @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "CBERS_4_MUX_20190510_027_069_L2", "properties": { "gsd": 20.0, diff --git a/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/069/catalog.json b/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/069/catalog.json index 983ba7d49..9d79ecb2b 100644 --- a/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/069/catalog.json +++ b/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/069/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "CBERS4 MUX 027/069", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "CBERS4 MUX camera path 027 row 069 catalog", "links": [ { diff --git a/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/collection.json b/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/collection.json index 8a5f2973c..a2a03dfff 100644 --- a/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/collection.json +++ b/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/CBERS4-MUX-027/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "CBERS4MUX", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "CBERS4 MUX camera catalog", "links": [ { diff --git a/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/catalog.json b/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/catalog.json index 785c48c4a..2cc807daf 100644 --- a/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/catalog.json +++ b/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/CBERS4-MUX-027/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "CBERS4 MUX 027", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "CBERS4 MUX camera path 027 catalog", "links": [ { diff --git a/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/collection.json b/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/collection.json index 0ece331f6..e338ee1c3 100644 --- a/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/collection.json +++ b/tests/data-files/catalogs/test-case-5/CBERS4/CBERS4MUX/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "CBERS4MUX", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "CBERS4 MUX camera catalog", "links": [ { diff --git a/tests/data-files/catalogs/test-case-5/CBERS4/catalog.json b/tests/data-files/catalogs/test-case-5/CBERS4/catalog.json index 6fc0a54a8..ced0cd604 100644 --- a/tests/data-files/catalogs/test-case-5/CBERS4/catalog.json +++ b/tests/data-files/catalogs/test-case-5/CBERS4/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "CBERS4", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Catalogs of CBERS-4 mission's imagery on AWS", "links": [ { diff --git a/tests/data-files/catalogs/test-case-5/catalog.json b/tests/data-files/catalogs/test-case-5/catalog.json index 8c077bccd..a437b0244 100644 --- a/tests/data-files/catalogs/test-case-5/catalog.json +++ b/tests/data-files/catalogs/test-case-5/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "CBERS", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Catalogs of CBERS mission's imagery on AWS", "links": [ { diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/400c22e3-5b54-438b-b600-5e9bd6d0a498/3c67b59c-2e6f-47fb-ba3c-0dd106941096.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/400c22e3-5b54-438b-b600-5e9bd6d0a498/3c67b59c-2e6f-47fb-ba3c-0dd106941096.json index 5f7a09ec1..55ae5ca5b 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/400c22e3-5b54-438b-b600-5e9bd6d0a498/3c67b59c-2e6f-47fb-ba3c-0dd106941096.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/400c22e3-5b54-438b-b600-5e9bd6d0a498/3c67b59c-2e6f-47fb-ba3c-0dd106941096.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "3c67b59c-2e6f-47fb-ba3c-0dd106941096", "properties": { "label:description": "Labels in layer", diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/400c22e3-5b54-438b-b600-5e9bd6d0a498/collection.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/400c22e3-5b54-438b-b600-5e9bd6d0a498/collection.json index 7ebf0a79d..88b230a31 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/400c22e3-5b54-438b-b600-5e9bd6d0a498/collection.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/400c22e3-5b54-438b-b600-5e9bd6d0a498/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "400c22e3-5b54-438b-b600-5e9bd6d0a498", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Label Collection in layer 12cb17a8-ae08-469c-a2be-4d0619240014", "links": [ { diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/3bfb5bd3-5740-4ed0-92c9-968cc532dbc5.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/3bfb5bd3-5740-4ed0-92c9-968cc532dbc5.json index bf2e9a83d..20137367c 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/3bfb5bd3-5740-4ed0-92c9-968cc532dbc5.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/3bfb5bd3-5740-4ed0-92c9-968cc532dbc5.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "3bfb5bd3-5740-4ed0-92c9-968cc532dbc5", "properties": { "datetime": "2019-08-21T15:51:17.881000Z" diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/41c57cea-50ba-495c-9ee7-17ddba837380.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/41c57cea-50ba-495c-9ee7-17ddba837380.json index d98ffbf2c..e15f406be 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/41c57cea-50ba-495c-9ee7-17ddba837380.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/41c57cea-50ba-495c-9ee7-17ddba837380.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "41c57cea-50ba-495c-9ee7-17ddba837380", "properties": { "datetime": "2019-08-21T15:51:17.881000Z" diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/4514bbc6-cd17-4c14-816d-1709dfc61079.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/4514bbc6-cd17-4c14-816d-1709dfc61079.json index 5972eea78..37d26e49d 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/4514bbc6-cd17-4c14-816d-1709dfc61079.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/4514bbc6-cd17-4c14-816d-1709dfc61079.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "4514bbc6-cd17-4c14-816d-1709dfc61079", "properties": { "datetime": "2019-08-21T15:51:17.881000Z" diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/52072b95-0275-4255-be5e-c567006f80cb.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/52072b95-0275-4255-be5e-c567006f80cb.json index 53e4597a4..68b42ea96 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/52072b95-0275-4255-be5e-c567006f80cb.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/52072b95-0275-4255-be5e-c567006f80cb.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "52072b95-0275-4255-be5e-c567006f80cb", "properties": { "datetime": "2019-08-21T15:51:17.881000Z" diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/84fe42c0-9d23-404a-bd0f-1406112cca8c.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/84fe42c0-9d23-404a-bd0f-1406112cca8c.json index a329981e8..20071b199 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/84fe42c0-9d23-404a-bd0f-1406112cca8c.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/84fe42c0-9d23-404a-bd0f-1406112cca8c.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "84fe42c0-9d23-404a-bd0f-1406112cca8c", "properties": { "datetime": "2019-08-21T15:51:17.881000Z" diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/884a939d-1d73-4351-9601-f9ee89a980b0.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/884a939d-1d73-4351-9601-f9ee89a980b0.json index 91c02cbb7..0fcad3b71 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/884a939d-1d73-4351-9601-f9ee89a980b0.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/884a939d-1d73-4351-9601-f9ee89a980b0.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "884a939d-1d73-4351-9601-f9ee89a980b0", "properties": { "datetime": "2019-08-21T15:51:17.881000Z" diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/a6bd2ff9-3805-40ab-96fa-b7f112b18973.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/a6bd2ff9-3805-40ab-96fa-b7f112b18973.json index 4776a4635..a1814479a 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/a6bd2ff9-3805-40ab-96fa-b7f112b18973.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/a6bd2ff9-3805-40ab-96fa-b7f112b18973.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "a6bd2ff9-3805-40ab-96fa-b7f112b18973", "properties": { "datetime": "2019-08-21T15:51:17.881000Z" diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/collection.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/collection.json index 8448f80f7..3decb20dd 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/collection.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "9420e0fd-3731-40e8-93ff-5b6ad0067048", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Scene collection in layer 12cb17a8-ae08-469c-a2be-4d0619240014", "links": [ { diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/e40bb30d-0295-42ed-ba04-6cf563b057f9.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/e40bb30d-0295-42ed-ba04-6cf563b057f9.json index 2837767fd..5737c12ad 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/e40bb30d-0295-42ed-ba04-6cf563b057f9.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/e40bb30d-0295-42ed-ba04-6cf563b057f9.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "e40bb30d-0295-42ed-ba04-6cf563b057f9", "properties": { "datetime": "2019-08-21T15:51:17.881000Z" diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/eb1124cc-3b45-4487-bc2c-4855ac877ad9.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/eb1124cc-3b45-4487-bc2c-4855ac877ad9.json index cdeabfb7e..c004c8061 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/eb1124cc-3b45-4487-bc2c-4855ac877ad9.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/9420e0fd-3731-40e8-93ff-5b6ad0067048/eb1124cc-3b45-4487-bc2c-4855ac877ad9.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "eb1124cc-3b45-4487-bc2c-4855ac877ad9", "properties": { "datetime": "2019-08-21T15:51:17.881000Z" diff --git a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/collection.json b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/collection.json index 479c18b39..01719d089 100644 --- a/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/collection.json +++ b/tests/data-files/catalogs/test-case-6/12cb17a8-ae08-469c-a2be-4d0619240014/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "12cb17a8-ae08-469c-a2be-4d0619240014", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Project Layer Collection", "links": [ { diff --git a/tests/data-files/catalogs/test-case-6/catalog.json b/tests/data-files/catalogs/test-case-6/catalog.json index 786d6c675..9df736de1 100644 --- a/tests/data-files/catalogs/test-case-6/catalog.json +++ b/tests/data-files/catalogs/test-case-6/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "fd478c2b-3f71-41e4-a87b-e97a8a0d0afa", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Exported from Raster Foundry 2020-01-09 21:17:20.186", "links": [ { diff --git a/tests/data-files/classification/classification_landsat_example.json b/tests/data-files/classification/classification_landsat_example.json index 2a5edef7d..6831e9b5c 100644 --- a/tests/data-files/classification/classification_landsat_example.json +++ b/tests/data-files/classification/classification_landsat_example.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "LC08_L2SP_047027_20201204_02_T1", "properties": { "platform": "landsat-8", @@ -1218,4 +1218,4 @@ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json", "https://stac-extensions.github.io/classification/v1.1.0/schema.json" ] -} +} \ No newline at end of file diff --git a/tests/data-files/classification/collection-item-assets-raster-bands.json b/tests/data-files/classification/collection-item-assets-raster-bands.json index 386181148..cddc7a98c 100644 --- a/tests/data-files/classification/collection-item-assets-raster-bands.json +++ b/tests/data-files/classification/collection-item-assets-raster-bands.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "103001005D31F500", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "103001005D31F500 ARD Tiles", "links": [ { diff --git a/tests/data-files/collections/multi-extent.json b/tests/data-files/collections/multi-extent.json index 9871c278e..0ce5f5112 100644 --- a/tests/data-files/collections/multi-extent.json +++ b/tests/data-files/collections/multi-extent.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "area-1-1", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test collection country-1", "links": [ { @@ -40,6 +40,12 @@ 2.8916575492899987, -0.9610595703125, 3.275202171119132 + ], + [ + -1.9, + 2.8916575492899987, + -1.6, + 3.275202171119132 ] ] }, diff --git a/tests/data-files/collections/with-assets.json b/tests/data-files/collections/with-assets.json index a0a4655ab..cc5ddc481 100644 --- a/tests/data-files/collections/with-assets.json +++ b/tests/data-files/collections/with-assets.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "area-1-1", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test collection country-1", "links": [ { diff --git a/tests/data-files/datacube/item.json b/tests/data-files/datacube/item.json index cdedc5272..3d326ffd8 100644 --- a/tests/data-files/datacube/item.json +++ b/tests/data-files/datacube/item.json @@ -1,5 +1,5 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ "https://stac-extensions.github.io/datacube/v2.2.0/schema.json" ], diff --git a/tests/data-files/eo/eo-collection.json b/tests/data-files/eo/eo-collection.json index 9cf21ddc4..8658e5756 100644 --- a/tests/data-files/eo/eo-collection.json +++ b/tests/data-files/eo/eo-collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "landsat-8-l1", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Landat 8 imagery radiometrically calibrated and orthorectified using gound points and Digital Elevation Model (DEM) data to correct relief displacement.", "links": [ { diff --git a/tests/data-files/eo/eo-landsat-example.json b/tests/data-files/eo/eo-landsat-example.json index 9cf4f1dd8..065903f19 100644 --- a/tests/data-files/eo/eo-landsat-example.json +++ b/tests/data-files/eo/eo-landsat-example.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "LC08_L1TP_107018_20181001_20181001_01_RT", "properties": { "platform": "landsat-8", diff --git a/tests/data-files/eo/eo-sentinel2-item.json b/tests/data-files/eo/eo-sentinel2-item.json index 3ac8e1fff..59b270e8c 100644 --- a/tests/data-files/eo/eo-sentinel2-item.json +++ b/tests/data-files/eo/eo-sentinel2-item.json @@ -1,5 +1,5 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json", "https://stac-extensions.github.io/processing/v1.0.0/schema.json", diff --git a/tests/data-files/eo/sample-bands-in-item-properties.json b/tests/data-files/eo/sample-bands-in-item-properties.json index b1cdcc4b9..faf343d81 100644 --- a/tests/data-files/eo/sample-bands-in-item-properties.json +++ b/tests/data-files/eo/sample-bands-in-item-properties.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "CS3-20160503_132131_05", "properties": { "datetime": "2016-05-03T13:22:30Z", diff --git a/tests/data-files/examples/1.1.0/README.md b/tests/data-files/examples/1.1.0/README.md new file mode 100644 index 000000000..a5f8d3f62 --- /dev/null +++ b/tests/data-files/examples/1.1.0/README.md @@ -0,0 +1,91 @@ +# STAC Examples + +This directory contains various examples for all parts of the STAC specification. +It is structured to be two valid STACs, meaning both [catalog.json](catalog.json) and [collection.json](collection.json) +should successfully load in various tools. They do not follow *all* the [best practices](../best-practices.md) for STAC, mostly +due to the fact that they contrive examples to show the spec and we are hosting in GitHub. But we note below where they differ from an ideal catalog. + +The various fields are mostly fictional, to be able to demonstrate the various aspects of the spec as tersely as possible. To get a sense +of real world STAC implementations we recommend exploring the [stac-examples](http://github.com/stac-utils/stac-examples) repo, which +gathers in one place copies of STAC [Items](../item-spec/item-spec.md) and [Collection](../collection-spec/collection-spec.md) +from a number of different production catalogs that all follow good STAC practices. And you should also explore the various catalogs +listed on [STAC Index](http://stacindex.org), to see full catalogs in production. + +## Organization + +This directory contains two STAC implementations, both valid, but simplified a bit to be illustrative of the key concepts, so +they do not quite follow all the best practices. + +### Simple Collection + +This STAC implementation consists of three files, all contained at the root of the examples directory + +**[collection.json](collection.json)** is a minimal 'simple collection', that links to three items. + +**[simple-item.json](simple-item.json)** is the most minimal possible compliant Item record. Most all data will +include additional fields, as STAC is designed to be a minimal common subset. But it is useful for showing exactly what is +required. + +**[core-item.json](core-item.json)** is a more realistic example, for a hypothetical analytic image +acquisition from a satellite company called 'Remote Data'. It includes additional fields covering the [common +metadata](../commons/common-metadata.md). It also links to a variety of assets that is typical for +satellite imagery, as most providers include a number of complementary files. + +**[extended-item.json](extended-item.json)** is arguably an even more realistic example, as it includes a number of the +[extensions](../extensions/) that are commonly used, to demonstrate how implementations tend to start with the core, and add in +a number of the core extensions. + +**[collectionless-item.json](collectionless-item.json)** demonstrates the common metadata that is only used when an Item does not have +a collection. It is recommended to organize items in collections, but we wanted to show how this works. This is not technically in the +'simple collection' of this section, but it follows the same pattern, so is included here. + +### Nested Catalog + +This STAC implementation shows a common pattern, starting with a catalog that links to a number of distinct collections, which may +link down to a number of items. + +**[catalog.json](catalog.json)** is a minimal catalog implementation, linking to two other collections. + +**[collection-only/collection.json](collection-only/collection.json)** is a collection that does not link to any items. This +demonstrates how is is possible to make use of STAC Collections without needing items, to serve as nice summarizing metadata for +tools that work with full layers / collections. This example collection is based on real Sentinel-2 values, so is not quite fictional, +but should be taken as just an example. + +**[extensions-collection/collection.json](extensions-collection/collection.json)** contains a small number of items, that demonstrate +more functionality available in STAC [extensions](../extensions/). These are linked to directly from the individual extensions. These +items follow the recommendations for [Catalog Layout Best Practices](../best-practices.md#catalog-layout). + +## In Depth + +As mentioned above, the files in this examples directory form valid STAC implementations. They are all based on a +fictional remote sensing company called 'Remote Data', with a URL at remotedata.io. This domain has not been set up, so those links +will not work, but any valid data provider should provide valid links to their homepage. + +The examples use the `rd:` prefix to show how providers can use custom fields when there are not set fields. In the examples these +do not link to a schema which is completely valid, but it is recommended that providers do write a JSON schema that can validate +their custom fields (we will work to add an example schema for the `rd:` fields in the future). + +### Catalog Type + +One of the most important STAC Best Practices is to [use links consistently](../best-practices.md#use-of-links), following one of the +described 'catalog types'. The catalogs described here are [Relative Published Catalogs](../best-practices.md#relative-published-catalog), +that use absolute URL's to refer to their assets (so would be an example of a [Self-contained Metadata +Only](../best-practices.md#self-contained-metadata-only) catalog that is published). + +### Differences with STAC Best Practices + +One of the most important documents in this repository is the one about [best practices](../best-practices.md). It describes a number +of practical recommendations gained by people actually implementing STAC. The core spec is designed to be as flexible as possible, so +that it is not too rigid and unable to handle unanticipated needs. But we recommend following as many of the best practices as is +feasible, as it will help ensure various STAC tools work much better. The examples in this folder don't align with all the best +practices, mostly because they are meant to demonstrate things as tersely as possible, and also because they live directly inside +a github repository. As many people will look at these examples and take them as 'how things should be' we felt its important to +highlight where things here differ from the actual best practices. + +#### Catalog Layout + +Another important recommendations concerns the [layout of STAC catalogs](../best-practices.md#catalog-layout). This is important +for tools to be able to expect a certain layout, and most tools will follow the described layout. The simple collection that consists +of the collection.json and its 3 linked items violates this. This is done to be able to show item examples directly in the root of +the 'examples' folder, so people don't have to dig deep into folders to get a quick example. But a proper catalog layout would +put the items in sub-directories, along with their assets. diff --git a/tests/data-files/examples/1.1.0/catalog.json b/tests/data-files/examples/1.1.0/catalog.json new file mode 100644 index 000000000..a9fe3ef8e --- /dev/null +++ b/tests/data-files/examples/1.1.0/catalog.json @@ -0,0 +1,43 @@ +{ + "id": "examples", + "type": "Catalog", + "title": "Example Catalog", + "stac_version": "1.1.0", + "description": "This catalog is a simple demonstration of an example catalog that is used to organize a hierarchy of collections and their items.", + "links": [ + { + "rel": "root", + "href": "./catalog.json", + "type": "application/json" + }, + { + "rel": "child", + "href": "./extensions-collection/collection.json", + "type": "application/json", + "title": "Collection Demonstrating STAC Extensions" + }, + { + "rel": "child", + "href": "./collection-only/collection.json", + "type": "application/json", + "title": "Collection with no items (standalone)" + }, + { + "rel": "child", + "href": "./collection-only/collection-with-schemas.json", + "type": "application/json", + "title": "Collection with no items (standalone with JSON Schemas)" + }, + { + "rel": "item", + "href": "./collectionless-item.json", + "type": "application/json", + "title": "Item that does not have a collection (not recommended, but allowed by the spec)" + }, + { + "rel": "self", + "href": "https://raw.githubusercontent.com/radiantearth/stac-spec/v1.1.0/examples/catalog.json", + "type": "application/json" + } + ] +} diff --git a/tests/data-files/examples/1.1.0/collection-only/collection-with-schemas.json b/tests/data-files/examples/1.1.0/collection-only/collection-with-schemas.json new file mode 100644 index 000000000..471da1d39 --- /dev/null +++ b/tests/data-files/examples/1.1.0/collection-only/collection-with-schemas.json @@ -0,0 +1,311 @@ +{ + "stac_version": "1.1.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v2.0.0/schema.json", + "https://stac-extensions.github.io/sat/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ], + "id": "sentinel-2", + "type": "Collection", + "title": "Sentinel-2 MSI: MultiSpectral Instrument, Level-2A", + "description": "The SENTINEL-2 mission is a land monitoring constellation of two satellites each equipped with a MSI (Multispectral Imager) instrument covering 13 spectral bands providing high resolution optical imagery (i.e., 10m, 20m, 60 m) every 10 days with one satellite and 5 days with two satellites", + "license": "other", + "extent": { + "spatial": { + "bbox": [ + [ + -180, + -82.852377834669, + 180, + 82.819463367711 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2017-04-12T02:57:21.459000Z", + "2021-04-22T11:30:12.767000Z" + ] + ] + } + }, + "links": [ + { + "rel": "parent", + "href": "../catalog.json", + "type": "application/json", + "title": "Example Catalog" + }, + { + "rel": "root", + "href": "../catalog.json", + "type": "application/json", + "title": "Example Catalog" + }, + { + "rel": "license", + "href": "https://scihub.copernicus.eu/twiki/pub/SciHubWebPortal/TermsConditions/Sentinel_Data_Terms_and_Conditions.pdf", + "title": "Legal notice on the use of Copernicus Sentinel Data and Service Information" + } + ], + "providers": [ + { + "name": "European Union/ESA/Copernicus", + "roles": [ + "producer", + "licensor" + ], + "url": "https://sentinel.esa.int/web/sentinel/user-guides/sentinel-2-msi" + }, + { + "name": "AWS", + "roles": [ + "host" + ], + "url": "https://registry.opendata.aws/sentinel-2/" + }, + { + "name": "jeobrowser", + "roles": [ + "processor" + ], + "url": "https://github.com/jjrom/resto" + } + ], + "summaries": { + "datetime": { + "minimum": "2017-04-12T02:57:21Z", + "maximum": "2021-04-22T11:30:12Z" + }, + "instruments": { + "type": "string", + "const": "msi", + "title": "Multispectral Instrument", + "count": 6613431 + }, + "resto:landcover": { + "type": "string", + "oneOf": [ + { + "const": "cultivated", + "title": "Cultivated", + "count": 490750 + }, + { + "const": "desert", + "title": "Desert", + "count": 543120 + }, + { + "const": "flooded", + "title": "Flooded", + "count": 5187 + }, + { + "const": "forest", + "title": "Forest", + "count": 767807 + }, + { + "const": "herbaceous", + "title": "Herbaceous", + "count": 674281 + }, + { + "const": "ice", + "title": "Ice", + "count": 231285 + }, + { + "const": "urban", + "title": "Urban", + "count": 1219 + }, + { + "const": "water", + "title": "Water", + "count": 2303314 + } + ] + }, + "resto:location": { + "type": "string", + "oneOf": [ + { + "const": "tropical", + "title": "Tropical", + "count": 1807474 + }, + { + "const": "southern", + "title": "Southern", + "count": 1671685 + }, + { + "const": "northern", + "title": "Northern", + "count": 4876669 + }, + { + "const": "equatorial", + "title": "Equatorial", + "count": 27302 + }, + { + "const": "coastal", + "title": "Coastal", + "count": 1495516 + } + ] + }, + "platform": { + "type": "string", + "oneOf": [ + { + "const": "sentinel-2b", + "title": "Sentinel 2B", + "count": 3495597 + }, + { + "const": "sentinel-2a", + "title": "Sentinel 2A", + "count": 3117831 + } + ] + }, + "resto:season": { + "type": "integer", + "oneOf": [ + { + "const": 0, + "title": "Winter", + "count": 1621108 + }, + { + "const": 2, + "title": "Summer", + "count": 2279472 + }, + { + "const": 1, + "title": "Spring", + "count": 1577067 + }, + { + "const": 3, + "title": "Autumn", + "count": 1098015 + } + ] + }, + "bands": [ + { + "title": "B1", + "eo:common_name": "coastal", + "eo:center_wavelength": 0.4439, + "gsd": 60 + }, + { + "title": "B2", + "eo:common_name": "blue", + "eo:center_wavelength": 0.4966, + "gsd": 10 + }, + { + "title": "B3", + "eo:common_name": "green", + "eo:center_wavelength": 0.56, + "gsd": 10 + }, + { + "title": "B4", + "eo:common_name": "red", + "eo:center_wavelength": 0.6645, + "gsd": 10 + }, + { + "title": "B5", + "eo:center_wavelength": 0.7039, + "gsd": 20 + }, + { + "title": "B6", + "eo:center_wavelength": 0.7402, + "gsd": 20 + }, + { + "title": "B7", + "eo:center_wavelength": 0.7825, + "gsd": 20 + }, + { + "title": "B8", + "eo:common_name": "nir", + "eo:center_wavelength": 0.8351, + "gsd": 10 + }, + { + "title": "B8A", + "eo:center_wavelength": 0.8648, + "gsd": 20 + }, + { + "title": "B9", + "eo:center_wavelength": 0.945, + "gsd": 60 + }, + { + "title": "B10", + "eo:center_wavelength": 0.13735, + "gsd": 60 + }, + { + "title": "B11", + "eo:common_name": "swir16", + "eo:center_wavelength": 0.16137, + "gsd": 20 + }, + { + "title": "B12", + "eo:common_name": "swir22", + "eo:center_wavelength": 0.22024, + "gsd": 20 + } + ] + }, + "item_assets": { + "B1": { + "title": "Band 1 (coastal)", + "type": "image/tiff; application=geotiff", + "roles": [ + "data", + "visual" + ] + }, + "B2": { + "title": "Band 2 (blue)", + "type": "image/tiff; application=geotiff", + "roles": [ + "data", + "visual" + ] + }, + "B3": { + "title": "Band 3 (green)", + "type": "image/tiff; application=geotiff", + "roles": [ + "data", + "visual" + ] + }, + "B4": { + "title": "Band 4 (red)", + "type": "image/tiff; application=geotiff", + "roles": [ + "data", + "visual" + ] + } + } +} \ No newline at end of file diff --git a/tests/data-files/examples/1.1.0/collection-only/collection.json b/tests/data-files/examples/1.1.0/collection-only/collection.json new file mode 100644 index 000000000..ca5db9cd7 --- /dev/null +++ b/tests/data-files/examples/1.1.0/collection-only/collection.json @@ -0,0 +1,233 @@ +{ + "type": "Collection", + "stac_version": "1.1.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v2.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" + ], + "id": "sentinel-2", + "title": "Sentinel-2 MSI: MultiSpectral Instrument, Level-1C", + "description": "Sentinel-2 is a wide-swath, high-resolution, multi-spectral\nimaging mission supporting Copernicus Land Monitoring studies,\nincluding the monitoring of vegetation, soil and water cover,\nas well as observation of inland waterways and coastal areas.\n\nThe Sentinel-2 data contain 13 UINT16 spectral bands representing\nTOA reflectance scaled by 10000. See the [Sentinel-2 User Handbook](https://sentinel.esa.int/documents/247904/685211/Sentinel-2_User_Handbook)\nfor details. In addition, three QA bands are present where one\n(QA60) is a bitmask band with cloud mask information. For more\ndetails, [see the full explanation of how cloud masks are computed.](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-2-msi/level-1c/cloud-masks)\n\nEach Sentinel-2 product (zip archive) may contain multiple\ngranules. Each granule becomes a separate Earth Engine asset.\nEE asset ids for Sentinel-2 assets have the following format:\nCOPERNICUS/S2/20151128T002653_20151128T102149_T56MNN. Here the\nfirst numeric part represents the sensing date and time, the\nsecond numeric part represents the product generation date and\ntime, and the final 6-character string is a unique granule identifier\nindicating its UTM grid reference (see [MGRS](https://en.wikipedia.org/wiki/Military_Grid_Reference_System)).\n\nFor more details on Sentinel-2 radiometric resoltuon, [see this page](https://earth.esa.int/web/sentinel/user-guides/sentinel-2-msi/resolutions/radiometric).\n", + "license": "other", + "keywords": [ + "copernicus", + "esa", + "eu", + "msi", + "radiance", + "sentinel" + ], + "providers": [ + { + "name": "European Union/ESA/Copernicus", + "roles": [ + "producer", + "licensor" + ], + "url": "https://sentinel.esa.int/web/sentinel/user-guides/sentinel-2-msi" + } + ], + "extent": { + "spatial": { + "bbox": [ + [ + -180, + -56, + 180, + 83 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2015-06-23T00:00:00Z", + null + ] + ] + } + }, + "assets": { + "metadata_iso_19139": { + "roles": [ + "metadata", + "iso-19139" + ], + "href": "https://storage.googleapis.com/open-cogs/stac-examples/sentinel-2-iso-19139.xml", + "title": "ISO 19139 metadata", + "type": "application/vnd.iso.19139+xml" + } + }, + "summaries": { + "datetime": { + "minimum": "2015-06-23T00:00:00Z", + "maximum": "2019-07-10T13:44:56Z" + }, + "platform": [ + "sentinel-2a", + "sentinel-2b" + ], + "constellation": [ + "sentinel-2" + ], + "instruments": [ + "msi" + ], + "view:off_nadir": { + "minimum": 0, + "maximum": 100 + }, + "view:sun_elevation": { + "minimum": 6.78, + "maximum": 89.9 + }, + "gsd": [ + 10, + 30, + 60 + ], + "proj:code": [ + "EPSG:32601", + "EPSG:32602", + "EPSG:32603", + "EPSG:32604", + "EPSG:32605", + "EPSG:32606", + "EPSG:32607", + "EPSG:32608", + "EPSG:32609", + "EPSG:32610", + "EPSG:32611", + "EPSG:32612", + "EPSG:32613", + "EPSG:32614", + "EPSG:32615", + "EPSG:32616", + "EPSG:32617", + "EPSG:32618", + "EPSG:32619", + "EPSG:32620", + "EPSG:32621", + "EPSG:32622", + "EPSG:32623", + "EPSG:32624", + "EPSG:32625", + "EPSG:32626", + "EPSG:32627", + "EPSG:32628", + "EPSG:32629", + "EPSG:32630", + "EPSG:32631", + "EPSG:32632", + "EPSG:32633", + "EPSG:32634", + "EPSG:32635", + "EPSG:32636", + "EPSG:32637", + "EPSG:32638", + "EPSG:32639", + "EPSG:32640", + "EPSG:32641", + "EPSG:32642", + "EPSG:32643", + "EPSG:32644", + "EPSG:32645", + "EPSG:32646", + "EPSG:32647", + "EPSG:32648", + "EPSG:32649", + "EPSG:32650", + "EPSG:32651", + "EPSG:32652", + "EPSG:32653", + "EPSG:32654", + "EPSG:32655", + "EPSG:32656", + "EPSG:32657", + "EPSG:32658", + "EPSG:32659", + "EPSG:32660" + ], + "bands": [ + { + "name": "B1", + "eo:common_name": "coastal", + "eo:center_wavelength": 0.4439 + }, + { + "name": "B2", + "eo:common_name": "blue", + "eo:center_wavelength": 0.4966 + }, + { + "name": "B3", + "eo:common_name": "green", + "eo:center_wavelength": 0.56 + }, + { + "name": "B4", + "eo:common_name": "red", + "eo:center_wavelength": 0.6645 + }, + { + "name": "B5", + "eo:center_wavelength": 0.7039 + }, + { + "name": "B6", + "eo:center_wavelength": 0.7402 + }, + { + "name": "B7", + "eo:center_wavelength": 0.7825 + }, + { + "name": "B8", + "eo:common_name": "nir", + "eo:center_wavelength": 0.8351 + }, + { + "name": "B8A", + "eo:center_wavelength": 0.8648 + }, + { + "name": "B9", + "eo:center_wavelength": 0.945 + }, + { + "name": "B10", + "eo:center_wavelength": 1.3735 + }, + { + "name": "B11", + "eo:common_name": "swir16", + "eo:center_wavelength": 1.6137 + }, + { + "name": "B12", + "eo:common_name": "swir22", + "eo:center_wavelength": 2.2024 + } + ] + }, + "links": [ + { + "rel": "parent", + "href": "../catalog.json", + "type": "application/json", + "title": "Example Catalog" + }, + { + "rel": "root", + "href": "../catalog.json", + "type": "application/json", + "title": "Example Catalog" + }, + { + "rel": "license", + "href": "https://scihub.copernicus.eu/twiki/pub/SciHubWebPortal/TermsConditions/Sentinel_Data_Terms_and_Conditions.pdf", + "title": "Legal notice on the use of Copernicus Sentinel Data and Service Information" + } + ] +} \ No newline at end of file diff --git a/tests/data-files/examples/1.1.0/collection.json b/tests/data-files/examples/1.1.0/collection.json new file mode 100644 index 000000000..9de9cbeae --- /dev/null +++ b/tests/data-files/examples/1.1.0/collection.json @@ -0,0 +1,136 @@ +{ + "id": "simple-collection", + "type": "Collection", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v2.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" + ], + "stac_version": "1.1.0", + "description": "A simple collection demonstrating core catalog fields with links to a couple of items", + "title": "Simple Example Collection", + "keywords": [ + "simple", + "example", + "collection" + ], + "providers": [ + { + "name": "Remote Data, Inc", + "description": "Producers of awesome spatiotemporal assets", + "roles": [ + "producer", + "processor" + ], + "url": "http://remotedata.io" + } + ], + "extent": { + "spatial": { + "bbox": [ + [ + 172.91173669923782, + 1.3438851951615003, + 172.95469614953714, + 1.3690476620161975 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2020-12-11T22:38:32.125Z", + "2020-12-14T18:02:31.437Z" + ] + ] + } + }, + "license": "CC-BY-4.0", + "summaries": { + "platform": [ + "cool_sat1", + "cool_sat2" + ], + "constellation": [ + "ion" + ], + "instruments": [ + "cool_sensor_v1", + "cool_sensor_v2" + ], + "gsd": { + "minimum": 0.512, + "maximum": 0.66 + }, + "eo:cloud_cover": { + "minimum": 1.2, + "maximum": 1.2 + }, + "proj:cpde": [ + "EPSG:32659" + ], + "view:sun_elevation": { + "minimum": 54.9, + "maximum": 54.9 + }, + "view:off_nadir": { + "minimum": 3.8, + "maximum": 3.8 + }, + "view:sun_azimuth": { + "minimum": 135.7, + "maximum": 135.7 + }, + "statistics": { + "type": "object", + "properties": { + "vegetation": { + "description": "Percentage of pixels that are detected as vegetation, e.g. forests, grasslands, etc.", + "minimum": 0, + "maximum": 100 + }, + "water": { + "description": "Percentage of pixels that are detected as water, e.g. rivers, oceans and ponds.", + "minimum": 0, + "maximum": 100 + }, + "urban": { + "description": "Percentage of pixels that detected as urban, e.g. roads and buildings.", + "minimum": 0, + "maximum": 100 + } + } + } + }, + "links": [ + { + "rel": "root", + "href": "./collection.json", + "type": "application/json", + "title": "Simple Example Collection" + }, + { + "rel": "item", + "href": "./simple-item.json", + "type": "application/geo+json", + "title": "Simple Item" + }, + { + "rel": "item", + "href": "./core-item.json", + "type": "application/geo+json", + "title": "Core Item" + }, + { + "rel": "item", + "href": "./extended-item.json", + "type": "application/geo+json", + "title": "Extended Item" + }, + { + "rel": "self", + "href": "https://raw.githubusercontent.com/radiantearth/stac-spec/v1.1.0/examples/collection.json", + "type": "application/json" + } + ] +} diff --git a/tests/data-files/examples/1.1.0/collectionless-item.json b/tests/data-files/examples/1.1.0/collectionless-item.json new file mode 100644 index 000000000..3562d6652 --- /dev/null +++ b/tests/data-files/examples/1.1.0/collectionless-item.json @@ -0,0 +1,143 @@ +{ + "stac_version": "1.1.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ], + "type": "Feature", + "id": "CS3-20160503_132131_08", + "bbox": [ + -122.59750209, + 37.48803556, + -122.2880486, + 37.613537207 + ], + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.308150179, + 37.488035566 + ], + [ + -122.597502109, + 37.538869539 + ], + [ + -122.576687533, + 37.613537207 + ], + [ + -122.2880486, + 37.562818007 + ], + [ + -122.308150179, + 37.488035566 + ] + ] + ] + }, + "properties": { + "title": "Full Item", + "description": "A sample STAC Item demonstrates an Item that does not have a collection, which is not recommended, but allowed by the spec.", + "datetime": null, + "start_datetime": "2016-05-03T13:22:30Z", + "end_datetime": "2016-05-03T13:27:30Z", + "created": "2016-05-04T00:00:01Z", + "updated": "2017-01-01T00:30:55Z", + "license": "other", + "providers": [ + { + "name": "Remote Data, Inc", + "description": "Producers of awesome spatiotemporal assets", + "roles": [ + "producer", + "processor" + ], + "url": "http://remotedata.it" + } + ], + "platform": "cool_sat2", + "instruments": [ + "cool_sensor_v1" + ], + "view:sun_elevation": 33.4, + "gsd": 0.512, + "cs:type": "scene", + "cs:anomalous_pixels": 0.14, + "cs:earth_sun_distance": 1.014156, + "cs:sat_id": "CS3", + "cs:product_level": "LV1B" + }, + "links": [ + { + "rel": "root", + "href": "./catalog.json", + "type": "application/json", + "title": "Example Catalog" + }, + { + "rel": "parent", + "href": "./catalog.json", + "type": "application/json", + "title": "Example Catalog" + }, + { + "rel": "alternate", + "type": "text/html", + "href": "http://cool-sat.com/catalog/CS3-20160503_132130_04/CS3-20160503_132130_04.html", + "title": "HTML representation of this STAC Item" + }, + { + "rel": "license", + "type": "text/html", + "href": "http://remotedata.io/license.html", + "title": "Data License for Remote Data, Inc." + } + ], + "assets": { + "analytic": { + "href": "http://cool-sat.com/catalog/CS3-20160503_132130_04/analytic.tif", + "title": "4-Band Analytic", + "bands": [ + { + "name": "band1" + }, + { + "name": "band1" + }, + { + "name": "band2" + }, + { + "name": "band3" + } + ] + }, + "thumbnail": { + "href": "http://cool-sat.com/catalog/CS3-20160503_132130_04/thumbnail.png", + "title": "Thumbnail", + "type": "image/png", + "roles": [ + "thumbnail" + ] + }, + "udm": { + "href": "http://cool-sat.com/catalog/CS3-20160503_132130_04/UDM.tif", + "title": "Unusable Data Mask" + }, + "json-metadata": { + "href": "http://cool-sat.com/catalog/CS3-20160503_132130_04/extended-metadata.json", + "title": "Extended Metadata", + "type": "application/json", + "roles": [ + "metadata" + ] + }, + "ephemeris": { + "href": "http://cool-sat.com/catalog/CS3-20160503_132130_04/S3-20160503_132130_04.EPH", + "title": "Satellite Ephemeris Metadata" + } + } +} diff --git a/tests/data-files/examples/1.1.0/core-item.json b/tests/data-files/examples/1.1.0/core-item.json new file mode 100644 index 000000000..e151b1353 --- /dev/null +++ b/tests/data-files/examples/1.1.0/core-item.json @@ -0,0 +1,125 @@ +{ + "stac_version": "1.1.0", + "stac_extensions": [], + "type": "Feature", + "id": "20201211_223832_CS2", + "bbox": [ + 172.91173669923782, + 1.3438851951615003, + 172.95469614953714, + 1.3690476620161975 + ], + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 172.91173669923782, + 1.3438851951615003 + ], + [ + 172.95469614953714, + 1.3438851951615003 + ], + [ + 172.95469614953714, + 1.3690476620161975 + ], + [ + 172.91173669923782, + 1.3690476620161975 + ], + [ + 172.91173669923782, + 1.3438851951615003 + ] + ] + ] + }, + "properties": { + "title": "Core Item", + "description": "A sample STAC Item that includes examples of all common metadata", + "datetime": null, + "start_datetime": "2020-12-11T22:38:32.125Z", + "end_datetime": "2020-12-11T22:38:32.327Z", + "created": "2020-12-12T01:48:13.725Z", + "updated": "2020-12-12T01:48:13.725Z", + "platform": "cool_sat1", + "instruments": [ + "cool_sensor_v1" + ], + "constellation": "ion", + "mission": "collection 5624", + "gsd": 0.512 + }, + "collection": "simple-collection", + "links": [ + { + "rel": "collection", + "href": "./collection.json", + "type": "application/json", + "title": "Simple Example Collection" + }, + { + "rel": "root", + "href": "./collection.json", + "type": "application/json", + "title": "Simple Example Collection" + }, + { + "rel": "parent", + "href": "./collection.json", + "type": "application/json", + "title": "Simple Example Collection" + }, + { + "rel": "alternate", + "type": "text/html", + "href": "http://remotedata.io/catalog/20201211_223832_CS2/index.html", + "title": "HTML version of this STAC Item" + } + ], + "assets": { + "analytic": { + "href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2_analytic.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "title": "4-Band Analytic", + "roles": [ + "data" + ] + }, + "thumbnail": { + "href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg", + "title": "Thumbnail", + "type": "image/png", + "roles": [ + "thumbnail" + ] + }, + "visual": { + "href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "title": "3-Band Visual", + "roles": [ + "visual" + ] + }, + "udm": { + "href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2_analytic_udm.tif", + "title": "Unusable Data Mask", + "type": "image/tiff; application=geotiff" + }, + "json-metadata": { + "href": "http://remotedata.io/catalog/20201211_223832_CS2/extended-metadata.json", + "title": "Extended Metadata", + "type": "application/json", + "roles": [ + "metadata" + ] + }, + "ephemeris": { + "href": "http://cool-sat.com/catalog/20201211_223832_CS2/20201211_223832_CS2.EPH", + "title": "Satellite Ephemeris Metadata" + } + } +} diff --git a/tests/data-files/examples/1.1.0/extended-item.json b/tests/data-files/examples/1.1.0/extended-item.json new file mode 100644 index 000000000..b5f3a0a9d --- /dev/null +++ b/tests/data-files/examples/1.1.0/extended-item.json @@ -0,0 +1,210 @@ +{ + "stac_version": "1.1.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v2.0.0/schema.json", + "https://stac-extensions.github.io/projection/v2.0.0/schema.json", + "https://stac-extensions.github.io/scientific/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/remote-data/v1.0.0/schema.json" + ], + "type": "Feature", + "id": "20201211_223832_CS2", + "bbox": [ + 172.91173669923782, + 1.3438851951615003, + 172.95469614953714, + 1.3690476620161975 + ], + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 172.91173669923782, + 1.3438851951615003 + ], + [ + 172.95469614953714, + 1.3438851951615003 + ], + [ + 172.95469614953714, + 1.3690476620161975 + ], + [ + 172.91173669923782, + 1.3690476620161975 + ], + [ + 172.91173669923782, + 1.3438851951615003 + ] + ] + ] + }, + "properties": { + "title": "Extended Item", + "description": "A sample STAC Item that includes a variety of examples from the stable extensions", + "keywords": [ + "extended", + "example", + "item" + ], + "datetime": "2020-12-14T18:02:31.437000Z", + "created": "2020-12-15T01:48:13.725Z", + "updated": "2020-12-15T01:48:13.725Z", + "platform": "cool_sat2", + "instruments": [ + "cool_sensor_v2" + ], + "gsd": 0.66, + "eo:cloud_cover": 1.2, + "eo:snow_cover": 0, + "statistics": { + "vegetation": 12.57, + "water": 1.23, + "urban": 26.2 + }, + "proj:code": "EPSG:32659", + "proj:shape": [ + 5558, + 9559 + ], + "proj:transform": [ + 0.5, + 0, + 712710, + 0, + -0.5, + 151406, + 0, + 0, + 1 + ], + "view:sun_elevation": 54.9, + "view:off_nadir": 3.8, + "view:sun_azimuth": 135.7, + "rd:type": "scene", + "rd:anomalous_pixels": 0.14, + "rd:earth_sun_distance": 1.014156, + "rd:sat_id": "cool_sat2", + "rd:product_level": "LV3A", + "sci:doi": "10.5061/dryad.s2v81.2/27.2" + }, + "collection": "simple-collection", + "links": [ + { + "rel": "collection", + "href": "./collection.json", + "type": "application/json", + "title": "Simple Example Collection" + }, + { + "rel": "root", + "href": "./collection.json", + "type": "application/json", + "title": "Simple Example Collection" + }, + { + "rel": "parent", + "href": "./collection.json", + "type": "application/json", + "title": "Simple Example Collection" + }, + { + "rel": "alternate", + "type": "text/html", + "href": "http://remotedata.io/catalog/20201211_223832_CS2/index.html", + "title": "HTML version of this STAC Item" + } + ], + "assets": { + "analytic": { + "href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2_analytic.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "title": "4-Band Analytic", + "roles": [ + "data" + ], + "bands": [ + { + "name": "band1", + "eo:common_name": "blue", + "eo:center_wavelength": 0.47, + "eo:full_width_half_max": 70 + }, + { + "name": "band2", + "eo:common_name": "green", + "eo:center_wavelength": 0.56, + "eo:full_width_half_max": 80 + }, + { + "name": "band3", + "eo:common_name": "red", + "eo:center_wavelength": 0.645, + "eo:full_width_half_max": 90 + }, + { + "name": "band4", + "eo:common_name": "nir", + "eo:center_wavelength": 0.8, + "eo:full_width_half_max": 152 + } + ] + }, + "thumbnail": { + "href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg", + "title": "Thumbnail", + "type": "image/png", + "roles": [ + "thumbnail" + ] + }, + "visual": { + "href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "title": "3-Band Visual", + "roles": [ + "visual" + ], + "bands": [ + { + "name": "band3", + "eo:common_name": "red", + "eo:center_wavelength": 0.645, + "eo:full_width_half_max": 90 + }, + { + "name": "band2", + "eo:common_name": "green", + "eo:center_wavelength": 0.56, + "eo:full_width_half_max": 80 + }, + { + "name": "band1", + "eo:common_name": "blue", + "eo:center_wavelength": 0.47, + "eo:full_width_half_max": 70 + } + ] + }, + "udm": { + "href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2_analytic_udm.tif", + "title": "Unusable Data Mask", + "type": "image/tiff; application=geotiff" + }, + "json-metadata": { + "href": "http://remotedata.io/catalog/20201211_223832_CS2/extended-metadata.json", + "title": "Extended Metadata", + "type": "application/json", + "roles": [ + "metadata" + ] + }, + "ephemeris": { + "href": "http://cool-sat.com/catalog/20201211_223832_CS2/20201211_223832_CS2.EPH", + "title": "Satellite Ephemeris Metadata" + } + } +} \ No newline at end of file diff --git a/tests/data-files/examples/1.1.0/extensions-collection/collection.json b/tests/data-files/examples/1.1.0/extensions-collection/collection.json new file mode 100644 index 000000000..825f76acb --- /dev/null +++ b/tests/data-files/examples/1.1.0/extensions-collection/collection.json @@ -0,0 +1,68 @@ +{ + "id": "extensions-collection", + "type": "Collection", + "stac_version": "1.1.0", + "description": "A heterogeneous collection containing deeper examples of various extensions", + "links": [ + { + "rel": "parent", + "href": "../catalog.json", + "type": "application/json", + "title": "Example Catalog" + }, + { + "rel": "root", + "href": "../catalog.json", + "type": "application/json", + "title": "Example Catalog" + }, + { + "rel": "item", + "href": "./proj-example/proj-example.json", + "title": "Proj extension example" + }, + { + "rel": "license", + "href": "https://remotedata.io/license.html", + "title": "Remote Data License Terms" + } + ], + "stac_extensions": [], + "title": "Collection of Extension Items", + "keywords": [ + "examples", + "sar", + "projection" + ], + "providers": [ + { + "name": "Remote Data, Inc.", + "roles": [ + "producer", + "licensor" + ], + "url": "https://remotedata.io" + } + ], + "extent": { + "spatial": { + "bbox": [ + [ + -180, + -56, + 180, + 83 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2009-05-20T02:40:01.042784Z", + "2018-11-03T23:59:55.112875Z" + ] + ] + } + }, + "license": "other" +} diff --git a/tests/data-files/examples/1.1.0/extensions-collection/proj-example/proj-example.json b/tests/data-files/examples/1.1.0/extensions-collection/proj-example/proj-example.json new file mode 100644 index 000000000..2884e3882 --- /dev/null +++ b/tests/data-files/examples/1.1.0/extensions-collection/proj-example/proj-example.json @@ -0,0 +1,285 @@ +{ + "type": "Feature", + "stac_version": "1.1.0", + "id": "proj-example", + "properties": { + "datetime": "2018-10-01T01:08:32.033000Z", + "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", + "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°W to 96°W - by country", + "bbox": { + "south_latitude": 0, + "west_longitude": -102, + "north_latitude": 84, + "east_longitude": -96 + }, + "id": { + "authority": "EPSG", + "code": 32614 + } + }, + "proj:geometry": { + "coordinates": [ + [ + [ + 169200, + 3712800 + ], + [ + 403200, + 3712800 + ], + [ + 403200, + 3951000 + ], + [ + 169200, + 3951000 + ], + [ + 169200, + 3712800 + ] + ] + ], + "type": "Polygon" + }, + "proj:bbox": [ + 169200, + 3712800, + 403200, + 3951000 + ], + "proj:centroid": { + "lat": 34.595302781575604, + "lon": -101.34448382627504 + }, + "proj:shape": [ + 8391, + 8311 + ], + "proj:transform": [ + 30, + 0, + 224985, + 0, + -30, + 6790215, + 0, + 0, + 1 + ] + }, + "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": "root", + "href": "../../catalog.json", + "type": "application/json", + "title": "Example Catalog" + }, + { + "rel": "parent", + "href": "../collection.json", + "type": "application/json", + "title": "Collection of Extension Items" + }, + { + "rel": "collection", + "href": "../collection.json", + "type": "application/json", + "title": "Collection of Extension Items" + } + ], + "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)", + "bands": [ + { + "name": "B1", + "eo:common_name": "coastal", + "eo:center_wavelength": 0.44, + "eo: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)", + "bands": [ + { + "name": "B8", + "eo:center_wavelength": 0.59, + "eo:full_width_half_max": 0.18 + } + ], + "proj:shape": [ + 16781, + 16621 + ], + "proj:transform": [ + 15, + 0, + 224992.5, + 0, + -15, + 6790207.5, + 0, + 0, + 1 + ] + } + }, + "bbox": [ + 148.13933, + 59.51584, + 152.52758, + 60.63437 + ], + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v2.0.0/schema.json", + "https://stac-extensions.github.io/projection/v2.0.0/schema.json" + ], + "collection": "landsat-8-l1" +} diff --git a/tests/data-files/examples/1.1.0/simple-item.json b/tests/data-files/examples/1.1.0/simple-item.json new file mode 100644 index 000000000..449352edf --- /dev/null +++ b/tests/data-files/examples/1.1.0/simple-item.json @@ -0,0 +1,81 @@ +{ + "stac_version": "1.1.0", + "stac_extensions": [], + "type": "Feature", + "id": "20201211_223832_CS2", + "bbox": [ + 172.91173669923782, + 1.3438851951615003, + 172.95469614953714, + 1.3690476620161975 + ], + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 172.91173669923782, + 1.3438851951615003 + ], + [ + 172.95469614953714, + 1.3438851951615003 + ], + [ + 172.95469614953714, + 1.3690476620161975 + ], + [ + 172.91173669923782, + 1.3690476620161975 + ], + [ + 172.91173669923782, + 1.3438851951615003 + ] + ] + ] + }, + "properties": { + "datetime": "2020-12-11T22:38:32.125000Z" + }, + "collection": "simple-collection", + "links": [ + { + "rel": "collection", + "href": "./collection.json", + "type": "application/json", + "title": "Simple Example Collection" + }, + { + "rel": "root", + "href": "./collection.json", + "type": "application/json", + "title": "Simple Example Collection" + }, + { + "rel": "parent", + "href": "./collection.json", + "type": "application/json", + "title": "Simple Example Collection" + } + ], + "assets": { + "visual": { + "href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "title": "3-Band Visual", + "roles": [ + "visual" + ] + }, + "thumbnail": { + "href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg", + "title": "Thumbnail", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ] + } + } +} diff --git a/tests/data-files/file/catalog.json b/tests/data-files/file/catalog.json index a9d07598f..dc7d6e53c 100644 --- a/tests/data-files/file/catalog.json +++ b/tests/data-files/file/catalog.json @@ -5,7 +5,7 @@ ], "type": "Catalog", "title": "Example Catalog", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "This catalog is a simple demonstration of an example catalog that is used to organize a hierarchy of collections and their items.", "links": [ { diff --git a/tests/data-files/file/collection.json b/tests/data-files/file/collection.json index 73b0427cc..3fd50421e 100644 --- a/tests/data-files/file/collection.json +++ b/tests/data-files/file/collection.json @@ -1,5 +1,5 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ "https://stac-extensions.github.io/file/v2.1.0/schema.json" ], diff --git a/tests/data-files/file/item.json b/tests/data-files/file/item.json index cb9701a2c..25ca6c7dd 100644 --- a/tests/data-files/file/item.json +++ b/tests/data-files/file/item.json @@ -1,7 +1,7 @@ { "id": "S1A_EW_GRDM_1SSH_20181103T235855_20181103T235955_024430_02AD5D_5616", "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ "https://stac-extensions.github.io/file/v2.1.0/schema.json" ], diff --git a/tests/data-files/grid/example-landsat.json b/tests/data-files/grid/example-landsat.json index f998ec746..caf587985 100644 --- a/tests/data-files/grid/example-landsat.json +++ b/tests/data-files/grid/example-landsat.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "LC09_L2SR_081122_20221130_02_T2", "properties": { "platform": "landsat-9", diff --git a/tests/data-files/grid/example-sentinel2.json b/tests/data-files/grid/example-sentinel2.json index 6cfbee37a..197fb6245 100644 --- a/tests/data-files/grid/example-sentinel2.json +++ b/tests/data-files/grid/example-sentinel2.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "S2A_MSIL1C_20210908T042701_R133_T46RER_20210908T070248", "properties": { "providers": [ diff --git a/tests/data-files/invalid/shared-id/catalog.json b/tests/data-files/invalid/shared-id/catalog.json index b60554019..9c9f829ea 100644 --- a/tests/data-files/invalid/shared-id/catalog.json +++ b/tests/data-files/invalid/shared-id/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "test", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test desc", "links": [ { diff --git a/tests/data-files/invalid/shared-id/test/collection.json b/tests/data-files/invalid/shared-id/test/collection.json index 9a313efb4..be31c7996 100644 --- a/tests/data-files/invalid/shared-id/test/collection.json +++ b/tests/data-files/invalid/shared-id/test/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "test", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test desc", "links": [ { diff --git a/tests/data-files/invalid/shared-id/test/test-item-1/test-item-1.json b/tests/data-files/invalid/shared-id/test/test-item-1/test-item-1.json index 44a1b37f9..f2c8c5e76 100644 --- a/tests/data-files/invalid/shared-id/test/test-item-1/test-item-1.json +++ b/tests/data-files/invalid/shared-id/test/test-item-1/test-item-1.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "test-item-1", "properties": { "datetime": "2020-03-14T16:32:00Z" diff --git a/tests/data-files/item-assets/example-landsat8.json b/tests/data-files/item-assets/example-landsat8.json index dd6a85f17..1390bfa7e 100644 --- a/tests/data-files/item-assets/example-landsat8.json +++ b/tests/data-files/item-assets/example-landsat8.json @@ -1,5 +1,5 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", "eo" diff --git a/tests/data-files/item/sample-item-asset-properties.json b/tests/data-files/item/sample-item-asset-properties.json index 9a87daa9e..a47273ea0 100644 --- a/tests/data-files/item/sample-item-asset-properties.json +++ b/tests/data-files/item/sample-item-asset-properties.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "CS3-20160503_132131_05", "properties": { "datetime": "2016-05-03T13:22:30.040000Z", diff --git a/tests/data-files/item/sample-item-with-relative-extension-path.json b/tests/data-files/item/sample-item-with-relative-extension-path.json index 92b63ba89..6a68bc555 100644 --- a/tests/data-files/item/sample-item-with-relative-extension-path.json +++ b/tests/data-files/item/sample-item-with-relative-extension-path.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "CS3-20160503_132131_05", "properties": { "datetime": "2016-05-03T13:22:30.040000Z", diff --git a/tests/data-files/item/sample-item.json b/tests/data-files/item/sample-item.json index 2c5c3f015..631ce75b4 100644 --- a/tests/data-files/item/sample-item.json +++ b/tests/data-files/item/sample-item.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "CS3-20160503_132131_05", "properties": { "datetime": "2016-05-03T13:22:30.040000Z", diff --git a/tests/data-files/mgrs/item.json b/tests/data-files/mgrs/item.json index 97a56b19b..251f5577e 100644 --- a/tests/data-files/mgrs/item.json +++ b/tests/data-files/mgrs/item.json @@ -1,5 +1,5 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" ], diff --git a/tests/data-files/pointcloud/example-laz-no-statistics.json b/tests/data-files/pointcloud/example-laz-no-statistics.json index 0eb6bc510..7995bea2c 100644 --- a/tests/data-files/pointcloud/example-laz-no-statistics.json +++ b/tests/data-files/pointcloud/example-laz-no-statistics.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "autzen-full.laz", "properties": { "datetime": "2013-07-17T00:00:00Z", diff --git a/tests/data-files/pointcloud/example-laz.json b/tests/data-files/pointcloud/example-laz.json index d7246e3bb..423c8a324 100644 --- a/tests/data-files/pointcloud/example-laz.json +++ b/tests/data-files/pointcloud/example-laz.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "autzen-full.laz", "properties": { "datetime": "2013-07-17T00:00:00Z", diff --git a/tests/data-files/projection/collection-with-summaries.json b/tests/data-files/projection/collection-with-summaries.json index 954b9cd0c..f471e198d 100644 --- a/tests/data-files/projection/collection-with-summaries.json +++ b/tests/data-files/projection/collection-with-summaries.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "area-1-1", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test collection country-1", "links": [ { diff --git a/tests/data-files/projection/example-landsat8.json b/tests/data-files/projection/example-landsat8.json index 0f68c9d31..b15bd7013 100644 --- a/tests/data-files/projection/example-landsat8.json +++ b/tests/data-files/projection/example-landsat8.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "LC81530252014153LGN00", "properties": { "datetime": "2018-10-01T01:08:32.033000Z", diff --git a/tests/data-files/projection/optional-epsg.json b/tests/data-files/projection/optional-epsg.json index 4974d5f11..37c5dd0f6 100644 --- a/tests/data-files/projection/optional-epsg.json +++ b/tests/data-files/projection/optional-epsg.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "20221224_152110_18_2498", "properties": { "datetime": "2022-12-24T15:21:10.184346Z", diff --git a/tests/data-files/raster/raster-planet-example.json b/tests/data-files/raster/raster-planet-example.json index 53df8cdf3..ece0c51a0 100644 --- a/tests/data-files/raster/raster-planet-example.json +++ b/tests/data-files/raster/raster-planet-example.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "PT01S00_842547E119_8697242018100100000000MS00_GG001002003", "properties": { "datetime": "2018-10-01T01:54:33Z", diff --git a/tests/data-files/raster/raster-sentinel2-example.json b/tests/data-files/raster/raster-sentinel2-example.json index 0412f8f2d..b5ba482ed 100644 --- a/tests/data-files/raster/raster-sentinel2-example.json +++ b/tests/data-files/raster/raster-sentinel2-example.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "S2B_33SVB_20210221_0_L2A", "properties": { "datetime": "2021-02-21T10:00:17Z", diff --git a/tests/data-files/storage/collection-naip.json b/tests/data-files/storage/collection-naip.json index 312a3bcda..174942dc3 100644 --- a/tests/data-files/storage/collection-naip.json +++ b/tests/data-files/storage/collection-naip.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "collection-naip", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "Example collection for Storage Extension", "links": [ { @@ -19,10 +19,27 @@ "https://stac-extensions.github.io/storage/v1.0.0/schema.json" ], "summaries": { - "storage:platform": ["AZURE", "GCP", "AWS"], - "storage:region": ["westus2", "us-central1", "us-west-2", "eastus"], - "storage:requester_pays": [true, false], - "storage:tier": ["archive", "COLDLINE", "Standard", "hot"] + "storage:platform": [ + "AZURE", + "GCP", + "AWS" + ], + "storage:region": [ + "westus2", + "us-central1", + "us-west-2", + "eastus" + ], + "storage:requester_pays": [ + true, + false + ], + "storage:tier": [ + "archive", + "COLDLINE", + "Standard", + "hot" + ] }, "extent": { "spatial": { diff --git a/tests/data-files/storage/item-naip.json b/tests/data-files/storage/item-naip.json index d9c988be6..22069111d 100644 --- a/tests/data-files/storage/item-naip.json +++ b/tests/data-files/storage/item-naip.json @@ -1,103 +1,103 @@ { - "stac_version": "1.0.0", - "stac_extensions": [ - "https://stac-extensions.github.io/storage/v1.0.0/schema.json" - ], - "id": "m_3009743_sw_14_1_20160928_20161129", - "collection": "NAIP_MOSAIC", - "bbox": [ - -97.75, - 30.25, - -97.6875, - 30.312499999999996 - ], - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ + "stac_version": "1.1.0", + "stac_extensions": [ + "https://stac-extensions.github.io/storage/v1.0.0/schema.json" + ], + "id": "m_3009743_sw_14_1_20160928_20161129", + "collection": "NAIP_MOSAIC", + "bbox": [ + -97.75, + 30.25, + -97.6875, + 30.312499999999996 + ], + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ [ - [ - -97.75, - 30.312499999999996 - ], - [ - -97.75, - 30.25 - ], - [ - -97.6875, - 30.25 - ], - [ - -97.6875, - 30.312499999999996 - ], - [ - -97.75, - 30.312499999999996 - ] + -97.75, + 30.312499999999996 + ], + [ + -97.75, + 30.25 + ], + [ + -97.6875, + 30.25 + ], + [ + -97.6875, + 30.312499999999996 + ], + [ + -97.75, + 30.312499999999996 ] ] + ] + }, + "properties": { + "datetime": "2016-09-28T00:00:00+00:00", + "mission": "NAIP", + "platform": "UNKNOWN_PLATFORM", + "gsd": 1 + }, + "assets": { + "GEOTIFF_AZURE_RGBIR": { + "href": "https://naip-nsl.blob.core.windows.net/tx/2016/100cm/rgb/30097/m_3009743_sw_14_1_20160928.tif", + "type": "image/vnd.stac.geotiff", + "storage:platform": "AZURE", + "storage:region": "westus2", + "storage:tier": "archive" }, - "properties": { - "datetime": "2016-09-28T00:00:00+00:00", - "mission": "NAIP", - "platform": "UNKNOWN_PLATFORM", - "gsd": 1 + "CO_GEOTIFF_GCP_RGB": { + "href": "gs://naip-data/tx/2016/100cm/rgb/30097/m_3009743_sw_14_1_20160928.tif", + "type": "image/vnd.stac.geotiff; cloud-optimized=true", + "storage:platform": "GCP", + "storage:region": "us-central1", + "storage:requester_pays": true, + "storage:tier": "COLDLINE" }, - "assets": { - "GEOTIFF_AZURE_RGBIR": { - "href": "https://naip-nsl.blob.core.windows.net/tx/2016/100cm/rgb/30097/m_3009743_sw_14_1_20160928.tif", - "type": "image/vnd.stac.geotiff", - "storage:platform": "AZURE", - "storage:region": "westus2", - "storage:tier": "archive" - }, - "CO_GEOTIFF_GCP_RGB": { - "href": "gs://naip-data/tx/2016/100cm/rgb/30097/m_3009743_sw_14_1_20160928.tif", - "type": "image/vnd.stac.geotiff; cloud-optimized=true", - "storage:platform": "GCP", - "storage:region": "us-central1", - "storage:requester_pays": true, - "storage:tier": "COLDLINE" - }, - "CO_GEOTIFF_AWS_RGB": { - "href": "s3://naip-visualization/tx/2016/100cm/rgb/30097/m_3009743_sw_14_1_20160928.tif", - "type": "image/vnd.stac.geotiff; cloud-optimized=true", - "storage:platform": "AWS", - "storage:region": "us-west-2", - "storage:requester_pays": true, - "storage:tier": "Standard" - }, - "CO_GEOTIFF_AZURE_RGB": { - "href": "https://naipeuwest.blob.core.windows.net/naip/v002/tx/2016/tx_100cm_2016/30097/m_3009743_sw_14_1_20160928.tif", - "type": "image/vnd.stac.geotiff; cloud-optimized=true", - "storage:platform": "AZURE", - "storage:region": "westeurope", - "storage:requester_pays": false, - "storage:tier": "hot" - }, - "CO_GEOTIFF_AZURE_RGB_DEPRECATED": { - "href": "https://naipblobs.blob.core.windows.net/naip/v002/tx/2016/tx_100cm_2016/30097/m_3009743_sw_14_1_20160928.tif", - "type": "image/vnd.stac.geotiff; cloud-optimized=true", - "storage:platform": "AZURE", - "storage:region": "eastus", - "storage:requester_pays": false, - "storage:tier": "hot" - }, - "THUMBNAIL_AZURE_DEPRECATED": { - "href": "https://naipblobs.blob.core.windows.net/naip/v002/tx/2016/tx_100cm_2016/30097/m_3009743_sw_14_1_20160928.200.jpg", - "type": "image/jpeg", - "storage:platform": "AZURE", - "storage:region": "eastus", - "storage:requester_pays": false, - "storage:tier": "hot" - } + "CO_GEOTIFF_AWS_RGB": { + "href": "s3://naip-visualization/tx/2016/100cm/rgb/30097/m_3009743_sw_14_1_20160928.tif", + "type": "image/vnd.stac.geotiff; cloud-optimized=true", + "storage:platform": "AWS", + "storage:region": "us-west-2", + "storage:requester_pays": true, + "storage:tier": "Standard" }, - "links": [ - { - "href": "./collection-naip.json", - "rel": "collection" - } - ] - } \ No newline at end of file + "CO_GEOTIFF_AZURE_RGB": { + "href": "https://naipeuwest.blob.core.windows.net/naip/v002/tx/2016/tx_100cm_2016/30097/m_3009743_sw_14_1_20160928.tif", + "type": "image/vnd.stac.geotiff; cloud-optimized=true", + "storage:platform": "AZURE", + "storage:region": "westeurope", + "storage:requester_pays": false, + "storage:tier": "hot" + }, + "CO_GEOTIFF_AZURE_RGB_DEPRECATED": { + "href": "https://naipblobs.blob.core.windows.net/naip/v002/tx/2016/tx_100cm_2016/30097/m_3009743_sw_14_1_20160928.tif", + "type": "image/vnd.stac.geotiff; cloud-optimized=true", + "storage:platform": "AZURE", + "storage:region": "eastus", + "storage:requester_pays": false, + "storage:tier": "hot" + }, + "THUMBNAIL_AZURE_DEPRECATED": { + "href": "https://naipblobs.blob.core.windows.net/naip/v002/tx/2016/tx_100cm_2016/30097/m_3009743_sw_14_1_20160928.200.jpg", + "type": "image/jpeg", + "storage:platform": "AZURE", + "storage:region": "eastus", + "storage:requester_pays": false, + "storage:tier": "hot" + } + }, + "links": [ + { + "href": "./collection-naip.json", + "rel": "collection" + } + ] +} \ No newline at end of file diff --git a/tests/data-files/table/collection-2.json b/tests/data-files/table/collection-2.json index 64e2b7e71..30dc57b8a 100644 --- a/tests/data-files/table/collection-2.json +++ b/tests/data-files/table/collection-2.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "id", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "desc", "links": [], "stac_extensions": [ diff --git a/tests/data-files/table/collection.json b/tests/data-files/table/collection.json index 91551b68f..1d0006b29 100644 --- a/tests/data-files/table/collection.json +++ b/tests/data-files/table/collection.json @@ -1,5 +1,5 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", "https://stac-extensions.github.io/table/v1.2.0/schema.json" @@ -73,4 +73,4 @@ "rel": "item" } ] -} +} \ No newline at end of file diff --git a/tests/data-files/table/item.json b/tests/data-files/table/item.json index 1ce67588c..8debb7db2 100644 --- a/tests/data-files/table/item.json +++ b/tests/data-files/table/item.json @@ -1,5 +1,5 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ "https://stac-extensions.github.io/table/v1.2.0/schema.json" ], diff --git a/tests/data-files/table/table-collection.json b/tests/data-files/table/table-collection.json index d024bafa4..564d01bd6 100644 --- a/tests/data-files/table/table-collection.json +++ b/tests/data-files/table/table-collection.json @@ -1,5 +1,5 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", "https://stac-extensions.github.io/table/v1.2.0/schema.json" @@ -67,4 +67,4 @@ "rel": "item" } ] -} +} \ No newline at end of file diff --git a/tests/data-files/timestamps/example-landsat8.json b/tests/data-files/timestamps/example-landsat8.json index b37efed01..c954193ac 100644 --- a/tests/data-files/timestamps/example-landsat8.json +++ b/tests/data-files/timestamps/example-landsat8.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "LC08_L1TP_107018_20181001", "properties": { "datetime": "2018-10-01T01:08:32Z", diff --git a/tests/data-files/version/collection.json b/tests/data-files/version/collection.json index 7210facf4..2cd7fbdf6 100644 --- a/tests/data-files/version/collection.json +++ b/tests/data-files/version/collection.json @@ -1,5 +1,5 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ "https://stac-extensions.github.io/version/v1.2.0/schema.json" ], diff --git a/tests/data-files/version/item.json b/tests/data-files/version/item.json index c5e6517e8..aeef2745f 100644 --- a/tests/data-files/version/item.json +++ b/tests/data-files/version/item.json @@ -1,5 +1,5 @@ { - "stac_version": "1.0.0", + "stac_version": "1.1.0", "stac_extensions": [ "https://stac-extensions.github.io/version/v1.2.0/schema.json" ], diff --git a/tests/data-files/view/collection-with-summaries.json b/tests/data-files/view/collection-with-summaries.json index c7a89da16..87b89d656 100644 --- a/tests/data-files/view/collection-with-summaries.json +++ b/tests/data-files/view/collection-with-summaries.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "area-1-1", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "test collection country-1", "links": [ { diff --git a/tests/data-files/view/example-landsat8.json b/tests/data-files/view/example-landsat8.json index 0e0ec6b14..d54a95368 100644 --- a/tests/data-files/view/example-landsat8.json +++ b/tests/data-files/view/example-landsat8.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "LC08_L1TP_107018_20181001", "properties": { "datetime": "2018-10-01T01:08:32.033000Z", diff --git a/tests/data-files/windows_hrefs/catalog.json b/tests/data-files/windows_hrefs/catalog.json index eaaa56560..d71b13c71 100644 --- a/tests/data-files/windows_hrefs/catalog.json +++ b/tests/data-files/windows_hrefs/catalog.json @@ -1,7 +1,7 @@ { "type": "Catalog", "id": "test-catalaog", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "A test catalog", "links": [ { diff --git a/tests/data-files/windows_hrefs/test-collection/collection.json b/tests/data-files/windows_hrefs/test-collection/collection.json index a17ce2702..628c1bf86 100644 --- a/tests/data-files/windows_hrefs/test-collection/collection.json +++ b/tests/data-files/windows_hrefs/test-collection/collection.json @@ -1,7 +1,7 @@ { "type": "Collection", "id": "test-collection", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "description": "A test collection", "links": [ { diff --git a/tests/data-files/windows_hrefs/test-collection/test-item/test-item.json b/tests/data-files/windows_hrefs/test-collection/test-item/test-item.json index 495b21bde..620e9504e 100644 --- a/tests/data-files/windows_hrefs/test-collection/test-item/test-item.json +++ b/tests/data-files/windows_hrefs/test-collection/test-item/test-item.json @@ -1,6 +1,6 @@ { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "test-item", "properties": { "datetime": "2023-05-11T17:35:17.490116Z" diff --git a/tests/data-files/xarray-assets/collection.json b/tests/data-files/xarray-assets/collection.json index 58d6dd31e..f36a232fd 100644 --- a/tests/data-files/xarray-assets/collection.json +++ b/tests/data-files/xarray-assets/collection.json @@ -1,61 +1,61 @@ { - "stac_version": "1.0.0", - "stac_extensions": [ - "https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json" - ], - "type": "Collection", - "id": "collection", - "title": "A title", - "description": "A description", - "license": "Apache-2.0", - "extent": { - "spatial": { - "bbox": [ - [ - 172.9, - 1.3, - 173, - 1.4 - ] + "stac_version": "1.1.0", + "stac_extensions": [ + "https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json" + ], + "type": "Collection", + "id": "collection", + "title": "A title", + "description": "A description", + "license": "Apache-2.0", + "extent": { + "spatial": { + "bbox": [ + [ + 172.9, + 1.3, + 173, + 1.4 ] - }, - "temporal": { - "interval": [ - [ - "2015-06-23T00:00:00Z", - null - ] - ] - } - }, - "assets": { - "example": { - "href": "abfs://cpdata/raw/terraclimate/4000m/raster.zarr", - "type": "application/vnd+zarr", - "xarray:storage_options": { - "account_name": "cpdataeuwest" - }, - "xarray:open_kwargs": { - "consolidated": true - } - } + ] }, - "summaries": { - "datetime": { - "minimum": "2015-06-23T00:00:00Z", - "maximum": "2019-07-10T13:44:56Z" - } - }, - "links": [ - { - "href": "./collection.json", - "rel": "root", - "title": "A title", - "type": "application/json" + "temporal": { + "interval": [ + [ + "2015-06-23T00:00:00Z", + null + ] + ] + } + }, + "assets": { + "example": { + "href": "abfs://cpdata/raw/terraclimate/4000m/raster.zarr", + "type": "application/vnd+zarr", + "xarray:storage_options": { + "account_name": "cpdataeuwest" }, - { - "href": "./item.json", - "rel": "item" + "xarray:open_kwargs": { + "consolidated": true } - ] - } \ No newline at end of file + } + }, + "summaries": { + "datetime": { + "minimum": "2015-06-23T00:00:00Z", + "maximum": "2019-07-10T13:44:56Z" + } + }, + "links": [ + { + "href": "./collection.json", + "rel": "root", + "title": "A title", + "type": "application/json" + }, + { + "href": "./item.json", + "rel": "item" + } + ] +} \ No newline at end of file diff --git a/tests/data-files/xarray-assets/item.json b/tests/data-files/xarray-assets/item.json index bba6c5635..72fb11fe6 100644 --- a/tests/data-files/xarray-assets/item.json +++ b/tests/data-files/xarray-assets/item.json @@ -1,56 +1,56 @@ { - "stac_version": "1.0.0", - "stac_extensions": [ - "https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json" - ], - "type": "Feature", - "id": "item", - "bbox": [ - 172.9, - 1.3, - 173, - 1.4 - ], - "geometry": { - "type": "Polygon", - "coordinates": [ + "stac_version": "1.1.0", + "stac_extensions": [ + "https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json" + ], + "type": "Feature", + "id": "item", + "bbox": [ + 172.9, + 1.3, + 173, + 1.4 + ], + "geometry": { + "type": "Polygon", + "coordinates": [ + [ [ - [ - 172.9, - 1.3 - ], - [ - 173, - 1.3 - ], - [ - 173, - 1.4 - ], - [ - 172.9, - 1.4 - ], - [ - 172.9, - 1.3 - ] + 172.9, + 1.3 + ], + [ + 173, + 1.3 + ], + [ + 173, + 1.4 + ], + [ + 172.9, + 1.4 + ], + [ + 172.9, + 1.3 ] ] - }, - "properties": { - "datetime": "2020-12-11T22:38:32Z" - }, - "links": [], - "assets": { - "data": { - "href": "abfs://example.com/examples/file.zarr", - "xarray:storage_options": { - "account_name": "test-account" - }, - "xarray:open_kwargs": { - "consolidated": true - } + ] + }, + "properties": { + "datetime": "2020-12-11T22:38:32Z" + }, + "links": [], + "assets": { + "data": { + "href": "abfs://example.com/examples/file.zarr", + "xarray:storage_options": { + "account_name": "test-account" + }, + "xarray:open_kwargs": { + "consolidated": true } } - } \ No newline at end of file + } +} \ No newline at end of file diff --git a/tests/extensions/test_grid.py b/tests/extensions/test_grid.py index d355cb7cb..15117de0f 100644 --- a/tests/extensions/test_grid.py +++ b/tests/extensions/test_grid.py @@ -68,7 +68,7 @@ def test_modify(self) -> None: def test_from_dict(self) -> None: d: dict[str, Any] = { "type": "Feature", - "stac_version": "1.0.0", + "stac_version": "1.1.0", "id": "an/asset", "properties": { "grid:code": code, diff --git a/tests/serialization/test_identify.py b/tests/serialization/test_identify.py index 3a73b25d1..980c26aad 100644 --- a/tests/serialization/test_identify.py +++ b/tests/serialization/test_identify.py @@ -63,7 +63,7 @@ def test_identify_invalid_stac_object_with_version(self) -> None: "href": "https://tamn.snapplanet.io", }, ], - "stac_version": "1.0.0", + "stac_version": "1.1.0", } with pytest.raises(pystac.STACTypeError) as ctx: diff --git a/tests/test_collection.py b/tests/test_collection.py index 96c2cba1a..c339a8d10 100644 --- a/tests/test_collection.py +++ b/tests/test_collection.py @@ -123,7 +123,7 @@ def test_multiple_extents(self) -> None: extent_dict = multi_ext_dict["extent"] self.assertIsInstance(ext, Extent) self.assertIsInstance(ext.spatial.bboxes[0], list) - self.assertEqual(len(ext.spatial.bboxes), 2) + self.assertEqual(len(ext.spatial.bboxes), 3) self.assertDictEqual(ext.to_dict(), extent_dict) cloned_ext = ext.clone() diff --git a/tests/test_item.py b/tests/test_item.py index 2ab846cef..a1c39f12e 100644 --- a/tests/test_item.py +++ b/tests/test_item.py @@ -473,7 +473,7 @@ def from_dict( def test_item_from_dict_raises_useful_error() -> None: - item_dict = {"type": "Feature", "stac_version": "1.0.0", "id": "lalalalala"} + item_dict = {"type": "Feature", "stac_version": "1.1.0", "id": "lalalalala"} with pytest.raises(pystac.STACError, match="Invalid Item: "): Item.from_dict(item_dict) 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 0e26041c9..7ae9cad1c 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:18 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:19:18 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - '0' Strict-Transport-Security: @@ -88,15 +88,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 19090d10756d817f3b66eef360e0963c9aacd818 + - 74b06e67dcf77c1ec556148b92cccfc2b0b231b1 X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18179-EWR + - cache-den8254-DEN X-Timer: - - S1711656858.473056,VS0,VE85 + - S1728237440.890482,VS0,VE141 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 3111655ad..e0540237c 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.11 + - Python-urllib/3.12 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: - - '81' + - '15' 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:05 GMT + - Sun, 06 Oct 2024 17:57:55 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: - '1' X-Fastly-Request-ID: - - b250883491b098a3c3b0a766936a12ef79645dad + - c37b933320cd0da2550651926871e7ba810388f6 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18175-EWR + - cache-den8278-DEN X-Timer: - - S1711656906.804574,VS0,VE1 + - S1728237475.296900,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '81' + - '15' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:05 GMT + - Sun, 06 Oct 2024 17:57:55 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f6df778e3406605ef01a4b3976a25f5503141918 + - bbb3fced20d0734d76460abaef5251d798d501af X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18172-EWR + - cache-den8223-DEN X-Timer: - - S1711656906.887968,VS0,VE2 + - S1728237475.327951,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '81' + - '15' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:05 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -279,17 +279,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Fastly-Request-ID: - - 0b4856bac37e6411ab3b34c0539eec26e0997942 + - e10b212fca8ced43cfa0d7a47e2a6581049e59bf X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18159-EWR + - cache-den8270-DEN X-Timer: - - S1711656906.971674,VS0,VE1 + - S1728237475.353090,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '81' + - '15' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:06 GMT + - Sun, 06 Oct 2024 17:57:55 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 42d5ea7cf440cf462e238471b64dc80b00b2e678 + - 9c6cae212b17620fc83a13270d1d694582369c9d X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18136-EWR + - cache-den8277-DEN X-Timer: - - S1711656906.039671,VS0,VE2 + - S1728237475.381640,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '81' + - '15' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:06 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -416,17 +416,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - dbf02a15ab276153bd170aac454747c509e08cc2 + - ee64f413ec2ce01c00a8d9f564f8020ee8ccea61 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18159-EWR + - cache-den8271-DEN X-Timer: - - S1711656906.135616,VS0,VE1 + - S1728237475.408301,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '81' + - '15' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:06 GMT + - Sun, 06 Oct 2024 17:57:55 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - bc96688e8d97f349714cd2a6b2cd393ce56df3ec + - fbf3e7e34dbf8168f2f4c23289e8e4d9dbc9a5d1 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18143-EWR + - cache-den8269-DEN X-Timer: - - S1711656906.203865,VS0,VE2 + - S1728237475.437817,VS0,VE3 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/timestamps/json-schema/schema.json response: @@ -557,11 +561,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:06 GMT + - Sun, 06 Oct 2024 17:57:55 GMT ETag: - - '"65bd0237-675"' + - '"66e1651c-675"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -573,15 +577,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 7e574fe282db15c3f1510d9cd06e9df0927b952a + - 0d99494fa0471693097e992ac91d3e81de58e223 X-GitHub-Request-Id: - - 17B2:25AAED:EB29DA:12C5355:6605CFC5 + - C659:1C7115:396778C:3FC762D:6702CFA2 X-Served-By: - - cache-ewr18162-EWR + - cache-den8233-DEN X-Timer: - - S1711656906.272160,VS0,VE21 + - S1728237475.468783,VS0,VE72 expires: - - Thu, 28 Mar 2024 20:25:06 GMT + - Sun, 06 Oct 2024 18:07:55 GMT x-origin-cache: - HIT x-proxy-cache: 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 5d5e92239..63d7b11da 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.11 + - Python-urllib/3.12 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: - - '17' + - '16' 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:06 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 856871e990febc87b42af5b3b724709f933a0067 + - 3020695e2e2f4e2b55b2ba1463bc0b96e778bcf2 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18162-EWR + - cache-den8242-DEN X-Timer: - - S1711656906.371657,VS0,VE1 + - S1728237476.585106,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -139,7 +139,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +181,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '17' + - '16' Cache-Control: - max-age=600 Connection: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:06 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -207,15 +207,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3ad5a5eeaedde05173ea46a3a49b033e2848814c + - 704d93114722079bcb0230418ffd79b87647f07e X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18156-EWR + - cache-den8228-DEN X-Timer: - - S1711656906.448293,VS0,VE1 + - S1728237476.616061,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-proxy-cache: - MISS status: @@ -229,7 +229,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -264,7 +264,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '10' Cache-Control: - max-age=600 Connection: @@ -274,11 +274,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:06 GMT + - Sun, 06 Oct 2024 17:57:55 GMT ETag: - - '"65bd0237-70b"' + - '"66e1651c-70b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -290,15 +290,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 81f4e9a96adbd3edad901025be29237f91e2b4ae + - 4099cf46311e347b611055b188f8b9076398b48d X-GitHub-Request-Id: - - 325E:2B4A:E9B1F7:12ABF6C:6605CFBC + - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 X-Served-By: - - cache-ewr18127-EWR + - cache-den8281-DEN X-Timer: - - S1711656907.519611,VS0,VE1 + - S1728237476.644628,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -314,7 +314,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -396,7 +396,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '82' + - '16' Cache-Control: - max-age=600 Connection: @@ -406,11 +406,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:06 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -422,15 +422,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4c5ef55a2d243c4f7ac9d569563902ce2d9c2d7e + - 5374084590cc9cc8f873c9ae2abdcc556d09a4fd X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18127-EWR + - cache-den8257-DEN X-Timer: - - S1711656907.595805,VS0,VE1 + - S1728237476.680228,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 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 4c59f4085..135454ca8 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.11 + - Python-urllib/3.12 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: - - '82' + - '16' 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:06 GMT + - Sun, 06 Oct 2024 17:57:55 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: - '1' X-Fastly-Request-ID: - - 874895b475513f76bfdeb4e20a0cc81944f511d8 + - 12ec01dfdca9876f2fa0f74fa400e35e1838ff38 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18125-EWR + - cache-den8259-DEN X-Timer: - - S1711656907.679796,VS0,VE1 + - S1728237476.716360,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '82' + - '15' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:06 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -180,17 +180,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 43bfebb21529239d4654ddb07ae5ea58a198892d + - 88e40097c8f2e17d84e004b921383e3ccd83e982 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18178-EWR + - cache-den8255-DEN X-Timer: - - S1711656907.760681,VS0,VE2 + - S1728237476.745337,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '82' + - '15' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:06 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -279,17 +279,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 519f4d2bb9a0fd63e2b9751a65c8433eba662962 + - 1fc9c464326eeb25c99b92ff75d7148ba2838742 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18173-EWR + - cache-den8267-DEN X-Timer: - - S1711656907.832124,VS0,VE1 + - S1728237476.771004,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '82' + - '15' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:06 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -350,17 +350,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '20' + - '1' X-Fastly-Request-ID: - - 594ebe8fe1c45cff2d4754cfe9d9f5301d74bf89 + - 415c8886c7b77f599131fe1ce9249cf28d8b19d1 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18156-EWR + - cache-den8249-DEN X-Timer: - - S1711656907.911725,VS0,VE1 + - S1728237476.796860,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '82' + - '15' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:06 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -416,17 +416,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 632f1a32ef9fa05fb3b8abef88fd4e3453e7e783 + - 8c11b9093c52411a1c4bb052742215038729f664 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18151-EWR + - cache-den8263-DEN X-Timer: - - S1711656907.998007,VS0,VE1 + - S1728237476.823770,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '82' + - '15' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:07 GMT + - Sun, 06 Oct 2024 17:57:55 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ddfeb1489160d2482f7a69cfb51d8e3631b6801a + - 920ad24790bff063f98f5c120aad1671da3d230a X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18152-EWR + - cache-den8270-DEN X-Timer: - - S1711656907.080344,VS0,VE1 + - S1728237476.853669,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -549,7 +553,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '10' Cache-Control: - max-age=600 Connection: @@ -559,11 +563,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:07 GMT + - Sun, 06 Oct 2024 17:57:55 GMT ETag: - - '"65bd0237-70b"' + - '"66e1651c-70b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -575,15 +579,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 735e7571238b97391ff22a92aec5e40ec38eb5d8 + - 783c9a888037cb778bb3957e816208318dfbd223 X-GitHub-Request-Id: - - 325E:2B4A:E9B1F7:12ABF6C:6605CFBC + - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 X-Served-By: - - cache-ewr18147-EWR + - cache-den8227-DEN X-Timer: - - S1711656907.392944,VS0,VE2 + - S1728237476.883915,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -599,7 +603,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -681,7 +685,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '16' Cache-Control: - max-age=600 Connection: @@ -691,11 +695,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:07 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -705,17 +709,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '18' X-Fastly-Request-ID: - - 0b450b3dbf7b743bdf335efd4141a90d6b64c529 + - b24cacc1270c94f4c313da6896c51a8ba9130365 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18150-EWR + - cache-den8226-DEN X-Timer: - - S1711656907.471624,VS0,VE1 + - S1728237476.914599,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -731,7 +735,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -773,7 +777,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '16' Cache-Control: - max-age=600 Connection: @@ -783,11 +787,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:07 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -797,17 +801,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 124490c74b433851b2c54ef32459ff592f3bb23a + - 5a42b15b4ceaaab66f0f58c354758e511e6e7d5f X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18154-EWR + - cache-den8279-DEN X-Timer: - - S1711656908.552289,VS0,VE1 + - S1728237476.945967,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 5977f205d..d2cb3dfea 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.11 + - Python-urllib/3.12 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: - - '82' + - '16' 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:07 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - fc75ba3e67065f22ebcd04ae8fd173dc872aaafd + - d97e4579ef52c99fd0bae638bbb0cf0592f7df60 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18139-EWR + - cache-den8223-DEN X-Timer: - - S1711656908.636090,VS0,VE1 + - S1728237476.985666,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '83' + - '16' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:07 GMT + - Sun, 06 Oct 2024 17:57:56 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f63bee59fdb94bab341198d19e4bd1129be0311c + - f5e4a0c3b4c06398a87203c97e3e49488ada835b X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18142-EWR + - cache-den8266-DEN X-Timer: - - S1711656908.712317,VS0,VE1 + - S1728237476.016040,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '83' + - '16' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:07 GMT + - Sun, 06 Oct 2024 17:57:56 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: @@ -279,17 +279,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 292ef3e9111e014a2415edef7af1110497f0413a + - 4994f740313c760f39a9374bacb93b2d6c523a45 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18173-EWR + - cache-den8239-DEN X-Timer: - - S1711656908.792892,VS0,VE1 + - S1728237476.039382,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '83' + - '16' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:07 GMT + - Sun, 06 Oct 2024 17:57:56 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: @@ -350,17 +350,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 0bbf3699658ce76e2671687155c653f83eafdabf + - 18aadc936ffa289472b261cf0699c880cc6cb784 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18120-EWR + - cache-den8275-DEN X-Timer: - - S1711656908.875981,VS0,VE1 + - S1728237476.066735,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '83' + - '16' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:07 GMT + - Sun, 06 Oct 2024 17:57:56 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3ee3f8d19ab507721a732fe817737ae2a612e4e1 + - cf8b73232d455f21fefcdd992bce932030fabc4b X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18143-EWR + - cache-den8244-DEN X-Timer: - - S1711656908.952791,VS0,VE1 + - S1728237476.094546,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '83' + - '16' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:08 GMT + - Sun, 06 Oct 2024 17:57:56 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 80a1fd3f6a292bf89454d45aab33722e675ba001 + - 6d70dc3555d279b7d219dc3ff41b84500a359e29 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18179-EWR + - cache-den8260-DEN X-Timer: - - S1711656908.028802,VS0,VE1 + - S1728237476.118268,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sat/json-schema/schema.json response: @@ -544,7 +548,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '4' Cache-Control: - max-age=600 Connection: @@ -554,11 +558,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:08 GMT + - Sun, 06 Oct 2024 17:57:56 GMT ETag: - - '"65bd0237-5bb"' + - '"66e1651c-5bb"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -570,15 +574,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5cbba97d710c99761c7f03638ec04cd14e4df739 + - ca382a6e32c528df98ddaba36d151bb58a70c749 X-GitHub-Request-Id: - - FEF8:1218:F7FD3C:13936AE:6605CFC4 + - C07F:1A16E6:3879144:3ED8D70:6702CF9F X-Served-By: - - cache-ewr18146-EWR + - cache-den8237-DEN X-Timer: - - S1711656908.104925,VS0,VE1 + - S1728237476.145504,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:25:01 GMT + - Sun, 06 Oct 2024 18:07:51 GMT x-origin-cache: - HIT x-proxy-cache: @@ -594,7 +598,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -633,7 +637,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '11' Cache-Control: - max-age=600 Connection: @@ -643,11 +647,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:08 GMT + - Sun, 06 Oct 2024 17:57:56 GMT ETag: - - '"65bd0237-829"' + - '"66e1651c-829"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -659,15 +663,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 20efa3d56b1cff4d4a23c956573f1e1caee6398e + - a92697326c1c6cd483dcd2f67e6876c192a27425 X-GitHub-Request-Id: - - A73E:14AB:E3AFAE:124B38F:6605CFBC + - AE2B:2BEEA3:3A11710:4071547:6702CF98 X-Served-By: - - cache-ewr18146-EWR + - cache-den8258-DEN X-Timer: - - S1711656908.183794,VS0,VE1 + - S1728237476.176699,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: 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 fc62ffc53..48460fd08 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.11 + - Python-urllib/3.12 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: - - '83' + - '16' 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:08 GMT + - Sun, 06 Oct 2024 17:57:56 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: - '1' X-Fastly-Request-ID: - - 20891657502de3ee1d4de17115e18925759348ca + - b96a0b59903b3cacaeb831b1532e5d3e76f7af4b X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18124-EWR + - cache-den8251-DEN X-Timer: - - S1711656908.271684,VS0,VE2 + - S1728237476.214406,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '83' + - '16' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:08 GMT + - Sun, 06 Oct 2024 17:57:56 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 435e953ead4a2dffd8c182f7ad19e21da7809775 + - ba42d9ea7a36d1bad74f5acd41a625f8882a7c97 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18180-EWR + - cache-den8233-DEN X-Timer: - - S1711656908.351733,VS0,VE2 + - S1728237476.244530,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '83' + - '16' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:08 GMT + - Sun, 06 Oct 2024 17:57:56 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6947730a4ada2cb8710b8a124d3d5ec0a6c24c27 + - c3bc13e0847f0d3960e6e2199e14c3c8e944f7c1 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18140-EWR + - cache-den8281-DEN X-Timer: - - S1711656908.427766,VS0,VE2 + - S1728237476.269453,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '83' + - '16' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:08 GMT + - Sun, 06 Oct 2024 17:57:56 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 273985f18c797c0cf49c28be49363eff0753cb49 + - e05a28908c960bd961a112ba9798e3f7748fb78d X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18135-EWR + - cache-den8278-DEN X-Timer: - - S1711656909.519984,VS0,VE1 + - S1728237476.299009,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '83' + - '16' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:08 GMT + - Sun, 06 Oct 2024 17:57:56 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9a69f5eb6aef2766f054c33148ed3e3ce5bc42cd + - 041e171e966fad96a07121241458c43288924b21 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18124-EWR + - cache-den8262-DEN X-Timer: - - S1711656909.599481,VS0,VE2 + - S1728237476.326077,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '83' + - '16' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:08 GMT + - Sun, 06 Oct 2024 17:57:56 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 995aa8530fffb3e43511e23d4161eb6cb685119c + - 06d662b5c95558328540720930ae0561e3eb58a8 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18177-EWR + - cache-den8230-DEN X-Timer: - - S1711656909.675670,VS0,VE2 + - S1728237476.352611,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/projection/json-schema/schema.json response: @@ -568,7 +572,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '9' + - '7' Cache-Control: - max-age=600 Connection: @@ -578,11 +582,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:08 GMT + - Sun, 06 Oct 2024 17:57:56 GMT ETag: - - '"65bd0237-dc7"' + - '"66e1651c-dc7"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -594,15 +598,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 45a7fbdc87f0c5b9939b9033f127303a92a6d9bb + - 6995b985e4be703c6b5a1dbeb19aaf918b5f90fd X-GitHub-Request-Id: - - B474:9FDF:DBCC1B:11CF058:6605CFC3 + - E8DC:3E300:36AED75:3D0E8FA:6702CF9D X-Served-By: - - cache-ewr18147-EWR + - cache-den8271-DEN X-Timer: - - S1711656909.743627,VS0,VE12 + - S1728237476.378811,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:59 GMT + - Sun, 06 Oct 2024 18:07:49 GMT x-origin-cache: - HIT x-proxy-cache: @@ -618,7 +622,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -657,7 +661,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '17' + - '11' Cache-Control: - max-age=600 Connection: @@ -667,11 +671,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:08 GMT + - Sun, 06 Oct 2024 17:57:56 GMT ETag: - - '"65bd0237-829"' + - '"66e1651c-829"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -683,15 +687,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c1f693eb73351afbdb550f414272399f2b9f660c + - 4bee01e8421533e34cee87eabba93a6bfe795be8 X-GitHub-Request-Id: - - A73E:14AB:E3AFAE:124B38F:6605CFBC + - AE2B:2BEEA3:3A11710:4071547:6702CF98 X-Served-By: - - cache-ewr18174-EWR + - cache-den8275-DEN X-Timer: - - S1711656909.835535,VS0,VE1 + - S1728237476.414254,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: 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 cf261c66f..351b52847 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.11 + - Python-urllib/3.12 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: - - '84' + - '16' 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:08 GMT + - Sun, 06 Oct 2024 17:57:56 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: - '1' X-Fastly-Request-ID: - - 0cea25a6682f615bbceb25a7f2106540900c73b6 + - babeda74a1c8a6275e8abcb3f0d3b56dfd41c517 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18167-EWR + - cache-den8268-DEN X-Timer: - - S1711656909.911659,VS0,VE2 + - S1728237476.451768,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '84' + - '16' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:08 GMT + - Sun, 06 Oct 2024 17:57:56 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: @@ -180,17 +180,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 83e9dbd6695149f24ded943a60efc98e4fc37179 + - 2f0e9c985ad746cd01171422872b9210144f176d X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18180-EWR + - cache-den8261-DEN X-Timer: - - S1711656909.995609,VS0,VE1 + - S1728237476.481069,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '84' + - '16' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:09 GMT + - Sun, 06 Oct 2024 17:57:56 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 62398c9973a8c67e83bd99694ee442b1f24c9df0 + - 458d31414fac7a5551eb8092a466be3ea7864c4d X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18171-EWR + - cache-den8231-DEN X-Timer: - - S1711656909.063707,VS0,VE1 + - S1728237477.507895,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '84' + - '16' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:09 GMT + - Sun, 06 Oct 2024 17:57:56 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c08976f97654beeb0cae565828cc19b699465050 + - bbd4dcc86fa219d999fd0d2c750c195e396943bc X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18134-EWR + - cache-den8237-DEN X-Timer: - - S1711656909.143521,VS0,VE1 + - S1728237477.534773,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '84' + - '17' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:09 GMT + - Sun, 06 Oct 2024 17:57:57 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6e4294586a6a10bec9b19a23af162a756b40946e + - 189c2b42931061cd9c363afbfe331df256d9f455 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18169-EWR + - cache-den8249-DEN X-Timer: - - S1711656909.223785,VS0,VE1 + - S1728237478.569875,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '84' + - '17' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:09 GMT + - Sun, 06 Oct 2024 17:57:57 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: @@ -490,17 +492,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 5d2fb3c92a8a960657da685248ff2cb0270735de + - e109db84b809e7681b93b9a1e79e508a14bcad35 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18134-EWR + - cache-den8247-DEN X-Timer: - - S1711656909.303814,VS0,VE2 + - S1728237478.603039,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: 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 b9ec38882..fbeb17418 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.11 + - Python-urllib/3.12 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: - - '84' + - '18' 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:09 GMT + - Sun, 06 Oct 2024 17:57:57 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: - '1' X-Fastly-Request-ID: - - 6c599aa2f0ec6abb643104c992c786b34afe3e5d + - 5125584d567d5c46ad0d386a5225fb9f558b741f X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18177-EWR + - cache-den8258-DEN X-Timer: - - S1711656909.391597,VS0,VE1 + - S1728237478.642760,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '85' + - '18' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:09 GMT + - Sun, 06 Oct 2024 17:57:57 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: @@ -180,17 +180,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 23e76232bcd5d95dcee834fea2c04f323e42473a + - 8f0e10e1d3f9a37c15fd1088e1d56086f3fe8f7d X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18178-EWR + - cache-den8269-DEN X-Timer: - - S1711656909.471659,VS0,VE1 + - S1728237478.680976,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '84' + - '17' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:09 GMT + - Sun, 06 Oct 2024 17:57:57 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 +281,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - ee62124e184c8b64036328e447127552fe4acb46 + - 84908a8250e8ad3eb2b2e7c139214ab312f6f303 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18166-EWR + - cache-den8227-DEN X-Timer: - - S1711656910.563857,VS0,VE0 + - S1728237478.703785,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '84' + - '17' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:09 GMT + - Sun, 06 Oct 2024 17:57:57 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: @@ -350,17 +350,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 99eaf6214f2fd96710a69e58f8c24bddbc32a520 + - d46e4ec10ce53902c8bc5587978cbca8c2739118 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18166-EWR + - cache-den8269-DEN X-Timer: - - S1711656910.643414,VS0,VE0 + - S1728237478.730605,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '84' + - '17' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:09 GMT + - Sun, 06 Oct 2024 17:57:57 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a926ac39e8289de5ba158d7e7b8613eab091b2ea + - c3de6ca6a4a18d7179fd79c0f4ee3b677c578ca6 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18170-EWR + - cache-den8226-DEN X-Timer: - - S1711656910.735749,VS0,VE2 + - S1728237478.758337,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '84' + - '17' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:09 GMT + - Sun, 06 Oct 2024 17:57:57 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 +494,17 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - b411ab6e1360000184c81bf47cacee911d5ef692 + - 000c0ef7dd96a787817e3a6610266646cb8fe7e3 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18136-EWR + - cache-den8235-DEN X-Timer: - - S1711656910.819758,VS0,VE1 + - S1728237478.784269,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -552,7 +556,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '13' Cache-Control: - max-age=600 Connection: @@ -562,11 +566,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:09 GMT + - Sun, 06 Oct 2024 17:57:57 GMT ETag: - - '"65bd0237-805"' + - '"66e1651c-805"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -578,15 +582,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 78940d45422432ff035d1d12e609f8242ed6199c + - d499cf19f26e6121215cc3a4dddda1890de644a2 X-GitHub-Request-Id: - - 23F2:5B37:E736FB:1287063:6605CFBB + - E8D9:1C7115:3966C49:3FC69B2:6702CF98 X-Served-By: - - cache-ewr18174-EWR + - cache-den8222-DEN X-Timer: - - S1711656910.895907,VS0,VE2 + - S1728237478.810271,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -602,7 +606,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/projection/json-schema/schema.json response: @@ -656,7 +660,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '8' Cache-Control: - max-age=600 Connection: @@ -666,11 +670,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:09 GMT + - Sun, 06 Oct 2024 17:57:57 GMT ETag: - - '"65bd0237-dc7"' + - '"66e1651c-dc7"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -682,15 +686,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 157b822a3fb7e585524990b2be49f6722aa7ac0e + - d3a300ccb25bbf2c93bb33f10a0200d054ca9591 X-GitHub-Request-Id: - - B474:9FDF:DBCC1B:11CF058:6605CFC3 + - E8DC:3E300:36AED75:3D0E8FA:6702CF9D X-Served-By: - - cache-ewr18150-EWR + - cache-den8244-DEN X-Timer: - - S1711656910.963740,VS0,VE1 + - S1728237478.842728,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:59 GMT + - Sun, 06 Oct 2024 18:07:49 GMT x-origin-cache: - HIT x-proxy-cache: @@ -706,7 +710,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -745,7 +749,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '13' Cache-Control: - max-age=600 Connection: @@ -755,11 +759,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:10 GMT + - Sun, 06 Oct 2024 17:57:57 GMT ETag: - - '"65bd0237-829"' + - '"66e1651c-829"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -771,15 +775,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5423f5de7622b770bdb8bae40a63a63cc28a7ea9 + - 67cf88790277ffc8c5672b1a259a24a5e4609c92 X-GitHub-Request-Id: - - A73E:14AB:E3AFAE:124B38F:6605CFBC + - AE2B:2BEEA3:3A11710:4071547:6702CF98 X-Served-By: - - cache-ewr18132-EWR + - cache-den8270-DEN X-Timer: - - S1711656910.040242,VS0,VE1 + - S1728237478.873751,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: 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 92d98f8a3..b792cec54 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.11 + - Python-urllib/3.12 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: - - '85' + - '18' 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:10 GMT + - Sun, 06 Oct 2024 17:57:57 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '2' X-Fastly-Request-ID: - - de7d216c9e6ad20d5fb7be5ee7d0972088911ca0 + - 9ddb10fd1e49f74a54800b0905da9aadc800b6d0 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18139-EWR + - cache-den8233-DEN X-Timer: - - S1711656910.123816,VS0,VE1 + - S1728237478.909828,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '85' + - '18' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:10 GMT + - Sun, 06 Oct 2024 17:57:57 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a698092c8848171f8835fd21a45f84fe9167cf24 + - 0ad1e6dac5f34ee9248af7f57793c4e1c88ef922 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18144-EWR + - cache-den8262-DEN X-Timer: - - S1711656910.204184,VS0,VE1 + - S1728237478.942672,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '85' + - '18' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:10 GMT + - Sun, 06 Oct 2024 17:57:57 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: @@ -279,17 +279,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - bdfb1f317b1bab56e598ebf746f3f4a34f630037 + - 56dec83c6b4886aedeb3c01270105fe3a2863018 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18126-EWR + - cache-den8258-DEN X-Timer: - - S1711656910.287724,VS0,VE1 + - S1728237478.972044,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '85' + - '18' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:10 GMT + - Sun, 06 Oct 2024 17:57:58 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c10022638b68e4b9c12d6d5979880e092370afae + - 7bda1586ce063097fe20943d69dab1f1be47ba59 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18164-EWR + - cache-den8246-DEN X-Timer: - - S1711656910.388729,VS0,VE1 + - S1728237478.016027,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '85' + - '18' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:10 GMT + - Sun, 06 Oct 2024 17:57:58 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: @@ -416,17 +416,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 9cfd98a464c6ca21d525d4c314ef11d2767a3e28 + - 94e7cb9f2b2450568abbda402914b06796a35c88 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18167-EWR + - cache-den8260-DEN X-Timer: - - S1711656910.468154,VS0,VE1 + - S1728237478.048542,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '85' + - '18' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:10 GMT + - Sun, 06 Oct 2024 17:57:58 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: @@ -490,17 +492,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 445933214c7c29674aa360834880ea79f86e5fab + - 35166f566a641611690337166561362f7ca7040d X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18134-EWR + - cache-den8243-DEN X-Timer: - - S1711656911.555646,VS0,VE1 + - S1728237478.075948,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -552,7 +556,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '13' Cache-Control: - max-age=600 Connection: @@ -562,11 +566,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:10 GMT + - Sun, 06 Oct 2024 17:57:58 GMT ETag: - - '"65bd0237-805"' + - '"66e1651c-805"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -576,17 +580,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 06321db0d177de80e9207a350ffe4ade5b86482a + - 4b145895d29e24d79bf97812ceeb6615f189ce31 X-GitHub-Request-Id: - - 23F2:5B37:E736FB:1287063:6605CFBB + - E8D9:1C7115:3966C49:3FC69B2:6702CF98 X-Served-By: - - cache-ewr18142-EWR + - cache-den8279-DEN X-Timer: - - S1711656911.635585,VS0,VE1 + - S1728237478.103717,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -602,7 +606,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -641,7 +645,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '13' Cache-Control: - max-age=600 Connection: @@ -651,11 +655,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:10 GMT + - Sun, 06 Oct 2024 17:57:58 GMT ETag: - - '"65bd0237-829"' + - '"66e1651c-829"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -667,15 +671,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d8f581779fa3063c96f0016a0355ad1faab9952a + - d642302f8cce96150d86d3d2d04e7ab8518ad316 X-GitHub-Request-Id: - - A73E:14AB:E3AFAE:124B38F:6605CFBC + - AE2B:2BEEA3:3A11710:4071547:6702CF98 X-Served-By: - - cache-ewr18162-EWR + - cache-den8226-DEN X-Timer: - - S1711656911.715899,VS0,VE2 + - S1728237478.136648,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: 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 9842ad06e..f650e0d86 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.11 + - Python-urllib/3.12 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: - - '86' + - '18' 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:10 GMT + - Sun, 06 Oct 2024 17:57:58 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: - '2' X-Fastly-Request-ID: - - e84e70a080cb9c2cafe9a7f4b4a207eecec1bfc2 + - 95a47e767364fc7137eaacdb0266674f7358229d X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18124-EWR + - cache-den8223-DEN X-Timer: - - S1711656911.803446,VS0,VE1 + - S1728237478.175153,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '86' + - '18' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:10 GMT + - Sun, 06 Oct 2024 17:57:58 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8d360340b9fabbf7556936d9a5ca022a27d431bb + - 985199739814aebce8795973e336f0fdc9e65d25 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18154-EWR + - cache-den8240-DEN X-Timer: - - S1711656911.892260,VS0,VE1 + - S1728237478.203574,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '86' + - '18' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:10 GMT + - Sun, 06 Oct 2024 17:57:58 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 623105f2c764936bf31bdea3e919f2b21343334d + - 4d77862cd8986619641df1645973294574a4510d X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18179-EWR + - cache-den8241-DEN X-Timer: - - S1711656911.965320,VS0,VE1 + - S1728237478.227804,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '86' + - '18' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:11 GMT + - Sun, 06 Oct 2024 17:57:58 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - be1b0c4c72984df02c529f7fd165006391b98b45 + - 48f37d77939892aaad7516ff8deff0cb8781ce73 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18168-EWR + - cache-den8221-DEN X-Timer: - - S1711656911.048201,VS0,VE2 + - S1728237478.254373,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '86' + - '18' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:11 GMT + - Sun, 06 Oct 2024 17:57:58 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 463b42a001381df4c250c611eff83cfac450e8ea + - feed4f842fe4273d94f04429debd1498d1fb56c3 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18162-EWR + - cache-den8267-DEN X-Timer: - - S1711656911.132438,VS0,VE1 + - S1728237478.285737,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '86' + - '18' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:11 GMT + - Sun, 06 Oct 2024 17:57:58 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: @@ -490,17 +492,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Fastly-Request-ID: - - 43582cfc98a74117af3d16d7e8d34c16928b8d8a + - 301f1c3ad53b6a5ef7bc74e58d2463da191d440f X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18175-EWR + - cache-den8235-DEN X-Timer: - - S1711656911.211611,VS0,VE2 + - S1728237478.310800,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -552,7 +556,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '13' Cache-Control: - max-age=600 Connection: @@ -562,11 +566,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:11 GMT + - Sun, 06 Oct 2024 17:57:58 GMT ETag: - - '"65bd0237-805"' + - '"66e1651c-805"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -578,15 +582,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 56529860436e3efe395f576e0f6197e78d497405 + - 9f22c9c51d91b806eefd8e87d4eaa0bacda6b99c X-GitHub-Request-Id: - - 23F2:5B37:E736FB:1287063:6605CFBB + - E8D9:1C7115:3966C49:3FC69B2:6702CF98 X-Served-By: - - cache-ewr18137-EWR + - cache-den8257-DEN X-Timer: - - S1711656911.287920,VS0,VE2 + - S1728237478.339506,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -602,7 +606,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -641,7 +645,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '19' + - '13' Cache-Control: - max-age=600 Connection: @@ -651,11 +655,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:11 GMT + - Sun, 06 Oct 2024 17:57:58 GMT ETag: - - '"65bd0237-829"' + - '"66e1651c-829"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -667,15 +671,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f3d7b60fdce5c94d2a26a4f3f1dd494bb2800e0b + - 4037a98dd8b2d5526434406c2da7401b81b8ba12 X-GitHub-Request-Id: - - A73E:14AB:E3AFAE:124B38F:6605CFBC + - AE2B:2BEEA3:3A11710:4071547:6702CF98 X-Served-By: - - cache-ewr18170-EWR + - cache-den8269-DEN X-Timer: - - S1711656911.364346,VS0,VE2 + - S1728237478.370883,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: 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 e749e7108..96fe6e35d 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.11 + - Python-urllib/3.12 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: - - '86' + - '18' 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:11 GMT + - Sun, 06 Oct 2024 17:57:58 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - a0be68eb4ee80d4262c453448ca9a5f5c9623648 + - 22c5e3914639ab467e296a966dbd2760840bea9b X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18140-EWR + - cache-den8236-DEN X-Timer: - - S1711656911.451884,VS0,VE1 + - S1728237478.407844,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '87' + - '18' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:11 GMT + - Sun, 06 Oct 2024 17:57:58 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: @@ -180,17 +180,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 96d32779924f7be8e4070a2b8aeaecca3c2ca858 + - f7ac778fce4c92780c7a264e17a9e764ea3c4162 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18163-EWR + - cache-den8223-DEN X-Timer: - - S1711656912.528383,VS0,VE2 + - S1728237478.462433,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '87' + - '18' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:11 GMT + - Sun, 06 Oct 2024 17:57:58 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 377222514b1bec26e0248bf8a6743b94cc784ff9 + - 5c086af56642bde03b448f9bd656cea4069729e2 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18120-EWR + - cache-den8220-DEN X-Timer: - - S1711656912.615837,VS0,VE2 + - S1728237478.488281,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '87' + - '18' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:11 GMT + - Sun, 06 Oct 2024 17:57:58 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ae6ce46aa9f088f77ce302423fc21a4570a9f16b + - c5017ef0c83d4e47c653e42410d1c10ecc241db8 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18159-EWR + - cache-den8244-DEN X-Timer: - - S1711656912.704272,VS0,VE1 + - S1728237479.520770,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '87' + - '18' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:11 GMT + - Sun, 06 Oct 2024 17:57:58 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: @@ -416,17 +416,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 850face3e109e021bbaebc81ebb96f702188db92 + - 2b9d4005cac51a2792e75cfcf62a3fdfdc7517b9 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18127-EWR + - cache-den8272-DEN X-Timer: - - S1711656912.780465,VS0,VE0 + - S1728237479.550889,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '86' + - '18' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:11 GMT + - Sun, 06 Oct 2024 17:57:58 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: @@ -490,17 +492,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 98529ba206e5ff8cb5e913a46db28de4e8e1b92a + - 82555fbfadc5d49494f2da9c71cc69263756f697 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18127-EWR + - cache-den8223-DEN X-Timer: - - S1711656912.867884,VS0,VE1 + - S1728237479.577119,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -552,7 +556,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '20' + - '14' Cache-Control: - max-age=600 Connection: @@ -562,11 +566,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:11 GMT + - Sun, 06 Oct 2024 17:57:58 GMT ETag: - - '"65bd0237-805"' + - '"66e1651c-805"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -578,15 +582,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - cbaa534328d496d32e5d907d2203b1edc980bd23 + - 055cee478c45bb1d8ef98d2a9857bcc179821023 X-GitHub-Request-Id: - - 23F2:5B37:E736FB:1287063:6605CFBB + - E8D9:1C7115:3966C49:3FC69B2:6702CF98 X-Served-By: - - cache-ewr18170-EWR + - cache-den8283-DEN X-Timer: - - S1711656912.948232,VS0,VE1 + - S1728237479.600120,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -602,7 +606,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -641,7 +645,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '20' + - '13' Cache-Control: - max-age=600 Connection: @@ -651,11 +655,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:12 GMT + - Sun, 06 Oct 2024 17:57:58 GMT ETag: - - '"65bd0237-829"' + - '"66e1651c-829"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -667,15 +671,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a618ff886e2e910f8c3cd48fff7302933021d1c4 + - 081e87563806d74d68f4ee05656a0ad076efaae9 X-GitHub-Request-Id: - - A73E:14AB:E3AFAE:124B38F:6605CFBC + - AE2B:2BEEA3:3A11710:4071547:6702CF98 X-Served-By: - - cache-ewr18177-EWR + - cache-den8253-DEN X-Timer: - - S1711656912.024307,VS0,VE1 + - S1728237479.632222,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: 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 9b4900fc4..df64e04df 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:20 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:19:20 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - - '2' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -88,15 +88,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 831d9df76eca006da855a2c5e7971c032b9bf14f + - 1cd17dffedc5b0ba5fc6264d545bab1829b3feb5 X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18137-EWR + - cache-den8274-DEN X-Timer: - - S1711656860.327832,VS0,VE1 + - S1728237441.288982,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 a08bca320..21afa4bb4 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.11 + - Python-urllib/3.12 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: - - '87' + - '19' 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:12 GMT + - Sun, 06 Oct 2024 17:57:58 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: - '1' X-Fastly-Request-ID: - - 69dc909a15a8b4729d7b67b4b76671fada9b6a09 + - eb6d8dbcf40bec2a5f5464cf573ed6ce1ef95923 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18132-EWR + - cache-den8242-DEN X-Timer: - - S1711656912.107751,VS0,VE6 + - S1728237479.691818,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '87' + - '19' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:12 GMT + - Sun, 06 Oct 2024 17:57:58 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: @@ -180,17 +180,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - ea702026ca3294fd7b1430b05fde7d87b704fcc4 + - 36b75b89f13dd34dfa179d22b53a9c2245e33a91 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18122-EWR + - cache-den8273-DEN X-Timer: - - S1711656912.191769,VS0,VE1 + - S1728237479.717851,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '87' + - '18' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:12 GMT + - Sun, 06 Oct 2024 17:57:58 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1200829847d64f8b5899dd58fcde903279fd7f18 + - 579b9f3f8edc42cf2f6c43df3e5c45a4e52585f0 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18135-EWR + - cache-den8276-DEN X-Timer: - - S1711656912.271837,VS0,VE1 + - S1728237479.740647,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '87' + - '18' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:12 GMT + - Sun, 06 Oct 2024 17:57:58 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 97812a1a6a3efd298454968f421fcae953dfeebe + - b0cc1f7cbc299ed71b23c0937d14e57cdff67f01 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18133-EWR + - cache-den8253-DEN X-Timer: - - S1711656912.348451,VS0,VE1 + - S1728237479.764265,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '88' + - '18' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:12 GMT + - Sun, 06 Oct 2024 17:57:58 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 +418,17 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - fb362cac4f830e54ffa6f95e4bc4782fc87d84fe + - 6aadf05314936fdd9af3c69553a9b3a009d7c226 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18128-EWR + - cache-den8256-DEN X-Timer: - - S1711656912.423572,VS0,VE0 + - S1728237479.786931,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '87' + - '18' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:12 GMT + - Sun, 06 Oct 2024 17:57:58 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 62b99ab1de4c21abfa664346d8c09e5eede8d1f0 + - e03bf37556a2b533f81ac82a0e2026c4c330894e X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18135-EWR + - cache-den8256-DEN X-Timer: - - S1711656913.503793,VS0,VE1 + - S1728237479.807984,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: 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 c34cb86c6..6210bc5d0 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.11 + - Python-urllib/3.12 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: - - '88' + - '19' 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:12 GMT + - Sun, 06 Oct 2024 17:57:58 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '3' X-Fastly-Request-ID: - - d05b224ae2a7235c31409e890eddd64ce7077afe + - 6fca927c208f40ba82573fbec2957361c0829dc5 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18126-EWR + - cache-den8233-DEN X-Timer: - - S1711656913.592063,VS0,VE1 + - S1728237479.834757,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '88' + - '19' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:12 GMT + - Sun, 06 Oct 2024 17:57:58 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4de98dd3e6fc60eb6713bcba8c7fb8b01ce6b1bb + - 535c72b5cd5462386e617f3989ebc3819665d792 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18166-EWR + - cache-den8252-DEN X-Timer: - - S1711656913.684057,VS0,VE1 + - S1728237479.861452,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '88' + - '19' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:12 GMT + - Sun, 06 Oct 2024 17:57:58 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: @@ -279,17 +279,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '4' + - '1' X-Fastly-Request-ID: - - b0459b2449ad9954657ba6e70537e5510405d9e0 + - fa2e25bcbee2f1658b9fdda967bc1eb48049ed4f X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18159-EWR + - cache-den8251-DEN X-Timer: - - S1711656913.767804,VS0,VE1 + - S1728237479.884126,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '88' + - '19' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:12 GMT + - Sun, 06 Oct 2024 17:57:58 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2b1e8c2fa6b3614231fb4f8549e109daa7d38c60 + - ae3c330546be0a116b1bed6ee1f530e7d2f55a5c X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18169-EWR + - cache-den8240-DEN X-Timer: - - S1711656913.847758,VS0,VE1 + - S1728237479.963130,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '88' + - '19' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:12 GMT + - Sun, 06 Oct 2024 17:57:58 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: @@ -416,17 +416,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 42ce4c7afb797e7900f2746f5c89a44f57bedecc + - 8aaa5f698b317afd6f2b3b466004a91fbb3b1806 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18138-EWR + - cache-den8278-DEN X-Timer: - - S1711656913.927793,VS0,VE1 + - S1728237479.989204,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '88' + - '19' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:13 GMT + - Sun, 06 Oct 2024 17:57:59 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - c8b8557ce28515fea90468146aba4a8673f79c4f + - be4f08bf28674207b167f98b5d9315aad0608f02 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18168-EWR + - cache-den8226-DEN X-Timer: - - S1711656913.008124,VS0,VE1 + - S1728237479.015416,VS0,VE68 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -553,7 +557,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '21' + - '14' Cache-Control: - max-age=600 Connection: @@ -563,11 +567,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:13 GMT + - Sun, 06 Oct 2024 17:57:59 GMT ETag: - - '"65bd0237-829"' + - '"66e1651c-829"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -579,15 +583,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4bc71882b23cc3e02b475b5728c560723022bcc5 + - d60cc923d9985b8b4a91672aa11e0e9b634ec2ca X-GitHub-Request-Id: - - A73E:14AB:E3AFAE:124B38F:6605CFBC + - AE2B:2BEEA3:3A11710:4071547:6702CF98 X-Served-By: - - cache-ewr18168-EWR + - cache-den8220-DEN X-Timer: - - S1711656913.091784,VS0,VE1 + - S1728237479.107219,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -603,7 +607,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/projection/json-schema/schema.json response: @@ -657,7 +661,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '10' Cache-Control: - max-age=600 Connection: @@ -667,11 +671,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:13 GMT + - Sun, 06 Oct 2024 17:57:59 GMT ETag: - - '"65bd0237-dc7"' + - '"66e1651c-dc7"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -683,15 +687,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ed676a50fa947be61962542955638b06df9ec0f7 + - fb6550be152d7c51644b6db354295758185c9aff X-GitHub-Request-Id: - - B474:9FDF:DBCC1B:11CF058:6605CFC3 + - E8DC:3E300:36AED75:3D0E8FA:6702CF9D X-Served-By: - - cache-ewr18148-EWR + - cache-den8278-DEN X-Timer: - - S1711656913.164029,VS0,VE1 + - S1728237479.139291,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:59 GMT + - Sun, 06 Oct 2024 18:07:49 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 fd6ed11e7..6fa707040 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:15:13 GMT + - Sun, 06 Oct 2024 17:57:59 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:20:13 GMT + - Sun, 06 Oct 2024 18:02:59 GMT Source-Age: - - '45' + - '34' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 522aad5d6467d10cf0659cb32557e05f125b48f6 + - 849471aa3bc49f637c60a7a9439c3da62ab84cf0 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18174-EWR + - cache-den8242-DEN X-Timer: - - S1711656913.251663,VS0,VE0 + - S1728237479.178562,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:15:13 GMT + - Sun, 06 Oct 2024 17:57:59 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:20:13 GMT + - Sun, 06 Oct 2024 18:02:59 GMT Source-Age: - - '46' + - '34' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ccb7f8a9edeb1a0d084a41f495b82c9bb785f23c + - 04f70b2089323c6c01bba686a8a2a5c5bea3b0a6 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18162-EWR + - cache-den8241-DEN X-Timer: - - S1711656913.331570,VS0,VE1 + - S1728237479.208251,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 3be086887..f6df83881 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:15:13 GMT + - Sun, 06 Oct 2024 17:57:59 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:20:13 GMT + - Sun, 06 Oct 2024 18:02:59 GMT Source-Age: - - '54' + - '39' 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: - - 0626b219dd7fd722abf1451d763ded9b719079de + - 0b5d9b24f82c24dccf423bb86ee55913e9b47841 X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F X-Served-By: - - cache-ewr18146-EWR + - cache-den8222-DEN X-Timer: - - S1711656913.412297,VS0,VE0 + - S1728237479.240319,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:15:13 GMT + - Sun, 06 Oct 2024 17:57:59 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:20:13 GMT + - Sun, 06 Oct 2024 18:02:59 GMT Source-Age: - - '55' + - '39' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - bb357b435fe98966aa975a02597d921f91901a05 + - a2ef4456fff12a01ab537b58adb2324c518f4035 X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18160-EWR + - cache-den8243-DEN X-Timer: - - S1711656913.499779,VS0,VE1 + - S1728237479.271033,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 82c35eac2..85a200318 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.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/item.json response: @@ -110,11 +110,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:13 GMT + - Sun, 06 Oct 2024 17:57:59 GMT ETag: - - '"65bd0237-17f9"' + - '"66e1651c-17f9"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -126,15 +126,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 1bc7b244d9a48b55977e8ad740003dd4c66ba775 + - 9b8a7b99a719fc0fdc409312da06523f6b616249 X-GitHub-Request-Id: - - 8444:AF1DC:18D255B:1CA42BA:6605CFD1 + - 3181:269EC6:3A89264:40E8FF0:6702CFA6 X-Served-By: - - cache-ewr18176-EWR + - cache-den8267-DEN X-Timer: - - S1711656914.604044,VS0,VE25 + - S1728237479.309378,VS0,VE60 expires: - - Thu, 28 Mar 2024 20:25:13 GMT + - Sun, 06 Oct 2024 18:07:59 GMT x-proxy-cache: - MISS status: @@ -148,7 +148,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/basics.json response: @@ -177,11 +177,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:13 GMT + - Sun, 06 Oct 2024 17:57: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: @@ -193,15 +193,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 33479bd3061c7bdf521f5d3e9afa84b5b7b30141 + - 70a8fe0b3cdcf0e753891bd0fa30f0216c2fe4f1 X-GitHub-Request-Id: - - EF1A:27572:1B1B81C:1EEE16D:6605CFD1 + - 7824:30438:3A4FA03:40AF777:6702CFA1 X-Served-By: - - cache-ewr18173-EWR + - cache-den8229-DEN X-Timer: - - S1711656914.704107,VS0,VE17 + - S1728237479.402255,VS0,VE59 expires: - - Thu, 28 Mar 2024 20:25:13 GMT + - Sun, 06 Oct 2024 18:07:59 GMT x-proxy-cache: - MISS status: @@ -215,7 +215,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/datetime.json response: @@ -255,11 +255,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:13 GMT + - Sun, 06 Oct 2024 17:57:59 GMT ETag: - - '"65bd0237-51b"' + - '"66e1651c-51b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -271,15 +271,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 0038f1ceca6a0a1a782ea0e697729353c229989b + - 01393610185a51d88f7f19646c6bbabfe1e9e165 X-GitHub-Request-Id: - - 66B0:258A94:1A2E5D3:1DFFC50:6605CFD1 + - BD91:76956:3BAC130:420C130:6702CFA6 X-Served-By: - - cache-ewr18177-EWR + - cache-den8224-DEN X-Timer: - - S1711656914.799623,VS0,VE14 + - S1728237479.489975,VS0,VE75 expires: - - Thu, 28 Mar 2024 20:25:13 GMT + - Sun, 06 Oct 2024 18:07:59 GMT x-origin-cache: - HIT x-proxy-cache: @@ -295,7 +295,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/instrument.json response: @@ -326,11 +326,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:13 GMT + - Sun, 06 Oct 2024 17:57:59 GMT ETag: - - '"65bd0237-2a0"' + - '"66e1651c-2a0"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -342,17 +342,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 3642e3c1607a1aa90f92f4b8c7af2aa6ceb9d4ee + - a7f28b46fd4be04c26075d26d80c5bdd4ee93f27 X-GitHub-Request-Id: - - B6FC:2BEF47:183823B:1C08675:6605CFD1 + - 84E6:31444D:388258E:3EE227A:6702CFA6 X-Served-By: - - cache-ewr18163-EWR + - cache-den8233-DEN X-Timer: - - S1711656914.891515,VS0,VE13 + - S1728237480.596563,VS0,VE66 expires: - - Thu, 28 Mar 2024 20:25:13 GMT - x-origin-cache: - - HIT + - Sun, 06 Oct 2024 18:07:59 GMT x-proxy-cache: - MISS status: @@ -366,7 +364,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/licensing.json response: @@ -392,11 +390,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:14 GMT + - Sun, 06 Oct 2024 17:57:59 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: @@ -408,15 +406,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 62034f01015043993641547af4bb4b33f618576f + - 9637a9c98432145c119363ffbbd1e45901131218 X-GitHub-Request-Id: - - 66B0:258A94:1A2E5F0:1DFFC75:6605CFD1 + - D978:2E3A96:393F7EE:3F9F14C:6702CFA5 X-Served-By: - - cache-ewr18156-EWR + - cache-den8243-DEN X-Timer: - - S1711656914.979797,VS0,VE29 + - S1728237480.686544,VS0,VE72 expires: - - Thu, 28 Mar 2024 20:25:13 GMT + - Sun, 06 Oct 2024 18:07:59 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -430,7 +430,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/item-spec/json-schema/provider.json response: @@ -467,11 +467,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:14 GMT + - Sun, 06 Oct 2024 17:57:59 GMT ETag: - - '"65bd0237-458"' + - '"66e1651c-458"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -483,15 +483,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 01ec7115c4d0057ad47000e45bfdd640e886000e + - 4eb2ea84a6e1132d6ccc99039b8a07c3a679f938 X-GitHub-Request-Id: - - 45B4:265352:19CA62C:1D9BD97:6605CFD1 + - D31F:88140:39A9B5F:4009A0F:6702CFA6 X-Served-By: - - cache-ewr18138-EWR + - cache-den8281-DEN X-Timer: - - S1711656914.071695,VS0,VE14 + - S1728237480.784211,VS0,VE66 expires: - - Thu, 28 Mar 2024 20:25:14 GMT + - Sun, 06 Oct 2024 18:07:59 GMT x-origin-cache: - HIT x-proxy-cache: @@ -507,7 +507,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/extensions/eo/json-schema/schema.json response: @@ -583,11 +583,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:14 GMT + - Sun, 06 Oct 2024 17:57:59 GMT ETag: - - '"65bd0237-1039"' + - '"66e1651c-1039"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -599,15 +599,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 0aab95ffdb6f6e8647aa1c9badfc1f82602ce498 + - 13d3f147b2ef5347c8f0f344e21ace112212a7c0 X-GitHub-Request-Id: - - 848C:23BA3B:1BC759F:1F9B9EE:6605CFD1 + - 40EF:57408:3CDBD6C:433B439:6702CFA6 X-Served-By: - - cache-ewr18149-EWR + - cache-den8243-DEN X-Timer: - - S1711656914.179579,VS0,VE59 + - S1728237480.915792,VS0,VE71 expires: - - Thu, 28 Mar 2024 20:25:14 GMT + - Sun, 06 Oct 2024 18:07:59 GMT x-origin-cache: - HIT x-proxy-cache: @@ -623,7 +623,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/extensions/projection/json-schema/schema.json response: @@ -706,11 +706,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:14 GMT + - Sun, 06 Oct 2024 17:58:00 GMT ETag: - - '"65bd0237-1247"' + - '"66e1651c-1247"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -722,15 +722,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - cfba45e23e36d28efc8f652179b35082ea475b6b + - c54a0e6bb3ee1113a41df417d45248c8be6d7378 X-GitHub-Request-Id: - - DC32:1C5541:1B890D7:1F5ABED:6605CFD2 + - ACFD:D9115:3A5992A:40B97D4:6702CFA6 X-Served-By: - - cache-ewr18125-EWR + - cache-den8279-DEN X-Timer: - - S1711656914.325115,VS0,VE26 + - S1728237480.013616,VS0,VE70 expires: - - Thu, 28 Mar 2024 20:25:14 GMT + - Sun, 06 Oct 2024 18:08:00 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -744,7 +746,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/extensions/scientific/json-schema/schema.json response: @@ -815,11 +817,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:14 GMT + - Sun, 06 Oct 2024 17:58:00 GMT ETag: - - '"65bd0237-e6f"' + - '"66e1651c-e6f"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -831,17 +833,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - dcbeb62a5717475913ae576cb4a11ce346d9fd09 + - d943c945fbeefec4eaa9ec8fb519cd8abc8b7902 X-GitHub-Request-Id: - - E08A:397D62:1AB89AF:1E8C809:6605CFD2 + - 775C:B71F9:3BC4D21:4224FC7:6702CFA8 X-Served-By: - - cache-ewr18154-EWR + - cache-den8271-DEN X-Timer: - - S1711656914.423451,VS0,VE27 + - S1728237480.202572,VS0,VE221 expires: - - Thu, 28 Mar 2024 20:25:14 GMT - x-origin-cache: - - HIT + - Sun, 06 Oct 2024 18:08:00 GMT x-proxy-cache: - MISS status: @@ -855,7 +855,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.1/extensions/view/json-schema/schema.json response: @@ -924,11 +924,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:14 GMT + - Sun, 06 Oct 2024 17:58:00 GMT ETag: - - '"65bd0237-def"' + - '"66e1651c-def"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -940,15 +940,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 8386c4f04c24822f44882fd67511b61dc13c9ab1 + - ed2f1ff263406d771ac6ba6744edde3bbc79302b X-GitHub-Request-Id: - - 66B0:258A94:1A2E65C:1DFFCEE:6605CFD2 + - 8F75:1C389C:39A8E29:4008B85:6702CFA0 X-Served-By: - - cache-ewr18139-EWR + - cache-den8278-DEN X-Timer: - - S1711656915.529955,VS0,VE27 + - S1728237480.458143,VS0,VE77 expires: - - Thu, 28 Mar 2024 20:25:14 GMT + - Sun, 06 Oct 2024 18:08:00 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 1df43774a..d72003b8f 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.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/item.json response: @@ -112,11 +112,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:14 GMT + - Sun, 06 Oct 2024 17:58:00 GMT ETag: - - '"65bd0237-1887"' + - '"66e1651c-1887"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -128,15 +128,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - a39a2c3941fb5ff1301257590d35632379f74c34 + - 019611ce246f1cd016724ae393448bcdde1dd1b3 X-GitHub-Request-Id: - - EEB0:7B46E:18F8A94:1CC94E0:6605CFD2 + - C374:1C7115:3967D18:3FC7C56:6702CFA8 X-Served-By: - - cache-ewr18147-EWR + - cache-den8280-DEN X-Timer: - - S1711656915.636520,VS0,VE20 + - S1728237481.581924,VS0,VE60 expires: - - Thu, 28 Mar 2024 20:25:14 GMT + - Sun, 06 Oct 2024 18:08:00 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -150,7 +152,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/basics.json response: @@ -179,11 +181,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:14 GMT + - Sun, 06 Oct 2024 17:58:00 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: @@ -195,15 +197,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 0310127ee79b08ae86fb309fb443169a6e1734a4 + - 42e6d6e311f6b14b1a019d981ad930c97a072ef1 X-GitHub-Request-Id: - - 2EBA:1724:1702BA2:1A9BD1D:6605CFD2 + - E70C:25A7B1:3C0916A:426910E:6702CFA8 X-Served-By: - - cache-ewr18152-EWR + - cache-den8276-DEN X-Timer: - - S1711656915.727738,VS0,VE17 + - S1728237481.682571,VS0,VE218 expires: - - Thu, 28 Mar 2024 20:25:14 GMT + - Sun, 06 Oct 2024 18:08:00 GMT x-origin-cache: - HIT x-proxy-cache: @@ -219,7 +221,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/datetime.json response: @@ -259,11 +261,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:14 GMT + - Sun, 06 Oct 2024 17:58:00 GMT ETag: - - '"65bd0237-51b"' + - '"66e1651c-51b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -275,17 +277,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 8930afbe0747357eec5dd11cf3d7429f35946c62 + - 804c5f1b8a0a613c9dcec494eb59220869c5fd37 X-GitHub-Request-Id: - - C33A:2D219E:1B68B3B:1F3C7C3:6605CFD2 + - 3627:25A7B1:3C09187:426912A:6702CFA8 X-Served-By: - - cache-ewr18157-EWR + - cache-den8224-DEN X-Timer: - - S1711656915.823826,VS0,VE21 + - S1728237481.933641,VS0,VE60 expires: - - Thu, 28 Mar 2024 20:25:14 GMT - x-origin-cache: - - HIT + - Sun, 06 Oct 2024 18:08:00 GMT x-proxy-cache: - MISS status: @@ -299,7 +299,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/instrument.json response: @@ -330,11 +330,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:14 GMT + - Sun, 06 Oct 2024 17:58: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: @@ -346,15 +346,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - f5da4d1b7957b65d53d22e5820d7864126e167db + - ac9f5d95095345523ae46839487e3a2704119174 X-GitHub-Request-Id: - - 8844:A7AAD:1925799:1CF5BED:6605CFD2 + - A039:D9115:3A59A67:40B993B:6702CFA8 X-Served-By: - - cache-ewr18154-EWR + - cache-den8236-DEN X-Timer: - - S1711656915.931631,VS0,VE22 + - S1728237481.026585,VS0,VE61 expires: - - Thu, 28 Mar 2024 20:25:14 GMT + - Sun, 06 Oct 2024 18:08:01 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -368,7 +370,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/licensing.json response: @@ -394,11 +396,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:15 GMT + - Sun, 06 Oct 2024 17:58:01 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: @@ -410,17 +412,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 476af26047f39757132902e0a11c09e121eb333e + - 4c03e5f2b7dc4669a4b6f2c291a895b0703e4284 X-GitHub-Request-Id: - - 8288:397D62:1AB8A21:1E8C891:6605CFD3 + - 51D7:29763:39CED66:402E82C:6702CFA6 X-Served-By: - - cache-ewr18156-EWR + - cache-den8278-DEN X-Timer: - - S1711656915.035807,VS0,VE12 + - S1728237481.118133,VS0,VE60 expires: - - Thu, 28 Mar 2024 20:25:15 GMT - x-origin-cache: - - HIT + - Sun, 06 Oct 2024 18:08:01 GMT x-proxy-cache: - MISS status: @@ -434,7 +434,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-rc.2/item-spec/json-schema/provider.json response: @@ -471,11 +471,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:15 GMT + - Sun, 06 Oct 2024 17:58:01 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: @@ -487,15 +487,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 081b3e964394bbcf85bf24222ef7d3bc95a4f60e + - 32e32d95f4fe54a55509e81cad96f667a9f1dae0 X-GitHub-Request-Id: - - 29B8:AF1DC:18D268B:1CA4410:6605CFD1 + - D0ED:88140:39A9D20:4009BFB:6702CFA8 X-Served-By: - - cache-ewr18154-EWR + - cache-den8227-DEN X-Timer: - - S1711656915.123651,VS0,VE18 + - S1728237481.206662,VS0,VE57 expires: - - Thu, 28 Mar 2024 20:25:15 GMT + - Sun, 06 Oct 2024 18:08:01 GMT x-origin-cache: - HIT x-proxy-cache: @@ -511,7 +511,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -589,7 +589,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '92' + - '0' Cache-Control: - max-age=600 Connection: @@ -599,11 +599,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:15 GMT + - Sun, 06 Oct 2024 17:58:01 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: @@ -613,19 +613,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - 1d90476fc5a9db588a86e16b2a897f92f285b1f5 + - 7ec0d26981e6c889cc0855ed84f3ddfaf9dbee28 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 X-Served-By: - - cache-ewr18149-EWR + - cache-den8266-DEN X-Timer: - - S1711656915.247857,VS0,VE2 + - S1728237482.721060,VS0,VE64 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -641,7 +641,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json response: @@ -723,11 +723,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:15 GMT + - Sun, 06 Oct 2024 17:58:01 GMT ETag: - - '"63e6651b-1226"' + - '"669e563b-1226"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -741,15 +741,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - aa3e319891b35646b843fadc0d21c4bf6716b3f7 + - d2c7ab10736ad762a77e12382f680876d7b84efa X-GitHub-Request-Id: - - 616C:397D62:1AB8A52:1E8C8CA:6605CFD3 + - 360F:31444D:38827C0:3EE24EF:6702CFA8 X-Served-By: - - cache-ewr18148-EWR + - cache-den8260-DEN X-Timer: - - S1711656915.315760,VS0,VE18 + - S1728237482.825607,VS0,VE65 expires: - - Thu, 28 Mar 2024 20:25:15 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -765,7 +765,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/scientific/v1.0.0/schema.json response: @@ -851,7 +851,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '76' + - '0' Cache-Control: - max-age=600 Connection: @@ -861,7 +861,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:15 GMT + - Sun, 06 Oct 2024 17:58:01 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -875,19 +875,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - a686bca42046103dc72670ee86d788a32b73e26c + - cb2f4a98d4d8ad1692260ca02e6625e566ac5487 X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 84E6:31444D:38827E0:3EE2514:6702CFA8 X-Served-By: - - cache-ewr18134-EWR + - cache-den8226-DEN X-Timer: - - S1711656915.416366,VS0,VE2 + - S1728237482.925762,VS0,VE63 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -903,7 +903,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -961,7 +961,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '92' + - '0' Cache-Control: - max-age=600 Connection: @@ -971,7 +971,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:15 GMT + - Sun, 06 Oct 2024 17:58:03 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -985,19 +985,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - 24dbfea38b87eb5fccf0be2baf344c52b92d1181 + - 5f6354672f093bda4d88b52fdb09bad49c6fb2ea X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 X-Served-By: - - cache-ewr18175-EWR + - cache-den8255-DEN X-Timer: - - S1711656915.496347,VS0,VE1 + - S1728237483.020030,VS0,VE57 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Sun, 06 Oct 2024 18:08:03 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -1013,7 +1013,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/remote-data/v1.0.0/schema.json response: @@ -1088,7 +1088,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:15 GMT + - Sun, 06 Oct 2024 17:58:03 GMT ETag: - '"6046b731-f97"' Last-Modified: @@ -1106,15 +1106,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - dff714c10890d5ad31520828b8abf5ecbb76295c + - 215cb2a6a617f4aa748db6b52459d2ce93f5cef8 X-GitHub-Request-Id: - - 7684:397D62:1AB8A8C:1E8C908:6605CFD2 + - 167A:22A3FA:3672521:3CD1AE2:6702CFA8 X-Served-By: - - cache-ewr18137-EWR + - cache-den8226-DEN X-Timer: - - S1711656916.579586,VS0,VE36 + - S1728237483.113235,VS0,VE76 expires: - - Thu, 28 Mar 2024 20:25:15 GMT + - Sun, 06 Oct 2024 18:08:03 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 new file mode 100644 index 000000000..a8a37d7ac --- /dev/null +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example116].yaml @@ -0,0 +1,92 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/catalog-spec/json-schema/catalog.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/catalog-spec/json-schema/catalog.json#\",\n + \ \"title\": \"STAC Catalog Specification\",\n \"description\": \"This object + represents Catalogs in a SpatioTemporal Asset Catalog.\",\n \"allOf\": [\n + \ {\n \"$ref\": \"#/definitions/catalog\"\n }\n ],\n \"definitions\": + {\n \"catalog\": {\n \"title\": \"STAC Catalog\",\n \"type\": + \"object\",\n \"required\": [\n \"stac_version\",\n \"type\",\n + \ \"id\",\n \"description\",\n \"links\"\n ],\n \"properties\": + {\n \"stac_version\": {\n \"title\": \"STAC version\",\n \"type\": + \"string\",\n \"const\": \"1.0.0\"\n },\n \"stac_extensions\": + {\n \"title\": \"STAC extensions\",\n \"type\": \"array\",\n + \ \"uniqueItems\": true,\n \"items\": {\n \"title\": + \"Reference to a JSON Schema\",\n \"type\": \"string\",\n \"format\": + \"iri\"\n }\n },\n \"type\": {\n \"title\": + \"Type of STAC entity\",\n \"const\": \"Catalog\"\n },\n \"id\": + {\n \"title\": \"Identifier\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"title\": {\n \"title\": + \"Title\",\n \"type\": \"string\"\n },\n \"description\": + {\n \"title\": \"Description\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"links\": {\n \"title\": + \"Links\",\n \"type\": \"array\",\n \"items\": {\n \"$ref\": + \"#/definitions/link\"\n }\n }\n }\n },\n \"link\": + {\n \"type\": \"object\",\n \"required\": [\n \"rel\",\n + \ \"href\"\n ],\n \"properties\": {\n \"href\": {\n + \ \"title\": \"Link reference\",\n \"type\": \"string\",\n + \ \"format\": \"iri-reference\",\n \"minLength\": 1\n },\n + \ \"rel\": {\n \"title\": \"Link relation type\",\n \"type\": + \"string\",\n \"minLength\": 1\n },\n \"type\": {\n + \ \"title\": \"Link type\",\n \"type\": \"string\"\n },\n + \ \"title\": {\n \"title\": \"Link title\",\n \"type\": + \"string\"\n }\n }\n }\n }\n}\n" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '0' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '2169' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:03 GMT + ETag: + - '"66e1651c-879"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - MISS + X-Cache-Hits: + - '0' + X-Fastly-Request-ID: + - 11da5acb301dcd48a714214e0a95dcc7be58db5f + X-GitHub-Request-Id: + - ACFD:D9115:3A59D60:40B9C7A:6702CFA8 + X-Served-By: + - cache-den8251-DEN + X-Timer: + - S1728237483.283009,VS0,VE58 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +version: 1 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 ffb21f46c..e3e64c670 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 @@ -1,4 +1,669 @@ interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/collection-spec/json-schema/collection.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/collection-spec/json-schema/collection.json#\",\n + \ \"title\": \"STAC Collection Specification\",\n \"description\": \"This + object represents Collections in a SpatioTemporal Asset Catalog.\",\n \"allOf\": + [\n {\n \"$ref\": \"#/definitions/collection\"\n }\n ],\n \"definitions\": + {\n \"collection\": {\n \"title\": \"STAC Collection\",\n \"description\": + \"These are the fields specific to a STAC Collection. All other fields are + inherited from STAC Catalog.\",\n \"type\": \"object\",\n \"required\": + [\n \"stac_version\",\n \"type\",\n \"id\",\n \"description\",\n + \ \"license\",\n \"extent\",\n \"links\"\n ],\n \"properties\": + {\n \"stac_version\": {\n \"title\": \"STAC version\",\n \"type\": + \"string\",\n \"const\": \"1.0.0\"\n },\n \"stac_extensions\": + {\n \"title\": \"STAC extensions\",\n \"type\": \"array\",\n + \ \"uniqueItems\": true,\n \"items\": {\n \"title\": + \"Reference to a JSON Schema\",\n \"type\": \"string\",\n \"format\": + \"iri\"\n }\n },\n \"type\": {\n \"title\": + \"Type of STAC entity\",\n \"const\": \"Collection\"\n },\n + \ \"id\": {\n \"title\": \"Identifier\",\n \"type\": + \"string\",\n \"minLength\": 1\n },\n \"title\": {\n + \ \"title\": \"Title\",\n \"type\": \"string\"\n },\n + \ \"description\": {\n \"title\": \"Description\",\n \"type\": + \"string\",\n \"minLength\": 1\n },\n \"keywords\": + {\n \"title\": \"Keywords\",\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n },\n \"license\": + {\n \"title\": \"Collection License Name\",\n \"type\": + \"string\",\n \"pattern\": \"^[\\\\w\\\\-\\\\.\\\\+]+$\"\n },\n + \ \"providers\": {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"required\": [\n \"name\"\n + \ ],\n \"properties\": {\n \"name\": {\n + \ \"title\": \"Organization name\",\n \"type\": + \"string\"\n },\n \"description\": {\n \"title\": + \"Organization description\",\n \"type\": \"string\"\n },\n + \ \"roles\": {\n \"title\": \"Organization roles\",\n + \ \"type\": \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"producer\",\n + \ \"licensor\",\n \"processor\",\n \"host\"\n + \ ]\n }\n },\n \"url\": + {\n \"title\": \"Organization homepage\",\n \"type\": + \"string\",\n \"format\": \"iri\"\n }\n }\n + \ }\n },\n \"extent\": {\n \"title\": \"Extents\",\n + \ \"type\": \"object\",\n \"required\": [\n \"spatial\",\n + \ \"temporal\"\n ],\n \"properties\": {\n \"spatial\": + {\n \"title\": \"Spatial extent object\",\n \"type\": + \"object\",\n \"required\": [\n \"bbox\"\n ],\n + \ \"properties\": {\n \"bbox\": {\n \"title\": + \"Spatial extents\",\n \"type\": \"array\",\n \"minItems\": + 1,\n \"items\": {\n \"title\": \"Spatial + extent\",\n \"type\": \"array\",\n \"oneOf\": + [\n {\n \"minItems\":4,\n \"maxItems\":4\n + \ },\n {\n \"minItems\":6,\n + \ \"maxItems\":6\n }\n ],\n + \ \"items\": {\n \"type\": \"number\"\n + \ }\n }\n }\n }\n + \ },\n \"temporal\": {\n \"title\": \"Temporal + extent object\",\n \"type\": \"object\",\n \"required\": + [\n \"interval\"\n ],\n \"properties\": + {\n \"interval\": {\n \"title\": \"Temporal + extents\",\n \"type\": \"array\",\n \"minItems\": + 1,\n \"items\": {\n \"title\": \"Temporal + extent\",\n \"type\": \"array\",\n \"minItems\": + 2,\n \"maxItems\": 2,\n \"items\": {\n + \ \"type\": [\n \"string\",\n \"null\"\n + \ ],\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n }\n + \ }\n }\n }\n }\n }\n + \ },\n \"assets\": {\n \"$ref\": \"../../item-spec/json-schema/item.json#/definitions/assets\"\n + \ },\n \"links\": {\n \"title\": \"Links\",\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": \"#/definitions/link\"\n + \ }\n },\n \"summaries\": {\n \"$ref\": \"#/definitions/summaries\"\n + \ }\n }\n },\n \"link\": {\n \"type\": \"object\",\n + \ \"required\": [\n \"rel\",\n \"href\"\n ],\n \"properties\": + {\n \"href\": {\n \"title\": \"Link reference\",\n \"type\": + \"string\",\n \"format\": \"iri-reference\",\n \"minLength\": + 1\n },\n \"rel\": {\n \"title\": \"Link relation type\",\n + \ \"type\": \"string\",\n \"minLength\": 1\n },\n + \ \"type\": {\n \"title\": \"Link type\",\n \"type\": + \"string\"\n },\n \"title\": {\n \"title\": \"Link + title\",\n \"type\": \"string\"\n }\n }\n },\n \"summaries\": + {\n \"type\": \"object\",\n \"additionalProperties\": {\n \"anyOf\": + [\n {\n \"title\": \"JSON Schema\",\n \"type\": + \"object\",\n \"minProperties\": 1,\n \"allOf\": [\n + \ {\n \"$ref\": \"http://json-schema.org/draft-07/schema\"\n + \ }\n ]\n },\n {\n \"title\": + \"Range\",\n \"type\": \"object\",\n \"required\": [\n + \ \"minimum\",\n \"maximum\"\n ],\n \"properties\": + {\n \"minimum\": {\n \"title\": \"Minimum value\",\n + \ \"type\": [\n \"number\",\n \"string\"\n + \ ]\n },\n \"maximum\": {\n \"title\": + \"Maximum value\",\n \"type\": [\n \"number\",\n + \ \"string\"\n ]\n }\n }\n + \ },\n {\n \"title\": \"Set of values\",\n \"type\": + \"array\",\n \"minItems\": 1,\n \"items\": {\n \"description\": + \"For each field only the original data type of the property can occur (except + for arrays), but we can't validate that in JSON Schema yet. See the sumamry + description in the STAC specification for details.\"\n }\n }\n + \ ]\n }\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '438' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '7209' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:03 GMT + ETag: + - '"66e1651c-1c29"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '0' + X-Fastly-Request-ID: + - 84e660a3981e72b2b5d4e4ddea5216266153623d + X-GitHub-Request-Id: + - AA86:1F7C33:21C6328:252B5A1:6702CDF4 + X-Served-By: + - cache-den8248-DEN + X-Timer: + - S1728237483.381909,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:00:45 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#\",\n + \ \"title\": \"STAC Item\",\n \"type\": \"object\",\n \"description\": \"This + object represents the metadata for an item in a SpatioTemporal Asset Catalog.\",\n + \ \"allOf\": [\n {\n \"$ref\": \"#/definitions/core\"\n }\n ],\n + \ \"definitions\": {\n \"common_metadata\": {\n \"allOf\": [\n {\n + \ \"$ref\": \"basics.json\"\n },\n {\n \"$ref\": + \"datetime.json\"\n },\n {\n \"$ref\": \"instrument.json\"\n + \ },\n {\n \"$ref\": \"licensing.json\"\n },\n + \ {\n \"$ref\": \"provider.json\"\n }\n ]\n },\n + \ \"core\": {\n \"allOf\": [\n {\n \"$ref\": \"https://geojson.org/schema/Feature.json\"\n + \ },\n {\n \"oneOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"geometry\",\n + \ \"bbox\"\n ],\n \"properties\": + {\n \"geometry\": {\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n + \ },\n \"bbox\": {\n \"type\": + \"array\",\n \"oneOf\": [\n {\n \"minItems\": + 4,\n \"maxItems\": 4\n },\n {\n + \ \"minItems\": 6,\n \"maxItems\": + 6\n }\n ],\n \"items\": + {\n \"type\": \"number\"\n }\n }\n + \ }\n },\n {\n \"type\": \"object\",\n + \ \"required\": [\n \"geometry\"\n ],\n + \ \"properties\": {\n \"geometry\": {\n \"type\": + \"null\"\n },\n \"bbox\": {\n \"not\": + {}\n }\n }\n }\n ]\n },\n + \ {\n \"type\": \"object\",\n \"required\": [\n \"stac_version\",\n + \ \"id\",\n \"links\",\n \"assets\",\n \"properties\"\n + \ ],\n \"properties\": {\n \"stac_version\": {\n + \ \"title\": \"STAC version\",\n \"type\": \"string\",\n + \ \"const\": \"1.0.0\"\n },\n \"stac_extensions\": + {\n \"title\": \"STAC extensions\",\n \"type\": + \"array\",\n \"uniqueItems\": true,\n \"items\": + {\n \"title\": \"Reference to a JSON Schema\",\n \"type\": + \"string\",\n \"format\": \"iri\"\n }\n },\n + \ \"id\": {\n \"title\": \"Provider ID\",\n \"description\": + \"Provider item ID\",\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"links\": {\n \"title\": \"Item + links\",\n \"description\": \"Links to item relations\",\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": \"#/definitions/link\"\n + \ }\n },\n \"assets\": {\n \"$ref\": + \"#/definitions/assets\"\n },\n \"properties\": {\n + \ \"allOf\": [\n {\n \"$ref\": + \"#/definitions/common_metadata\"\n },\n {\n + \ \"anyOf\": [\n {\n \"required\": + [\n \"datetime\"\n ],\n \"properties\": + {\n \"datetime\": {\n \"not\": + {\n \"type\": \"null\"\n }\n + \ }\n }\n },\n + \ {\n \"required\": [\n \"datetime\",\n + \ \"start_datetime\",\n \"end_datetime\"\n + \ ]\n }\n ]\n }\n + \ ]\n }\n },\n \"if\": {\n \"properties\": + {\n \"links\": {\n \"contains\": {\n \"required\": + [\n \"rel\"\n ],\n \"properties\": + {\n \"rel\": {\n \"const\": \"collection\"\n + \ }\n }\n }\n }\n + \ }\n },\n \"then\": {\n \"required\": + [\n \"collection\"\n ],\n \"properties\": + {\n \"collection\": {\n \"title\": \"Collection + ID\",\n \"description\": \"The ID of the STAC Collection this + Item references to.\",\n \"type\": \"string\",\n \"minLength\": + 1\n }\n }\n },\n \"else\": {\n \"properties\": + {\n \"collection\": {\n \"not\": {}\n }\n + \ }\n }\n }\n ]\n },\n \"link\": {\n + \ \"type\": \"object\",\n \"required\": [\n \"rel\",\n \"href\"\n + \ ],\n \"properties\": {\n \"href\": {\n \"title\": + \"Link reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"rel\": + {\n \"title\": \"Link relation type\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"type\": {\n \"title\": + \"Link type\",\n \"type\": \"string\"\n },\n \"title\": + {\n \"title\": \"Link title\",\n \"type\": \"string\"\n + \ }\n }\n },\n \"assets\": {\n \"title\": \"Asset links\",\n + \ \"description\": \"Links to assets\",\n \"type\": \"object\",\n + \ \"additionalProperties\": {\n \"$ref\": \"#/definitions/asset\"\n + \ }\n },\n \"asset\": {\n \"allOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"href\"\n ],\n + \ \"properties\": {\n \"href\": {\n \"title\": + \"Asset reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"title\": + {\n \"title\": \"Asset title\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Asset + description\",\n \"type\": \"string\"\n },\n \"type\": + {\n \"title\": \"Asset type\",\n \"type\": \"string\"\n + \ },\n \"roles\": {\n \"title\": \"Asset + roles\",\n \"type\": \"array\",\n \"items\": {\n + \ \"type\": \"string\"\n }\n }\n }\n + \ },\n {\n \"$ref\": \"#/definitions/common_metadata\"\n + \ }\n ]\n }\n }\n}\n" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '0' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '6723' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:03 GMT + ETag: + - '"66e1651c-1a43"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - MISS + X-Cache-Hits: + - '0' + X-Fastly-Request-ID: + - ec99a6a88fde5de68f63768f8393367278134e21 + X-GitHub-Request-Id: + - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + X-Served-By: + - cache-den8252-DEN + X-Timer: + - S1728237483.414747,VS0,VE60 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json#\",\n + \ \"title\": \"Basic Descriptive Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"title\": {\n \"title\": \"Item Title\",\n \"description\": + \"A human-readable title describing the Item.\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Item Description\",\n \"description\": + \"Detailed multi-line description to fully explain the Item.\",\n \"type\": + \"string\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '0' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '533' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:03 GMT + ETag: + - '"66e1651c-215"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - MISS + X-Cache-Hits: + - '0' + X-Fastly-Request-ID: + - 94ac3323ae2ce69920dc4d1ca14d83859614598d + X-GitHub-Request-Id: + - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + X-Served-By: + - cache-den8259-DEN + X-Timer: + - S1728237484.504652,VS0,VE58 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json#\",\n + \ \"title\": \"Date and Time Fields\",\n \"type\": \"object\",\n \"dependencies\": + {\n \"start_datetime\": {\n \"required\": [\n \"end_datetime\"\n + \ ]\n },\n \"end_datetime\": {\n \"required\": [\n \"start_datetime\"\n + \ ]\n }\n },\n \"properties\": {\n \"datetime\": {\n \"title\": + \"Date and Time\",\n \"description\": \"The searchable date/time of the + assets, in UTC (Formatted in RFC 3339) \",\n \"type\": [\"string\", \"null\"],\n + \ \"format\": \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n + \ },\n \"start_datetime\": {\n \"title\": \"Start Date and Time\",\n + \ \"description\": \"The searchable start date/time of the assets, in + UTC (Formatted in RFC 3339) \",\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n }, \n \"end_datetime\": + {\n \"title\": \"End Date and Time\", \n \"description\": \"The + searchable end date/time of the assets, in UTC (Formatted in RFC 3339) \", + \ \n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"created\": {\n \"title\": + \"Creation Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"updated\": {\n \"title\": + \"Last Update Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '0' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1472' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:03 GMT + ETag: + - '"66e1651c-5c0"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - MISS + X-Cache-Hits: + - '0' + X-Fastly-Request-ID: + - f8104aa8b5805bbfe23d0e794067120840bcb8d9 + X-GitHub-Request-Id: + - EA52:A919C:3B43014:41A30A2:6702CF9D + X-Served-By: + - cache-den8223-DEN + X-Timer: + - S1728237484.595100,VS0,VE59 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json#\",\n + \ \"title\": \"Instrument Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"platform\": {\n \"title\": \"Platform\",\n \"type\": \"string\"\n + \ },\n \"instruments\": {\n \"title\": \"Instruments\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n + \ \"constellation\": {\n \"title\": \"Constellation\",\n \"type\": + \"string\"\n },\n \"mission\": {\n \"title\": \"Mission\",\n \"type\": + \"string\"\n },\n \"gsd\": {\n \"title\": \"Ground Sample Distance\",\n + \ \"type\": \"number\",\n \"exclusiveMinimum\": 0\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '0' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '696' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:03 GMT + ETag: + - '"66e1651c-2b8"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - MISS + X-Cache-Hits: + - '0' + X-Fastly-Request-ID: + - 9b89f8137d7555c43f773a2dca2e1859b0818a8a + X-GitHub-Request-Id: + - 9461:76956:3BAC588:420C605:6702CFAA + X-Served-By: + - cache-den8254-DEN + X-Timer: + - S1728237484.682445,VS0,VE58 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json#\",\n + \ \"title\": \"Licensing Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"license\": {\n \"type\": \"string\",\n \"pattern\": \"^[\\\\w\\\\-\\\\.\\\\+]+$\"\n + \ }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '0' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '302' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:03 GMT + ETag: + - '"66e1651c-12e"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - MISS + X-Cache-Hits: + - '0' + X-Fastly-Request-ID: + - c564cd7f41c50ae0c164ed7fa26693b58b0208f2 + X-GitHub-Request-Id: + - 3627:25A7B1:3C09466:4269466:6702CFA8 + X-Served-By: + - cache-den8256-DEN + X-Timer: + - S1728237484.771233,VS0,VE56 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json#\",\n + \ \"title\": \"Provider Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"providers\": {\n \"title\": \"Providers\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": + [\n \"name\"\n ],\n \"properties\": {\n \"name\": + {\n \"title\": \"Organization name\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"description\": {\n + \ \"title\": \"Organization description\",\n \"type\": + \"string\"\n },\n \"roles\": {\n \"title\": \"Organization + roles\",\n \"type\": \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"producer\",\n \"licensor\",\n + \ \"processor\",\n \"host\"\n ]\n + \ }\n },\n \"url\": {\n \"title\": + \"Organization homepage\",\n \"type\": \"string\",\n \"format\": + \"iri\"\n }\n }\n }\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '0' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1135' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:03 GMT + ETag: + - '"66e1651c-46f"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - MISS + X-Cache-Hits: + - '0' + X-Fastly-Request-ID: + - aee2e83dad705af4f83b4d91a7cfd5e07995c0c5 + X-GitHub-Request-Id: + - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + X-Served-By: + - cache-den8257-DEN + X-Timer: + - S1728237484.859183,VS0,VE70 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK - request: body: null headers: @@ -7,7 +672,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -85,7 +750,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '92' + - '2' Cache-Control: - max-age=600 Connection: @@ -95,11 +760,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:15 GMT + - Sun, 06 Oct 2024 17:58:03 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 +776,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 910d356026ff26862f5f27ee32010354fab1fe8c + - f0ced69fc3cac2b6b9c4155392bf587f6a05b9c2 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 X-Served-By: - - cache-ewr18182-EWR + - cache-den8268-DEN X-Timer: - - S1711656916.709178,VS0,VE0 + - S1728237484.953195,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -137,7 +802,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json response: @@ -209,7 +874,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '0' + - '2' Cache-Control: - max-age=600 Connection: @@ -219,11 +884,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:15 GMT + - Sun, 06 Oct 2024 17:58:03 GMT ETag: - - '"63e6651b-1226"' + - '"669e563b-1226"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -237,15 +902,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e35c6404af8c213d0a41db4391a346d9520da5fc + - 18cffdce24d118f1f4d5da00731684fef4bfaded X-GitHub-Request-Id: - - 616C:397D62:1AB8A52:1E8C8CA:6605CFD3 + - 360F:31444D:38827C0:3EE24EF:6702CFA8 X-Served-By: - - cache-ewr18135-EWR + - cache-den8239-DEN X-Timer: - - S1711656916.789185,VS0,VE2 + - S1728237484.979936,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:15 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -261,7 +926,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -319,7 +984,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '93' + - '1' Cache-Control: - max-age=600 Connection: @@ -329,7 +994,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:15 GMT + - Sun, 06 Oct 2024 17:58:04 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -345,17 +1010,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - d90b390f41adf34a9f474afbb4d0d439950eed5b + - 9382c22c1978add759a27fcd637022881c872e6a X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 X-Served-By: - - cache-ewr18178-EWR + - cache-den8263-DEN X-Timer: - - S1711656916.869611,VS0,VE1 + - S1728237484.006500,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Sun, 06 Oct 2024 18:08:03 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 d78cc6560..faeaf97de 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 @@ -1,4 +1,159 @@ interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/collection-spec/json-schema/collection.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/collection-spec/json-schema/collection.json#\",\n + \ \"title\": \"STAC Collection Specification\",\n \"description\": \"This + object represents Collections in a SpatioTemporal Asset Catalog.\",\n \"allOf\": + [\n {\n \"$ref\": \"#/definitions/collection\"\n }\n ],\n \"definitions\": + {\n \"collection\": {\n \"title\": \"STAC Collection\",\n \"description\": + \"These are the fields specific to a STAC Collection. All other fields are + inherited from STAC Catalog.\",\n \"type\": \"object\",\n \"required\": + [\n \"stac_version\",\n \"type\",\n \"id\",\n \"description\",\n + \ \"license\",\n \"extent\",\n \"links\"\n ],\n \"properties\": + {\n \"stac_version\": {\n \"title\": \"STAC version\",\n \"type\": + \"string\",\n \"const\": \"1.0.0\"\n },\n \"stac_extensions\": + {\n \"title\": \"STAC extensions\",\n \"type\": \"array\",\n + \ \"uniqueItems\": true,\n \"items\": {\n \"title\": + \"Reference to a JSON Schema\",\n \"type\": \"string\",\n \"format\": + \"iri\"\n }\n },\n \"type\": {\n \"title\": + \"Type of STAC entity\",\n \"const\": \"Collection\"\n },\n + \ \"id\": {\n \"title\": \"Identifier\",\n \"type\": + \"string\",\n \"minLength\": 1\n },\n \"title\": {\n + \ \"title\": \"Title\",\n \"type\": \"string\"\n },\n + \ \"description\": {\n \"title\": \"Description\",\n \"type\": + \"string\",\n \"minLength\": 1\n },\n \"keywords\": + {\n \"title\": \"Keywords\",\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n },\n \"license\": + {\n \"title\": \"Collection License Name\",\n \"type\": + \"string\",\n \"pattern\": \"^[\\\\w\\\\-\\\\.\\\\+]+$\"\n },\n + \ \"providers\": {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"required\": [\n \"name\"\n + \ ],\n \"properties\": {\n \"name\": {\n + \ \"title\": \"Organization name\",\n \"type\": + \"string\"\n },\n \"description\": {\n \"title\": + \"Organization description\",\n \"type\": \"string\"\n },\n + \ \"roles\": {\n \"title\": \"Organization roles\",\n + \ \"type\": \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"producer\",\n + \ \"licensor\",\n \"processor\",\n \"host\"\n + \ ]\n }\n },\n \"url\": + {\n \"title\": \"Organization homepage\",\n \"type\": + \"string\",\n \"format\": \"iri\"\n }\n }\n + \ }\n },\n \"extent\": {\n \"title\": \"Extents\",\n + \ \"type\": \"object\",\n \"required\": [\n \"spatial\",\n + \ \"temporal\"\n ],\n \"properties\": {\n \"spatial\": + {\n \"title\": \"Spatial extent object\",\n \"type\": + \"object\",\n \"required\": [\n \"bbox\"\n ],\n + \ \"properties\": {\n \"bbox\": {\n \"title\": + \"Spatial extents\",\n \"type\": \"array\",\n \"minItems\": + 1,\n \"items\": {\n \"title\": \"Spatial + extent\",\n \"type\": \"array\",\n \"oneOf\": + [\n {\n \"minItems\":4,\n \"maxItems\":4\n + \ },\n {\n \"minItems\":6,\n + \ \"maxItems\":6\n }\n ],\n + \ \"items\": {\n \"type\": \"number\"\n + \ }\n }\n }\n }\n + \ },\n \"temporal\": {\n \"title\": \"Temporal + extent object\",\n \"type\": \"object\",\n \"required\": + [\n \"interval\"\n ],\n \"properties\": + {\n \"interval\": {\n \"title\": \"Temporal + extents\",\n \"type\": \"array\",\n \"minItems\": + 1,\n \"items\": {\n \"title\": \"Temporal + extent\",\n \"type\": \"array\",\n \"minItems\": + 2,\n \"maxItems\": 2,\n \"items\": {\n + \ \"type\": [\n \"string\",\n \"null\"\n + \ ],\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n }\n + \ }\n }\n }\n }\n }\n + \ },\n \"assets\": {\n \"$ref\": \"../../item-spec/json-schema/item.json#/definitions/assets\"\n + \ },\n \"links\": {\n \"title\": \"Links\",\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": \"#/definitions/link\"\n + \ }\n },\n \"summaries\": {\n \"$ref\": \"#/definitions/summaries\"\n + \ }\n }\n },\n \"link\": {\n \"type\": \"object\",\n + \ \"required\": [\n \"rel\",\n \"href\"\n ],\n \"properties\": + {\n \"href\": {\n \"title\": \"Link reference\",\n \"type\": + \"string\",\n \"format\": \"iri-reference\",\n \"minLength\": + 1\n },\n \"rel\": {\n \"title\": \"Link relation type\",\n + \ \"type\": \"string\",\n \"minLength\": 1\n },\n + \ \"type\": {\n \"title\": \"Link type\",\n \"type\": + \"string\"\n },\n \"title\": {\n \"title\": \"Link + title\",\n \"type\": \"string\"\n }\n }\n },\n \"summaries\": + {\n \"type\": \"object\",\n \"additionalProperties\": {\n \"anyOf\": + [\n {\n \"title\": \"JSON Schema\",\n \"type\": + \"object\",\n \"minProperties\": 1,\n \"allOf\": [\n + \ {\n \"$ref\": \"http://json-schema.org/draft-07/schema\"\n + \ }\n ]\n },\n {\n \"title\": + \"Range\",\n \"type\": \"object\",\n \"required\": [\n + \ \"minimum\",\n \"maximum\"\n ],\n \"properties\": + {\n \"minimum\": {\n \"title\": \"Minimum value\",\n + \ \"type\": [\n \"number\",\n \"string\"\n + \ ]\n },\n \"maximum\": {\n \"title\": + \"Maximum value\",\n \"type\": [\n \"number\",\n + \ \"string\"\n ]\n }\n }\n + \ },\n {\n \"title\": \"Set of values\",\n \"type\": + \"array\",\n \"minItems\": 1,\n \"items\": {\n \"description\": + \"For each field only the original data type of the property can occur (except + for arrays), but we can't validate that in JSON Schema yet. See the sumamry + description in the STAC specification for details.\"\n }\n }\n + \ ]\n }\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '439' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '7209' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-1c29"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 43f5ba973873b5344d775f493f7bc50057b0a5d5 + X-GitHub-Request-Id: + - AA86:1F7C33:21C6328:252B5A1:6702CDF4 + X-Served-By: + - cache-den8273-DEN + X-Timer: + - S1728237484.039220,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:00:45 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK - request: body: null headers: @@ -7,7 +162,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -85,7 +240,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '93' + - '2' Cache-Control: - max-age=600 Connection: @@ -95,11 +250,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:15 GMT + - Sun, 06 Oct 2024 17:58:04 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 +268,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ca947d45f07e78eeac26f772d107c8b660f005af + - 2aac5b5ea338f1aac689945e4d585cd28b3f3724 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 X-Served-By: - - cache-ewr18161-EWR + - cache-den8236-DEN X-Timer: - - S1711656916.956812,VS0,VE1 + - S1728237484.069580,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -137,7 +292,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -195,7 +350,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '93' + - '1' Cache-Control: - max-age=600 Connection: @@ -205,7 +360,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:04 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +378,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ba3dc5b2e1e6d984699231e82750f6b8bd949335 + - 817f303204299c0d9b637134866f32c0f63f067e X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 X-Served-By: - - cache-ewr18165-EWR + - cache-den8232-DEN X-Timer: - - S1711656916.031850,VS0,VE2 + - S1728237484.095948,VS0,VE2 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Sun, 06 Oct 2024 18:08:03 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 b21fad422..2bc1eb133 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 @@ -1,4 +1,514 @@ interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#\",\n + \ \"title\": \"STAC Item\",\n \"type\": \"object\",\n \"description\": \"This + object represents the metadata for an item in a SpatioTemporal Asset Catalog.\",\n + \ \"allOf\": [\n {\n \"$ref\": \"#/definitions/core\"\n }\n ],\n + \ \"definitions\": {\n \"common_metadata\": {\n \"allOf\": [\n {\n + \ \"$ref\": \"basics.json\"\n },\n {\n \"$ref\": + \"datetime.json\"\n },\n {\n \"$ref\": \"instrument.json\"\n + \ },\n {\n \"$ref\": \"licensing.json\"\n },\n + \ {\n \"$ref\": \"provider.json\"\n }\n ]\n },\n + \ \"core\": {\n \"allOf\": [\n {\n \"$ref\": \"https://geojson.org/schema/Feature.json\"\n + \ },\n {\n \"oneOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"geometry\",\n + \ \"bbox\"\n ],\n \"properties\": + {\n \"geometry\": {\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n + \ },\n \"bbox\": {\n \"type\": + \"array\",\n \"oneOf\": [\n {\n \"minItems\": + 4,\n \"maxItems\": 4\n },\n {\n + \ \"minItems\": 6,\n \"maxItems\": + 6\n }\n ],\n \"items\": + {\n \"type\": \"number\"\n }\n }\n + \ }\n },\n {\n \"type\": \"object\",\n + \ \"required\": [\n \"geometry\"\n ],\n + \ \"properties\": {\n \"geometry\": {\n \"type\": + \"null\"\n },\n \"bbox\": {\n \"not\": + {}\n }\n }\n }\n ]\n },\n + \ {\n \"type\": \"object\",\n \"required\": [\n \"stac_version\",\n + \ \"id\",\n \"links\",\n \"assets\",\n \"properties\"\n + \ ],\n \"properties\": {\n \"stac_version\": {\n + \ \"title\": \"STAC version\",\n \"type\": \"string\",\n + \ \"const\": \"1.0.0\"\n },\n \"stac_extensions\": + {\n \"title\": \"STAC extensions\",\n \"type\": + \"array\",\n \"uniqueItems\": true,\n \"items\": + {\n \"title\": \"Reference to a JSON Schema\",\n \"type\": + \"string\",\n \"format\": \"iri\"\n }\n },\n + \ \"id\": {\n \"title\": \"Provider ID\",\n \"description\": + \"Provider item ID\",\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"links\": {\n \"title\": \"Item + links\",\n \"description\": \"Links to item relations\",\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": \"#/definitions/link\"\n + \ }\n },\n \"assets\": {\n \"$ref\": + \"#/definitions/assets\"\n },\n \"properties\": {\n + \ \"allOf\": [\n {\n \"$ref\": + \"#/definitions/common_metadata\"\n },\n {\n + \ \"anyOf\": [\n {\n \"required\": + [\n \"datetime\"\n ],\n \"properties\": + {\n \"datetime\": {\n \"not\": + {\n \"type\": \"null\"\n }\n + \ }\n }\n },\n + \ {\n \"required\": [\n \"datetime\",\n + \ \"start_datetime\",\n \"end_datetime\"\n + \ ]\n }\n ]\n }\n + \ ]\n }\n },\n \"if\": {\n \"properties\": + {\n \"links\": {\n \"contains\": {\n \"required\": + [\n \"rel\"\n ],\n \"properties\": + {\n \"rel\": {\n \"const\": \"collection\"\n + \ }\n }\n }\n }\n + \ }\n },\n \"then\": {\n \"required\": + [\n \"collection\"\n ],\n \"properties\": + {\n \"collection\": {\n \"title\": \"Collection + ID\",\n \"description\": \"The ID of the STAC Collection this + Item references to.\",\n \"type\": \"string\",\n \"minLength\": + 1\n }\n }\n },\n \"else\": {\n \"properties\": + {\n \"collection\": {\n \"not\": {}\n }\n + \ }\n }\n }\n ]\n },\n \"link\": {\n + \ \"type\": \"object\",\n \"required\": [\n \"rel\",\n \"href\"\n + \ ],\n \"properties\": {\n \"href\": {\n \"title\": + \"Link reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"rel\": + {\n \"title\": \"Link relation type\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"type\": {\n \"title\": + \"Link type\",\n \"type\": \"string\"\n },\n \"title\": + {\n \"title\": \"Link title\",\n \"type\": \"string\"\n + \ }\n }\n },\n \"assets\": {\n \"title\": \"Asset links\",\n + \ \"description\": \"Links to assets\",\n \"type\": \"object\",\n + \ \"additionalProperties\": {\n \"$ref\": \"#/definitions/asset\"\n + \ }\n },\n \"asset\": {\n \"allOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"href\"\n ],\n + \ \"properties\": {\n \"href\": {\n \"title\": + \"Asset reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"title\": + {\n \"title\": \"Asset title\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Asset + description\",\n \"type\": \"string\"\n },\n \"type\": + {\n \"title\": \"Asset type\",\n \"type\": \"string\"\n + \ },\n \"roles\": {\n \"title\": \"Asset + roles\",\n \"type\": \"array\",\n \"items\": {\n + \ \"type\": \"string\"\n }\n }\n }\n + \ },\n {\n \"$ref\": \"#/definitions/common_metadata\"\n + \ }\n ]\n }\n }\n}\n" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '6723' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-1a43"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 98e2558f0273faa64ec2116fe85f65cc3e14879c + X-GitHub-Request-Id: + - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + X-Served-By: + - cache-den8269-DEN + X-Timer: + - S1728237484.126655,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json#\",\n + \ \"title\": \"Basic Descriptive Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"title\": {\n \"title\": \"Item Title\",\n \"description\": + \"A human-readable title describing the Item.\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Item Description\",\n \"description\": + \"Detailed multi-line description to fully explain the Item.\",\n \"type\": + \"string\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '533' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-215"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 064b601b505b3bff5ea8600412ef4fdd41637265 + X-GitHub-Request-Id: + - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + X-Served-By: + - cache-den8276-DEN + X-Timer: + - S1728237484.155431,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json#\",\n + \ \"title\": \"Date and Time Fields\",\n \"type\": \"object\",\n \"dependencies\": + {\n \"start_datetime\": {\n \"required\": [\n \"end_datetime\"\n + \ ]\n },\n \"end_datetime\": {\n \"required\": [\n \"start_datetime\"\n + \ ]\n }\n },\n \"properties\": {\n \"datetime\": {\n \"title\": + \"Date and Time\",\n \"description\": \"The searchable date/time of the + assets, in UTC (Formatted in RFC 3339) \",\n \"type\": [\"string\", \"null\"],\n + \ \"format\": \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n + \ },\n \"start_datetime\": {\n \"title\": \"Start Date and Time\",\n + \ \"description\": \"The searchable start date/time of the assets, in + UTC (Formatted in RFC 3339) \",\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n }, \n \"end_datetime\": + {\n \"title\": \"End Date and Time\", \n \"description\": \"The + searchable end date/time of the assets, in UTC (Formatted in RFC 3339) \", + \ \n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"created\": {\n \"title\": + \"Creation Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"updated\": {\n \"title\": + \"Last Update Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1472' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-5c0"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 7805da5e03fdf4cd07171e0a7c7fb1c15d65361d + X-GitHub-Request-Id: + - EA52:A919C:3B43014:41A30A2:6702CF9D + X-Served-By: + - cache-den8231-DEN + X-Timer: + - S1728237484.177491,VS0,VE9 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json#\",\n + \ \"title\": \"Instrument Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"platform\": {\n \"title\": \"Platform\",\n \"type\": \"string\"\n + \ },\n \"instruments\": {\n \"title\": \"Instruments\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n + \ \"constellation\": {\n \"title\": \"Constellation\",\n \"type\": + \"string\"\n },\n \"mission\": {\n \"title\": \"Mission\",\n \"type\": + \"string\"\n },\n \"gsd\": {\n \"title\": \"Ground Sample Distance\",\n + \ \"type\": \"number\",\n \"exclusiveMinimum\": 0\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '0' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '696' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-2b8"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 974c7693e25314df813d37f153014e67fbbafafb + X-GitHub-Request-Id: + - 9461:76956:3BAC588:420C605:6702CFAA + X-Served-By: + - cache-den8271-DEN + X-Timer: + - S1728237484.210179,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json#\",\n + \ \"title\": \"Licensing Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"license\": {\n \"type\": \"string\",\n \"pattern\": \"^[\\\\w\\\\-\\\\.\\\\+]+$\"\n + \ }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '0' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '302' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-12e"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - bca5993974ec5edd4793d8f20b8c8c1787ae8d2b + X-GitHub-Request-Id: + - 3627:25A7B1:3C09466:4269466:6702CFA8 + X-Served-By: + - cache-den8270-DEN + X-Timer: + - S1728237484.237507,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json#\",\n + \ \"title\": \"Provider Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"providers\": {\n \"title\": \"Providers\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": + [\n \"name\"\n ],\n \"properties\": {\n \"name\": + {\n \"title\": \"Organization name\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"description\": {\n + \ \"title\": \"Organization description\",\n \"type\": + \"string\"\n },\n \"roles\": {\n \"title\": \"Organization + roles\",\n \"type\": \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"producer\",\n \"licensor\",\n + \ \"processor\",\n \"host\"\n ]\n + \ }\n },\n \"url\": {\n \"title\": + \"Organization homepage\",\n \"type\": \"string\",\n \"format\": + \"iri\"\n }\n }\n }\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '0' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1135' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-46f"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 79ccb51e343831990b886c919a85f10ad122b74f + X-GitHub-Request-Id: + - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + X-Served-By: + - cache-den8281-DEN + X-Timer: + - S1728237484.264226,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK - request: body: null headers: @@ -7,7 +517,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -85,7 +595,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '93' + - '3' Cache-Control: - max-age=600 Connection: @@ -95,11 +605,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:04 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 +623,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ef51f675b74246fefedbfbe0d518d559fa8633bb + - f37af038c515be8c52dd0e1746cb0b68a3451e74 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 X-Served-By: - - cache-ewr18123-EWR + - cache-den8271-DEN X-Timer: - - S1711656916.119932,VS0,VE1 + - S1728237484.318908,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -137,7 +647,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -195,7 +705,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '93' + - '1' Cache-Control: - max-age=600 Connection: @@ -205,7 +715,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:04 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -223,15 +733,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ec6f85c530edb89800e0a51584a095082a9039a8 + - 2c92fda7af6edf8eb54b3ac83bec13ee056580e4 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 X-Served-By: - - cache-ewr18152-EWR + - cache-den8266-DEN X-Timer: - - S1711656916.191991,VS0,VE2 + - S1728237484.347369,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Sun, 06 Oct 2024 18:08:03 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 a8e8287f4..de9bf46da 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:20 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:20 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - '1' Strict-Transport-Security: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2c218a979bf82e8a956a70ca9868d6bbde9f02e8 + - 34cb92b9e4f88c0c45152da7ce2eb2b52614d473 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18129-EWR + - cache-den8270-DEN X-Timer: - - S1711656860.400439,VS0,VE1 + - S1728237441.318551,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:20 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Thu, 28 Mar 2024 20:19:20 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - '0' Strict-Transport-Security: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c41d49e20f4188a007a41b4b64477b9978203e10 + - 030dd92af2fd14d4b56f0ed7ec19526713a5ff73 X-Frame-Options: - deny X-GitHub-Request-Id: - - D04E:5061:615719:752CF3:6605CF9C + - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 X-Served-By: - - cache-ewr18168-EWR + - cache-den8257-DEN X-Timer: - - S1711656860.487827,VS0,VE77 + - S1728237441.356643,VS0,VE141 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 new file mode 100644 index 000000000..ed4459fda --- /dev/null +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example120].yaml @@ -0,0 +1,512 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#\",\n + \ \"title\": \"STAC Item\",\n \"type\": \"object\",\n \"description\": \"This + object represents the metadata for an item in a SpatioTemporal Asset Catalog.\",\n + \ \"allOf\": [\n {\n \"$ref\": \"#/definitions/core\"\n }\n ],\n + \ \"definitions\": {\n \"common_metadata\": {\n \"allOf\": [\n {\n + \ \"$ref\": \"basics.json\"\n },\n {\n \"$ref\": + \"datetime.json\"\n },\n {\n \"$ref\": \"instrument.json\"\n + \ },\n {\n \"$ref\": \"licensing.json\"\n },\n + \ {\n \"$ref\": \"provider.json\"\n }\n ]\n },\n + \ \"core\": {\n \"allOf\": [\n {\n \"$ref\": \"https://geojson.org/schema/Feature.json\"\n + \ },\n {\n \"oneOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"geometry\",\n + \ \"bbox\"\n ],\n \"properties\": + {\n \"geometry\": {\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n + \ },\n \"bbox\": {\n \"type\": + \"array\",\n \"oneOf\": [\n {\n \"minItems\": + 4,\n \"maxItems\": 4\n },\n {\n + \ \"minItems\": 6,\n \"maxItems\": + 6\n }\n ],\n \"items\": + {\n \"type\": \"number\"\n }\n }\n + \ }\n },\n {\n \"type\": \"object\",\n + \ \"required\": [\n \"geometry\"\n ],\n + \ \"properties\": {\n \"geometry\": {\n \"type\": + \"null\"\n },\n \"bbox\": {\n \"not\": + {}\n }\n }\n }\n ]\n },\n + \ {\n \"type\": \"object\",\n \"required\": [\n \"stac_version\",\n + \ \"id\",\n \"links\",\n \"assets\",\n \"properties\"\n + \ ],\n \"properties\": {\n \"stac_version\": {\n + \ \"title\": \"STAC version\",\n \"type\": \"string\",\n + \ \"const\": \"1.0.0\"\n },\n \"stac_extensions\": + {\n \"title\": \"STAC extensions\",\n \"type\": + \"array\",\n \"uniqueItems\": true,\n \"items\": + {\n \"title\": \"Reference to a JSON Schema\",\n \"type\": + \"string\",\n \"format\": \"iri\"\n }\n },\n + \ \"id\": {\n \"title\": \"Provider ID\",\n \"description\": + \"Provider item ID\",\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"links\": {\n \"title\": \"Item + links\",\n \"description\": \"Links to item relations\",\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": \"#/definitions/link\"\n + \ }\n },\n \"assets\": {\n \"$ref\": + \"#/definitions/assets\"\n },\n \"properties\": {\n + \ \"allOf\": [\n {\n \"$ref\": + \"#/definitions/common_metadata\"\n },\n {\n + \ \"anyOf\": [\n {\n \"required\": + [\n \"datetime\"\n ],\n \"properties\": + {\n \"datetime\": {\n \"not\": + {\n \"type\": \"null\"\n }\n + \ }\n }\n },\n + \ {\n \"required\": [\n \"datetime\",\n + \ \"start_datetime\",\n \"end_datetime\"\n + \ ]\n }\n ]\n }\n + \ ]\n }\n },\n \"if\": {\n \"properties\": + {\n \"links\": {\n \"contains\": {\n \"required\": + [\n \"rel\"\n ],\n \"properties\": + {\n \"rel\": {\n \"const\": \"collection\"\n + \ }\n }\n }\n }\n + \ }\n },\n \"then\": {\n \"required\": + [\n \"collection\"\n ],\n \"properties\": + {\n \"collection\": {\n \"title\": \"Collection + ID\",\n \"description\": \"The ID of the STAC Collection this + Item references to.\",\n \"type\": \"string\",\n \"minLength\": + 1\n }\n }\n },\n \"else\": {\n \"properties\": + {\n \"collection\": {\n \"not\": {}\n }\n + \ }\n }\n }\n ]\n },\n \"link\": {\n + \ \"type\": \"object\",\n \"required\": [\n \"rel\",\n \"href\"\n + \ ],\n \"properties\": {\n \"href\": {\n \"title\": + \"Link reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"rel\": + {\n \"title\": \"Link relation type\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"type\": {\n \"title\": + \"Link type\",\n \"type\": \"string\"\n },\n \"title\": + {\n \"title\": \"Link title\",\n \"type\": \"string\"\n + \ }\n }\n },\n \"assets\": {\n \"title\": \"Asset links\",\n + \ \"description\": \"Links to assets\",\n \"type\": \"object\",\n + \ \"additionalProperties\": {\n \"$ref\": \"#/definitions/asset\"\n + \ }\n },\n \"asset\": {\n \"allOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"href\"\n ],\n + \ \"properties\": {\n \"href\": {\n \"title\": + \"Asset reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"title\": + {\n \"title\": \"Asset title\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Asset + description\",\n \"type\": \"string\"\n },\n \"type\": + {\n \"title\": \"Asset type\",\n \"type\": \"string\"\n + \ },\n \"roles\": {\n \"title\": \"Asset + roles\",\n \"type\": \"array\",\n \"items\": {\n + \ \"type\": \"string\"\n }\n }\n }\n + \ },\n {\n \"$ref\": \"#/definitions/common_metadata\"\n + \ }\n ]\n }\n }\n}\n" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '6723' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-1a43"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 4eb768461a62b4352b38852cdcca3b379003a3b5 + X-GitHub-Request-Id: + - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + X-Served-By: + - cache-den8265-DEN + X-Timer: + - S1728237484.378594,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json#\",\n + \ \"title\": \"Basic Descriptive Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"title\": {\n \"title\": \"Item Title\",\n \"description\": + \"A human-readable title describing the Item.\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Item Description\",\n \"description\": + \"Detailed multi-line description to fully explain the Item.\",\n \"type\": + \"string\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '533' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-215"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 2de5c008a628ee3c5540a7fea472436f848704ba + X-GitHub-Request-Id: + - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + X-Served-By: + - cache-den8253-DEN + X-Timer: + - S1728237484.405717,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json#\",\n + \ \"title\": \"Date and Time Fields\",\n \"type\": \"object\",\n \"dependencies\": + {\n \"start_datetime\": {\n \"required\": [\n \"end_datetime\"\n + \ ]\n },\n \"end_datetime\": {\n \"required\": [\n \"start_datetime\"\n + \ ]\n }\n },\n \"properties\": {\n \"datetime\": {\n \"title\": + \"Date and Time\",\n \"description\": \"The searchable date/time of the + assets, in UTC (Formatted in RFC 3339) \",\n \"type\": [\"string\", \"null\"],\n + \ \"format\": \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n + \ },\n \"start_datetime\": {\n \"title\": \"Start Date and Time\",\n + \ \"description\": \"The searchable start date/time of the assets, in + UTC (Formatted in RFC 3339) \",\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n }, \n \"end_datetime\": + {\n \"title\": \"End Date and Time\", \n \"description\": \"The + searchable end date/time of the assets, in UTC (Formatted in RFC 3339) \", + \ \n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"created\": {\n \"title\": + \"Creation Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"updated\": {\n \"title\": + \"Last Update Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1472' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-5c0"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 06b579a3e616b0896c3b4415ccb823938abbc928 + X-GitHub-Request-Id: + - EA52:A919C:3B43014:41A30A2:6702CF9D + X-Served-By: + - cache-den8266-DEN + X-Timer: + - S1728237484.429475,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json#\",\n + \ \"title\": \"Instrument Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"platform\": {\n \"title\": \"Platform\",\n \"type\": \"string\"\n + \ },\n \"instruments\": {\n \"title\": \"Instruments\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n + \ \"constellation\": {\n \"title\": \"Constellation\",\n \"type\": + \"string\"\n },\n \"mission\": {\n \"title\": \"Mission\",\n \"type\": + \"string\"\n },\n \"gsd\": {\n \"title\": \"Ground Sample Distance\",\n + \ \"type\": \"number\",\n \"exclusiveMinimum\": 0\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '696' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-2b8"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 56749d1a9cb6169cc32de1e9b76ccfd626e37558 + X-GitHub-Request-Id: + - 9461:76956:3BAC588:420C605:6702CFAA + X-Served-By: + - cache-den8268-DEN + X-Timer: + - S1728237484.451226,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json#\",\n + \ \"title\": \"Licensing Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"license\": {\n \"type\": \"string\",\n \"pattern\": \"^[\\\\w\\\\-\\\\.\\\\+]+$\"\n + \ }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '302' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-12e"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - d3edc539e5c8dc537d93dc2750232ebff6976059 + X-GitHub-Request-Id: + - 3627:25A7B1:3C09466:4269466:6702CFA8 + X-Served-By: + - cache-den8259-DEN + X-Timer: + - S1728237484.474302,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json#\",\n + \ \"title\": \"Provider Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"providers\": {\n \"title\": \"Providers\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": + [\n \"name\"\n ],\n \"properties\": {\n \"name\": + {\n \"title\": \"Organization name\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"description\": {\n + \ \"title\": \"Organization description\",\n \"type\": + \"string\"\n },\n \"roles\": {\n \"title\": \"Organization + roles\",\n \"type\": \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"producer\",\n \"licensor\",\n + \ \"processor\",\n \"host\"\n ]\n + \ }\n },\n \"url\": {\n \"title\": + \"Organization homepage\",\n \"type\": \"string\",\n \"format\": + \"iri\"\n }\n }\n }\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1135' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-46f"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 24d4d59f9347c93b83cb811f663c74d8d1d33aa9 + X-GitHub-Request-Id: + - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + X-Served-By: + - cache-den8222-DEN + X-Timer: + - S1728237484.498914,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +version: 1 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 ed829360e..485e90016 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 @@ -1,4 +1,514 @@ interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#\",\n + \ \"title\": \"STAC Item\",\n \"type\": \"object\",\n \"description\": \"This + object represents the metadata for an item in a SpatioTemporal Asset Catalog.\",\n + \ \"allOf\": [\n {\n \"$ref\": \"#/definitions/core\"\n }\n ],\n + \ \"definitions\": {\n \"common_metadata\": {\n \"allOf\": [\n {\n + \ \"$ref\": \"basics.json\"\n },\n {\n \"$ref\": + \"datetime.json\"\n },\n {\n \"$ref\": \"instrument.json\"\n + \ },\n {\n \"$ref\": \"licensing.json\"\n },\n + \ {\n \"$ref\": \"provider.json\"\n }\n ]\n },\n + \ \"core\": {\n \"allOf\": [\n {\n \"$ref\": \"https://geojson.org/schema/Feature.json\"\n + \ },\n {\n \"oneOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"geometry\",\n + \ \"bbox\"\n ],\n \"properties\": + {\n \"geometry\": {\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n + \ },\n \"bbox\": {\n \"type\": + \"array\",\n \"oneOf\": [\n {\n \"minItems\": + 4,\n \"maxItems\": 4\n },\n {\n + \ \"minItems\": 6,\n \"maxItems\": + 6\n }\n ],\n \"items\": + {\n \"type\": \"number\"\n }\n }\n + \ }\n },\n {\n \"type\": \"object\",\n + \ \"required\": [\n \"geometry\"\n ],\n + \ \"properties\": {\n \"geometry\": {\n \"type\": + \"null\"\n },\n \"bbox\": {\n \"not\": + {}\n }\n }\n }\n ]\n },\n + \ {\n \"type\": \"object\",\n \"required\": [\n \"stac_version\",\n + \ \"id\",\n \"links\",\n \"assets\",\n \"properties\"\n + \ ],\n \"properties\": {\n \"stac_version\": {\n + \ \"title\": \"STAC version\",\n \"type\": \"string\",\n + \ \"const\": \"1.0.0\"\n },\n \"stac_extensions\": + {\n \"title\": \"STAC extensions\",\n \"type\": + \"array\",\n \"uniqueItems\": true,\n \"items\": + {\n \"title\": \"Reference to a JSON Schema\",\n \"type\": + \"string\",\n \"format\": \"iri\"\n }\n },\n + \ \"id\": {\n \"title\": \"Provider ID\",\n \"description\": + \"Provider item ID\",\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"links\": {\n \"title\": \"Item + links\",\n \"description\": \"Links to item relations\",\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": \"#/definitions/link\"\n + \ }\n },\n \"assets\": {\n \"$ref\": + \"#/definitions/assets\"\n },\n \"properties\": {\n + \ \"allOf\": [\n {\n \"$ref\": + \"#/definitions/common_metadata\"\n },\n {\n + \ \"anyOf\": [\n {\n \"required\": + [\n \"datetime\"\n ],\n \"properties\": + {\n \"datetime\": {\n \"not\": + {\n \"type\": \"null\"\n }\n + \ }\n }\n },\n + \ {\n \"required\": [\n \"datetime\",\n + \ \"start_datetime\",\n \"end_datetime\"\n + \ ]\n }\n ]\n }\n + \ ]\n }\n },\n \"if\": {\n \"properties\": + {\n \"links\": {\n \"contains\": {\n \"required\": + [\n \"rel\"\n ],\n \"properties\": + {\n \"rel\": {\n \"const\": \"collection\"\n + \ }\n }\n }\n }\n + \ }\n },\n \"then\": {\n \"required\": + [\n \"collection\"\n ],\n \"properties\": + {\n \"collection\": {\n \"title\": \"Collection + ID\",\n \"description\": \"The ID of the STAC Collection this + Item references to.\",\n \"type\": \"string\",\n \"minLength\": + 1\n }\n }\n },\n \"else\": {\n \"properties\": + {\n \"collection\": {\n \"not\": {}\n }\n + \ }\n }\n }\n ]\n },\n \"link\": {\n + \ \"type\": \"object\",\n \"required\": [\n \"rel\",\n \"href\"\n + \ ],\n \"properties\": {\n \"href\": {\n \"title\": + \"Link reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"rel\": + {\n \"title\": \"Link relation type\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"type\": {\n \"title\": + \"Link type\",\n \"type\": \"string\"\n },\n \"title\": + {\n \"title\": \"Link title\",\n \"type\": \"string\"\n + \ }\n }\n },\n \"assets\": {\n \"title\": \"Asset links\",\n + \ \"description\": \"Links to assets\",\n \"type\": \"object\",\n + \ \"additionalProperties\": {\n \"$ref\": \"#/definitions/asset\"\n + \ }\n },\n \"asset\": {\n \"allOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"href\"\n ],\n + \ \"properties\": {\n \"href\": {\n \"title\": + \"Asset reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"title\": + {\n \"title\": \"Asset title\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Asset + description\",\n \"type\": \"string\"\n },\n \"type\": + {\n \"title\": \"Asset type\",\n \"type\": \"string\"\n + \ },\n \"roles\": {\n \"title\": \"Asset + roles\",\n \"type\": \"array\",\n \"items\": {\n + \ \"type\": \"string\"\n }\n }\n }\n + \ },\n {\n \"$ref\": \"#/definitions/common_metadata\"\n + \ }\n ]\n }\n }\n}\n" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '6723' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-1a43"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 034aca544abf8849fa1de378259e70d966001cf1 + X-GitHub-Request-Id: + - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + X-Served-By: + - cache-den8255-DEN + X-Timer: + - S1728237485.562010,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json#\",\n + \ \"title\": \"Basic Descriptive Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"title\": {\n \"title\": \"Item Title\",\n \"description\": + \"A human-readable title describing the Item.\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Item Description\",\n \"description\": + \"Detailed multi-line description to fully explain the Item.\",\n \"type\": + \"string\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '533' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-215"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 6f36bf5375691f9719a4b191a9a42ffd7b0b0125 + X-GitHub-Request-Id: + - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + X-Served-By: + - cache-den8248-DEN + X-Timer: + - S1728237485.591586,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json#\",\n + \ \"title\": \"Date and Time Fields\",\n \"type\": \"object\",\n \"dependencies\": + {\n \"start_datetime\": {\n \"required\": [\n \"end_datetime\"\n + \ ]\n },\n \"end_datetime\": {\n \"required\": [\n \"start_datetime\"\n + \ ]\n }\n },\n \"properties\": {\n \"datetime\": {\n \"title\": + \"Date and Time\",\n \"description\": \"The searchable date/time of the + assets, in UTC (Formatted in RFC 3339) \",\n \"type\": [\"string\", \"null\"],\n + \ \"format\": \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n + \ },\n \"start_datetime\": {\n \"title\": \"Start Date and Time\",\n + \ \"description\": \"The searchable start date/time of the assets, in + UTC (Formatted in RFC 3339) \",\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n }, \n \"end_datetime\": + {\n \"title\": \"End Date and Time\", \n \"description\": \"The + searchable end date/time of the assets, in UTC (Formatted in RFC 3339) \", + \ \n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"created\": {\n \"title\": + \"Creation Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"updated\": {\n \"title\": + \"Last Update Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1472' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-5c0"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 36337e03bc7a2f69509796abf2480a21e0dbd674 + X-GitHub-Request-Id: + - EA52:A919C:3B43014:41A30A2:6702CF9D + X-Served-By: + - cache-den8258-DEN + X-Timer: + - S1728237485.613624,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json#\",\n + \ \"title\": \"Instrument Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"platform\": {\n \"title\": \"Platform\",\n \"type\": \"string\"\n + \ },\n \"instruments\": {\n \"title\": \"Instruments\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n + \ \"constellation\": {\n \"title\": \"Constellation\",\n \"type\": + \"string\"\n },\n \"mission\": {\n \"title\": \"Mission\",\n \"type\": + \"string\"\n },\n \"gsd\": {\n \"title\": \"Ground Sample Distance\",\n + \ \"type\": \"number\",\n \"exclusiveMinimum\": 0\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '696' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-2b8"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 7455771d07f67f461c3eda8faeaf17c9eb742edb + X-GitHub-Request-Id: + - 9461:76956:3BAC588:420C605:6702CFAA + X-Served-By: + - cache-den8264-DEN + X-Timer: + - S1728237485.636421,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json#\",\n + \ \"title\": \"Licensing Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"license\": {\n \"type\": \"string\",\n \"pattern\": \"^[\\\\w\\\\-\\\\.\\\\+]+$\"\n + \ }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '302' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-12e"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 70c6454c0187b04e8f7c42cc1851c7876598284d + X-GitHub-Request-Id: + - 3627:25A7B1:3C09466:4269466:6702CFA8 + X-Served-By: + - cache-den8235-DEN + X-Timer: + - S1728237485.661097,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json#\",\n + \ \"title\": \"Provider Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"providers\": {\n \"title\": \"Providers\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": + [\n \"name\"\n ],\n \"properties\": {\n \"name\": + {\n \"title\": \"Organization name\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"description\": {\n + \ \"title\": \"Organization description\",\n \"type\": + \"string\"\n },\n \"roles\": {\n \"title\": \"Organization + roles\",\n \"type\": \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"producer\",\n \"licensor\",\n + \ \"processor\",\n \"host\"\n ]\n + \ }\n },\n \"url\": {\n \"title\": + \"Organization homepage\",\n \"type\": \"string\",\n \"format\": + \"iri\"\n }\n }\n }\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1135' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:04 GMT + ETag: + - '"66e1651c-46f"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 2f2e5c4f5c2fd224882a34853ecba8b975c39318 + X-GitHub-Request-Id: + - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + X-Served-By: + - cache-den8260-DEN + X-Timer: + - S1728237485.684831,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK - request: body: null headers: @@ -7,7 +517,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -85,7 +595,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '93' + - '3' Cache-Control: - max-age=600 Connection: @@ -95,11 +605,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:04 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 +623,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 253354027e1742febddf9d2b5d72c2a74ecbb10c + - b1b3337632425de986ca26ce0427f50b1aae11bf X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 X-Served-By: - - cache-ewr18170-EWR + - cache-den8277-DEN X-Timer: - - S1711656916.287664,VS0,VE1 + - S1728237485.791201,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -137,7 +647,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/sat/v1.0.0/schema.json response: @@ -197,7 +707,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '66' + - '0' Cache-Control: - max-age=600 Connection: @@ -207,7 +717,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:04 GMT ETag: - '"60414dd7-e82"' Last-Modified: @@ -221,19 +731,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '2' + - '0' X-Fastly-Request-ID: - - f873099fdf5603d98a2bf61fc9b382d14dcf51cc + - d92ace63c4cc3c5e178c31deeec17717b72a720d X-GitHub-Request-Id: - - D208:2B4087:EB5D9B:12CB1A9:6605CF92 + - 63B5:30438:3A4FFCA:40AFDD1:6702CFAB X-Served-By: - - cache-ewr18182-EWR + - cache-den8262-DEN X-Timer: - - S1711656916.368701,VS0,VE1 + - S1728237485.817015,VS0,VE74 expires: - - Thu, 28 Mar 2024 20:24:10 GMT + - Sun, 06 Oct 2024 18:08:04 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -249,7 +759,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json response: @@ -321,7 +831,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '3' Cache-Control: - max-age=600 Connection: @@ -331,11 +841,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:04 GMT ETag: - - '"63e6651b-1226"' + - '"669e563b-1226"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -349,15 +859,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6826c77afb69cf2e72e01a07eb5bef3c49d68248 + - 78cb94cd2225e8f68e5cf1ecd5a483924d86cee3 X-GitHub-Request-Id: - - 616C:397D62:1AB8A52:1E8C8CA:6605CFD3 + - 360F:31444D:38827C0:3EE24EF:6702CFA8 X-Served-By: - - cache-ewr18133-EWR + - cache-den8272-DEN X-Timer: - - S1711656916.444228,VS0,VE1 + - S1728237485.921712,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:15 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -373,7 +883,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/mgrs/v1.0.0/schema.json response: @@ -423,7 +933,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '72' + - '0' Cache-Control: - max-age=600 Connection: @@ -433,7 +943,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:05 GMT ETag: - '"60c20ce1-b49"' Last-Modified: @@ -447,19 +957,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - 0e335e1642b3c96d60a4119d6a24ea3b8e023693 + - 46e777e2261eecb58b2232393a7040980d17ea23 X-GitHub-Request-Id: - - FEF8:1218:F7DD2F:1391031:6605CF8B + - B6E2:88140:39AA20A:400A158:6702CFAC X-Served-By: - - cache-ewr18151-EWR + - cache-den8278-DEN X-Timer: - - S1711656917.528008,VS0,VE2 + - S1728237485.951765,VS0,VE67 expires: - - Thu, 28 Mar 2024 20:24:04 GMT + - Sun, 06 Oct 2024 18:08:04 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -475,7 +985,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/grid/v1.0.0/schema.json response: @@ -519,7 +1029,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:05 GMT ETag: - '"638a24f0-6d5"' Last-Modified: @@ -537,15 +1047,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - fd1b0d483b305a4bbbb1b79b5875c2a7d6452b74 + - 36719af04f9395004e92012616b4880668c96cb8 X-GitHub-Request-Id: - - 2000:34D6E6:1B672D7:1F38C4E:6605CFD4 + - 4087:88140:39AA22F:400A182:6702CFAC X-Served-By: - - cache-ewr18123-EWR + - cache-den8254-DEN X-Timer: - - S1711656917.607656,VS0,VE18 + - S1728237485.052122,VS0,VE61 expires: - - Thu, 28 Mar 2024 20:25:16 GMT + - Sun, 06 Oct 2024 18:08:05 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -561,7 +1071,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -619,7 +1129,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '94' + - '2' Cache-Control: - max-age=600 Connection: @@ -629,7 +1139,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:05 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -647,15 +1157,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1286d8c45cf579096ccb7491e264cdc51853fd49 + - 729ac73e53f2963d754cf47295c1702c7ca4aa7e X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 X-Served-By: - - cache-ewr18181-EWR + - cache-den8268-DEN X-Timer: - - S1711656917.703966,VS0,VE1 + - S1728237485.146457,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Sun, 06 Oct 2024 18:08:03 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 0044197be..5c23e26d9 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 @@ -1,4 +1,514 @@ interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#\",\n + \ \"title\": \"STAC Item\",\n \"type\": \"object\",\n \"description\": \"This + object represents the metadata for an item in a SpatioTemporal Asset Catalog.\",\n + \ \"allOf\": [\n {\n \"$ref\": \"#/definitions/core\"\n }\n ],\n + \ \"definitions\": {\n \"common_metadata\": {\n \"allOf\": [\n {\n + \ \"$ref\": \"basics.json\"\n },\n {\n \"$ref\": + \"datetime.json\"\n },\n {\n \"$ref\": \"instrument.json\"\n + \ },\n {\n \"$ref\": \"licensing.json\"\n },\n + \ {\n \"$ref\": \"provider.json\"\n }\n ]\n },\n + \ \"core\": {\n \"allOf\": [\n {\n \"$ref\": \"https://geojson.org/schema/Feature.json\"\n + \ },\n {\n \"oneOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"geometry\",\n + \ \"bbox\"\n ],\n \"properties\": + {\n \"geometry\": {\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n + \ },\n \"bbox\": {\n \"type\": + \"array\",\n \"oneOf\": [\n {\n \"minItems\": + 4,\n \"maxItems\": 4\n },\n {\n + \ \"minItems\": 6,\n \"maxItems\": + 6\n }\n ],\n \"items\": + {\n \"type\": \"number\"\n }\n }\n + \ }\n },\n {\n \"type\": \"object\",\n + \ \"required\": [\n \"geometry\"\n ],\n + \ \"properties\": {\n \"geometry\": {\n \"type\": + \"null\"\n },\n \"bbox\": {\n \"not\": + {}\n }\n }\n }\n ]\n },\n + \ {\n \"type\": \"object\",\n \"required\": [\n \"stac_version\",\n + \ \"id\",\n \"links\",\n \"assets\",\n \"properties\"\n + \ ],\n \"properties\": {\n \"stac_version\": {\n + \ \"title\": \"STAC version\",\n \"type\": \"string\",\n + \ \"const\": \"1.0.0\"\n },\n \"stac_extensions\": + {\n \"title\": \"STAC extensions\",\n \"type\": + \"array\",\n \"uniqueItems\": true,\n \"items\": + {\n \"title\": \"Reference to a JSON Schema\",\n \"type\": + \"string\",\n \"format\": \"iri\"\n }\n },\n + \ \"id\": {\n \"title\": \"Provider ID\",\n \"description\": + \"Provider item ID\",\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"links\": {\n \"title\": \"Item + links\",\n \"description\": \"Links to item relations\",\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": \"#/definitions/link\"\n + \ }\n },\n \"assets\": {\n \"$ref\": + \"#/definitions/assets\"\n },\n \"properties\": {\n + \ \"allOf\": [\n {\n \"$ref\": + \"#/definitions/common_metadata\"\n },\n {\n + \ \"anyOf\": [\n {\n \"required\": + [\n \"datetime\"\n ],\n \"properties\": + {\n \"datetime\": {\n \"not\": + {\n \"type\": \"null\"\n }\n + \ }\n }\n },\n + \ {\n \"required\": [\n \"datetime\",\n + \ \"start_datetime\",\n \"end_datetime\"\n + \ ]\n }\n ]\n }\n + \ ]\n }\n },\n \"if\": {\n \"properties\": + {\n \"links\": {\n \"contains\": {\n \"required\": + [\n \"rel\"\n ],\n \"properties\": + {\n \"rel\": {\n \"const\": \"collection\"\n + \ }\n }\n }\n }\n + \ }\n },\n \"then\": {\n \"required\": + [\n \"collection\"\n ],\n \"properties\": + {\n \"collection\": {\n \"title\": \"Collection + ID\",\n \"description\": \"The ID of the STAC Collection this + Item references to.\",\n \"type\": \"string\",\n \"minLength\": + 1\n }\n }\n },\n \"else\": {\n \"properties\": + {\n \"collection\": {\n \"not\": {}\n }\n + \ }\n }\n }\n ]\n },\n \"link\": {\n + \ \"type\": \"object\",\n \"required\": [\n \"rel\",\n \"href\"\n + \ ],\n \"properties\": {\n \"href\": {\n \"title\": + \"Link reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"rel\": + {\n \"title\": \"Link relation type\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"type\": {\n \"title\": + \"Link type\",\n \"type\": \"string\"\n },\n \"title\": + {\n \"title\": \"Link title\",\n \"type\": \"string\"\n + \ }\n }\n },\n \"assets\": {\n \"title\": \"Asset links\",\n + \ \"description\": \"Links to assets\",\n \"type\": \"object\",\n + \ \"additionalProperties\": {\n \"$ref\": \"#/definitions/asset\"\n + \ }\n },\n \"asset\": {\n \"allOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"href\"\n ],\n + \ \"properties\": {\n \"href\": {\n \"title\": + \"Asset reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"title\": + {\n \"title\": \"Asset title\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Asset + description\",\n \"type\": \"string\"\n },\n \"type\": + {\n \"title\": \"Asset type\",\n \"type\": \"string\"\n + \ },\n \"roles\": {\n \"title\": \"Asset + roles\",\n \"type\": \"array\",\n \"items\": {\n + \ \"type\": \"string\"\n }\n }\n }\n + \ },\n {\n \"$ref\": \"#/definitions/common_metadata\"\n + \ }\n ]\n }\n }\n}\n" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '2' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '6723' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-1a43"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 323f5c51cf57b156410f9a2f2d2390198ad9df1d + X-GitHub-Request-Id: + - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + X-Served-By: + - cache-den8278-DEN + X-Timer: + - S1728237485.193686,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json#\",\n + \ \"title\": \"Basic Descriptive Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"title\": {\n \"title\": \"Item Title\",\n \"description\": + \"A human-readable title describing the Item.\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Item Description\",\n \"description\": + \"Detailed multi-line description to fully explain the Item.\",\n \"type\": + \"string\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '2' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '533' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-215"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 3e49cf26151b48f2d3726c15ce2147a335863674 + X-GitHub-Request-Id: + - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + X-Served-By: + - cache-den8225-DEN + X-Timer: + - S1728237485.224234,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json#\",\n + \ \"title\": \"Date and Time Fields\",\n \"type\": \"object\",\n \"dependencies\": + {\n \"start_datetime\": {\n \"required\": [\n \"end_datetime\"\n + \ ]\n },\n \"end_datetime\": {\n \"required\": [\n \"start_datetime\"\n + \ ]\n }\n },\n \"properties\": {\n \"datetime\": {\n \"title\": + \"Date and Time\",\n \"description\": \"The searchable date/time of the + assets, in UTC (Formatted in RFC 3339) \",\n \"type\": [\"string\", \"null\"],\n + \ \"format\": \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n + \ },\n \"start_datetime\": {\n \"title\": \"Start Date and Time\",\n + \ \"description\": \"The searchable start date/time of the assets, in + UTC (Formatted in RFC 3339) \",\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n }, \n \"end_datetime\": + {\n \"title\": \"End Date and Time\", \n \"description\": \"The + searchable end date/time of the assets, in UTC (Formatted in RFC 3339) \", + \ \n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"created\": {\n \"title\": + \"Creation Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"updated\": {\n \"title\": + \"Last Update Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '2' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1472' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-5c0"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - c6b5c2d5a2b999d38ce19ff600b09599faa20180 + X-GitHub-Request-Id: + - EA52:A919C:3B43014:41A30A2:6702CF9D + X-Served-By: + - cache-den8270-DEN + X-Timer: + - S1728237485.302330,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json#\",\n + \ \"title\": \"Instrument Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"platform\": {\n \"title\": \"Platform\",\n \"type\": \"string\"\n + \ },\n \"instruments\": {\n \"title\": \"Instruments\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n + \ \"constellation\": {\n \"title\": \"Constellation\",\n \"type\": + \"string\"\n },\n \"mission\": {\n \"title\": \"Mission\",\n \"type\": + \"string\"\n },\n \"gsd\": {\n \"title\": \"Ground Sample Distance\",\n + \ \"type\": \"number\",\n \"exclusiveMinimum\": 0\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '2' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '696' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-2b8"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - c3c210cb9fea46a63f8234601317c7b6e9711748 + X-GitHub-Request-Id: + - 9461:76956:3BAC588:420C605:6702CFAA + X-Served-By: + - cache-den8244-DEN + X-Timer: + - S1728237485.334470,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json#\",\n + \ \"title\": \"Licensing Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"license\": {\n \"type\": \"string\",\n \"pattern\": \"^[\\\\w\\\\-\\\\.\\\\+]+$\"\n + \ }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '2' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '302' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-12e"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 646030991a3c009e1a62eccca27eefd09e4e7cce + X-GitHub-Request-Id: + - 3627:25A7B1:3C09466:4269466:6702CFA8 + X-Served-By: + - cache-den8266-DEN + X-Timer: + - S1728237485.365382,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json#\",\n + \ \"title\": \"Provider Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"providers\": {\n \"title\": \"Providers\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": + [\n \"name\"\n ],\n \"properties\": {\n \"name\": + {\n \"title\": \"Organization name\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"description\": {\n + \ \"title\": \"Organization description\",\n \"type\": + \"string\"\n },\n \"roles\": {\n \"title\": \"Organization + roles\",\n \"type\": \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"producer\",\n \"licensor\",\n + \ \"processor\",\n \"host\"\n ]\n + \ }\n },\n \"url\": {\n \"title\": + \"Organization homepage\",\n \"type\": \"string\",\n \"format\": + \"iri\"\n }\n }\n }\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '1' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1135' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-46f"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 50a8ab1b7edb7f3124f2dfe986c027303d088ee9 + X-GitHub-Request-Id: + - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + X-Served-By: + - cache-den8264-DEN + X-Timer: + - S1728237485.400887,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK - request: body: null headers: @@ -7,7 +517,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -85,7 +595,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '94' + - '4' Cache-Control: - max-age=600 Connection: @@ -95,11 +605,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:05 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 +623,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - bce0a9a549bf5a52c0c43aa638e4daecd15852e3 + - b4e1c0278ea41e8307e57b8529f15957297ee655 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 X-Served-By: - - cache-ewr18142-EWR + - cache-den8224-DEN X-Timer: - - S1711656917.800392,VS0,VE1 + - S1728237485.470206,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -137,7 +647,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json response: @@ -209,7 +719,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '4' Cache-Control: - max-age=600 Connection: @@ -219,11 +729,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:05 GMT ETag: - - '"63e6651b-1226"' + - '"669e563b-1226"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -237,15 +747,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 300994ec80f75f5c32c01a3054616f405e25a6a8 + - ece73987bc4bdd25e7d28ed26e14f99db552b63c X-GitHub-Request-Id: - - 616C:397D62:1AB8A52:1E8C8CA:6605CFD3 + - 360F:31444D:38827C0:3EE24EF:6702CFA8 X-Served-By: - - cache-ewr18147-EWR + - cache-den8221-DEN X-Timer: - - S1711656917.883824,VS0,VE1 + - S1728237485.497387,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:25:15 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -261,7 +771,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/scientific/v1.0.0/schema.json response: @@ -347,7 +857,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '78' + - '4' Cache-Control: - max-age=600 Connection: @@ -357,7 +867,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:16 GMT + - Sun, 06 Oct 2024 17:58:05 GMT ETag: - '"60febab7-15fa"' Last-Modified: @@ -375,15 +885,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 57291e43c0038cae4c34c59b4210dcf4e4c126b1 + - 2a836567fdd5a4144ea77796fa920e094fbb393c X-GitHub-Request-Id: - - 5588:2AA28D:E284B4:123CF3A:6605CF87 + - 84E6:31444D:38827E0:3EE2514:6702CFA8 X-Served-By: - - cache-ewr18181-EWR + - cache-den8239-DEN X-Timer: - - S1711656917.963504,VS0,VE2 + - S1728237486.523763,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:59 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -399,7 +909,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/view/v1.0.0/schema.json response: @@ -457,7 +967,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '94' + - '2' Cache-Control: - max-age=600 Connection: @@ -467,7 +977,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:17 GMT + - Sun, 06 Oct 2024 17:58:05 GMT ETag: - '"60635220-dff"' Last-Modified: @@ -483,17 +993,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Fastly-Request-ID: - - b7c3e37373d4f97098d8fe8af6549e3e1383208b + - 0cf06b91f8b17df2d0562a9c18fb3ed0081de1d1 X-GitHub-Request-Id: - - 2772:14C61:6E9024:8F3B81:6605BE0D + - E8DC:3E300:36AFD26:3D0FA42:6702CFA9 X-Served-By: - - cache-ewr18129-EWR + - cache-den8246-DEN X-Timer: - - S1711656917.052169,VS0,VE0 + - S1728237486.552559,VS0,VE1 expires: - - Thu, 28 Mar 2024 19:09:25 GMT + - Sun, 06 Oct 2024 18:08:03 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -509,7 +1019,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/remote-data/v1.0.0/schema.json response: @@ -584,7 +1094,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:17 GMT + - Sun, 06 Oct 2024 17:58:05 GMT ETag: - '"6046b731-f97"' Last-Modified: @@ -602,15 +1112,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 7b343152d2026a9c063385e9a543d001dc6b008b + - 37b6aa7f9f632e45217f10679eb27fd86c53b909 X-GitHub-Request-Id: - - 7684:397D62:1AB8A8C:1E8C908:6605CFD2 + - 167A:22A3FA:3672521:3CD1AE2:6702CFA8 X-Served-By: - - cache-ewr18138-EWR + - cache-den8260-DEN X-Timer: - - S1711656917.123840,VS0,VE29 + - S1728237486.579650,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:25:15 GMT + - Sun, 06 Oct 2024 18:08:03 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 new file mode 100644 index 000000000..a4bb132ff --- /dev/null +++ b/tests/validation/cassettes/test_validate/TestValidate.test_validate_examples[example123].yaml @@ -0,0 +1,157 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/collection-spec/json-schema/collection.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/collection-spec/json-schema/collection.json#\",\n + \ \"title\": \"STAC Collection Specification\",\n \"description\": \"This + object represents Collections in a SpatioTemporal Asset Catalog.\",\n \"allOf\": + [\n {\n \"$ref\": \"#/definitions/collection\"\n }\n ],\n \"definitions\": + {\n \"collection\": {\n \"title\": \"STAC Collection\",\n \"description\": + \"These are the fields specific to a STAC Collection. All other fields are + inherited from STAC Catalog.\",\n \"type\": \"object\",\n \"required\": + [\n \"stac_version\",\n \"type\",\n \"id\",\n \"description\",\n + \ \"license\",\n \"extent\",\n \"links\"\n ],\n \"properties\": + {\n \"stac_version\": {\n \"title\": \"STAC version\",\n \"type\": + \"string\",\n \"const\": \"1.0.0\"\n },\n \"stac_extensions\": + {\n \"title\": \"STAC extensions\",\n \"type\": \"array\",\n + \ \"uniqueItems\": true,\n \"items\": {\n \"title\": + \"Reference to a JSON Schema\",\n \"type\": \"string\",\n \"format\": + \"iri\"\n }\n },\n \"type\": {\n \"title\": + \"Type of STAC entity\",\n \"const\": \"Collection\"\n },\n + \ \"id\": {\n \"title\": \"Identifier\",\n \"type\": + \"string\",\n \"minLength\": 1\n },\n \"title\": {\n + \ \"title\": \"Title\",\n \"type\": \"string\"\n },\n + \ \"description\": {\n \"title\": \"Description\",\n \"type\": + \"string\",\n \"minLength\": 1\n },\n \"keywords\": + {\n \"title\": \"Keywords\",\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"string\"\n }\n },\n \"license\": + {\n \"title\": \"Collection License Name\",\n \"type\": + \"string\",\n \"pattern\": \"^[\\\\w\\\\-\\\\.\\\\+]+$\"\n },\n + \ \"providers\": {\n \"type\": \"array\",\n \"items\": + {\n \"type\": \"object\",\n \"required\": [\n \"name\"\n + \ ],\n \"properties\": {\n \"name\": {\n + \ \"title\": \"Organization name\",\n \"type\": + \"string\"\n },\n \"description\": {\n \"title\": + \"Organization description\",\n \"type\": \"string\"\n },\n + \ \"roles\": {\n \"title\": \"Organization roles\",\n + \ \"type\": \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"producer\",\n + \ \"licensor\",\n \"processor\",\n \"host\"\n + \ ]\n }\n },\n \"url\": + {\n \"title\": \"Organization homepage\",\n \"type\": + \"string\",\n \"format\": \"iri\"\n }\n }\n + \ }\n },\n \"extent\": {\n \"title\": \"Extents\",\n + \ \"type\": \"object\",\n \"required\": [\n \"spatial\",\n + \ \"temporal\"\n ],\n \"properties\": {\n \"spatial\": + {\n \"title\": \"Spatial extent object\",\n \"type\": + \"object\",\n \"required\": [\n \"bbox\"\n ],\n + \ \"properties\": {\n \"bbox\": {\n \"title\": + \"Spatial extents\",\n \"type\": \"array\",\n \"minItems\": + 1,\n \"items\": {\n \"title\": \"Spatial + extent\",\n \"type\": \"array\",\n \"oneOf\": + [\n {\n \"minItems\":4,\n \"maxItems\":4\n + \ },\n {\n \"minItems\":6,\n + \ \"maxItems\":6\n }\n ],\n + \ \"items\": {\n \"type\": \"number\"\n + \ }\n }\n }\n }\n + \ },\n \"temporal\": {\n \"title\": \"Temporal + extent object\",\n \"type\": \"object\",\n \"required\": + [\n \"interval\"\n ],\n \"properties\": + {\n \"interval\": {\n \"title\": \"Temporal + extents\",\n \"type\": \"array\",\n \"minItems\": + 1,\n \"items\": {\n \"title\": \"Temporal + extent\",\n \"type\": \"array\",\n \"minItems\": + 2,\n \"maxItems\": 2,\n \"items\": {\n + \ \"type\": [\n \"string\",\n \"null\"\n + \ ],\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n }\n + \ }\n }\n }\n }\n }\n + \ },\n \"assets\": {\n \"$ref\": \"../../item-spec/json-schema/item.json#/definitions/assets\"\n + \ },\n \"links\": {\n \"title\": \"Links\",\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": \"#/definitions/link\"\n + \ }\n },\n \"summaries\": {\n \"$ref\": \"#/definitions/summaries\"\n + \ }\n }\n },\n \"link\": {\n \"type\": \"object\",\n + \ \"required\": [\n \"rel\",\n \"href\"\n ],\n \"properties\": + {\n \"href\": {\n \"title\": \"Link reference\",\n \"type\": + \"string\",\n \"format\": \"iri-reference\",\n \"minLength\": + 1\n },\n \"rel\": {\n \"title\": \"Link relation type\",\n + \ \"type\": \"string\",\n \"minLength\": 1\n },\n + \ \"type\": {\n \"title\": \"Link type\",\n \"type\": + \"string\"\n },\n \"title\": {\n \"title\": \"Link + title\",\n \"type\": \"string\"\n }\n }\n },\n \"summaries\": + {\n \"type\": \"object\",\n \"additionalProperties\": {\n \"anyOf\": + [\n {\n \"title\": \"JSON Schema\",\n \"type\": + \"object\",\n \"minProperties\": 1,\n \"allOf\": [\n + \ {\n \"$ref\": \"http://json-schema.org/draft-07/schema\"\n + \ }\n ]\n },\n {\n \"title\": + \"Range\",\n \"type\": \"object\",\n \"required\": [\n + \ \"minimum\",\n \"maximum\"\n ],\n \"properties\": + {\n \"minimum\": {\n \"title\": \"Minimum value\",\n + \ \"type\": [\n \"number\",\n \"string\"\n + \ ]\n },\n \"maximum\": {\n \"title\": + \"Maximum value\",\n \"type\": [\n \"number\",\n + \ \"string\"\n ]\n }\n }\n + \ },\n {\n \"title\": \"Set of values\",\n \"type\": + \"array\",\n \"minItems\": 1,\n \"items\": {\n \"description\": + \"For each field only the original data type of the property can occur (except + for arrays), but we can't validate that in JSON Schema yet. See the sumamry + description in the STAC specification for details.\"\n }\n }\n + \ ]\n }\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '440' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '7209' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-1c29"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 866d24cfd07b0d11ed4d45b935af6419c911e4b2 + X-GitHub-Request-Id: + - AA86:1F7C33:21C6328:252B5A1:6702CDF4 + X-Served-By: + - cache-den8271-DEN + X-Timer: + - S1728237486.619366,VS0,VE2 + expires: + - Sun, 06 Oct 2024 18:00:45 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +version: 1 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 92e601b0a..bfb8df6a9 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 @@ -1,4 +1,514 @@ interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#\",\n + \ \"title\": \"STAC Item\",\n \"type\": \"object\",\n \"description\": \"This + object represents the metadata for an item in a SpatioTemporal Asset Catalog.\",\n + \ \"allOf\": [\n {\n \"$ref\": \"#/definitions/core\"\n }\n ],\n + \ \"definitions\": {\n \"common_metadata\": {\n \"allOf\": [\n {\n + \ \"$ref\": \"basics.json\"\n },\n {\n \"$ref\": + \"datetime.json\"\n },\n {\n \"$ref\": \"instrument.json\"\n + \ },\n {\n \"$ref\": \"licensing.json\"\n },\n + \ {\n \"$ref\": \"provider.json\"\n }\n ]\n },\n + \ \"core\": {\n \"allOf\": [\n {\n \"$ref\": \"https://geojson.org/schema/Feature.json\"\n + \ },\n {\n \"oneOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"geometry\",\n + \ \"bbox\"\n ],\n \"properties\": + {\n \"geometry\": {\n \"$ref\": \"https://geojson.org/schema/Geometry.json\"\n + \ },\n \"bbox\": {\n \"type\": + \"array\",\n \"oneOf\": [\n {\n \"minItems\": + 4,\n \"maxItems\": 4\n },\n {\n + \ \"minItems\": 6,\n \"maxItems\": + 6\n }\n ],\n \"items\": + {\n \"type\": \"number\"\n }\n }\n + \ }\n },\n {\n \"type\": \"object\",\n + \ \"required\": [\n \"geometry\"\n ],\n + \ \"properties\": {\n \"geometry\": {\n \"type\": + \"null\"\n },\n \"bbox\": {\n \"not\": + {}\n }\n }\n }\n ]\n },\n + \ {\n \"type\": \"object\",\n \"required\": [\n \"stac_version\",\n + \ \"id\",\n \"links\",\n \"assets\",\n \"properties\"\n + \ ],\n \"properties\": {\n \"stac_version\": {\n + \ \"title\": \"STAC version\",\n \"type\": \"string\",\n + \ \"const\": \"1.0.0\"\n },\n \"stac_extensions\": + {\n \"title\": \"STAC extensions\",\n \"type\": + \"array\",\n \"uniqueItems\": true,\n \"items\": + {\n \"title\": \"Reference to a JSON Schema\",\n \"type\": + \"string\",\n \"format\": \"iri\"\n }\n },\n + \ \"id\": {\n \"title\": \"Provider ID\",\n \"description\": + \"Provider item ID\",\n \"type\": \"string\",\n \"minLength\": + 1\n },\n \"links\": {\n \"title\": \"Item + links\",\n \"description\": \"Links to item relations\",\n \"type\": + \"array\",\n \"items\": {\n \"$ref\": \"#/definitions/link\"\n + \ }\n },\n \"assets\": {\n \"$ref\": + \"#/definitions/assets\"\n },\n \"properties\": {\n + \ \"allOf\": [\n {\n \"$ref\": + \"#/definitions/common_metadata\"\n },\n {\n + \ \"anyOf\": [\n {\n \"required\": + [\n \"datetime\"\n ],\n \"properties\": + {\n \"datetime\": {\n \"not\": + {\n \"type\": \"null\"\n }\n + \ }\n }\n },\n + \ {\n \"required\": [\n \"datetime\",\n + \ \"start_datetime\",\n \"end_datetime\"\n + \ ]\n }\n ]\n }\n + \ ]\n }\n },\n \"if\": {\n \"properties\": + {\n \"links\": {\n \"contains\": {\n \"required\": + [\n \"rel\"\n ],\n \"properties\": + {\n \"rel\": {\n \"const\": \"collection\"\n + \ }\n }\n }\n }\n + \ }\n },\n \"then\": {\n \"required\": + [\n \"collection\"\n ],\n \"properties\": + {\n \"collection\": {\n \"title\": \"Collection + ID\",\n \"description\": \"The ID of the STAC Collection this + Item references to.\",\n \"type\": \"string\",\n \"minLength\": + 1\n }\n }\n },\n \"else\": {\n \"properties\": + {\n \"collection\": {\n \"not\": {}\n }\n + \ }\n }\n }\n ]\n },\n \"link\": {\n + \ \"type\": \"object\",\n \"required\": [\n \"rel\",\n \"href\"\n + \ ],\n \"properties\": {\n \"href\": {\n \"title\": + \"Link reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"rel\": + {\n \"title\": \"Link relation type\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"type\": {\n \"title\": + \"Link type\",\n \"type\": \"string\"\n },\n \"title\": + {\n \"title\": \"Link title\",\n \"type\": \"string\"\n + \ }\n }\n },\n \"assets\": {\n \"title\": \"Asset links\",\n + \ \"description\": \"Links to assets\",\n \"type\": \"object\",\n + \ \"additionalProperties\": {\n \"$ref\": \"#/definitions/asset\"\n + \ }\n },\n \"asset\": {\n \"allOf\": [\n {\n \"type\": + \"object\",\n \"required\": [\n \"href\"\n ],\n + \ \"properties\": {\n \"href\": {\n \"title\": + \"Asset reference\",\n \"type\": \"string\",\n \"format\": + \"iri-reference\",\n \"minLength\": 1\n },\n \"title\": + {\n \"title\": \"Asset title\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Asset + description\",\n \"type\": \"string\"\n },\n \"type\": + {\n \"title\": \"Asset type\",\n \"type\": \"string\"\n + \ },\n \"roles\": {\n \"title\": \"Asset + roles\",\n \"type\": \"array\",\n \"items\": {\n + \ \"type\": \"string\"\n }\n }\n }\n + \ },\n {\n \"$ref\": \"#/definitions/common_metadata\"\n + \ }\n ]\n }\n }\n}\n" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '2' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '6723' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-1a43"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 1d73dbb538f406c7cea59de67ec84d258affe9c3 + X-GitHub-Request-Id: + - 6C58:3E300:36AFDA7:3D0FACE:6702CFAA + X-Served-By: + - cache-den8275-DEN + X-Timer: + - S1728237486.652468,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/basics.json#\",\n + \ \"title\": \"Basic Descriptive Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"title\": {\n \"title\": \"Item Title\",\n \"description\": + \"A human-readable title describing the Item.\",\n \"type\": \"string\"\n + \ },\n \"description\": {\n \"title\": \"Item Description\",\n \"description\": + \"Detailed multi-line description to fully explain the Item.\",\n \"type\": + \"string\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '2' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '533' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-215"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - ed144fdebacf72a99d8fe1e895a38e3b3f90f5eb + X-GitHub-Request-Id: + - DFE4:D9115:3A59DAB:40B9CC6:6702CFAA + X-Served-By: + - cache-den8244-DEN + X-Timer: + - S1728237486.682008,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/datetime.json#\",\n + \ \"title\": \"Date and Time Fields\",\n \"type\": \"object\",\n \"dependencies\": + {\n \"start_datetime\": {\n \"required\": [\n \"end_datetime\"\n + \ ]\n },\n \"end_datetime\": {\n \"required\": [\n \"start_datetime\"\n + \ ]\n }\n },\n \"properties\": {\n \"datetime\": {\n \"title\": + \"Date and Time\",\n \"description\": \"The searchable date/time of the + assets, in UTC (Formatted in RFC 3339) \",\n \"type\": [\"string\", \"null\"],\n + \ \"format\": \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n + \ },\n \"start_datetime\": {\n \"title\": \"Start Date and Time\",\n + \ \"description\": \"The searchable start date/time of the assets, in + UTC (Formatted in RFC 3339) \",\n \"type\": \"string\",\n \"format\": + \"date-time\",\n \"pattern\": \"(\\\\+00:00|Z)$\"\n }, \n \"end_datetime\": + {\n \"title\": \"End Date and Time\", \n \"description\": \"The + searchable end date/time of the assets, in UTC (Formatted in RFC 3339) \", + \ \n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"created\": {\n \"title\": + \"Creation Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n },\n \"updated\": {\n \"title\": + \"Last Update Time\",\n \"type\": \"string\",\n \"format\": \"date-time\",\n + \ \"pattern\": \"(\\\\+00:00|Z)$\"\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '2' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1472' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-5c0"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - e488b66747f2734b4d3d70acf1d6341b662c9e58 + X-GitHub-Request-Id: + - EA52:A919C:3B43014:41A30A2:6702CF9D + X-Served-By: + - cache-den8230-DEN + X-Timer: + - S1728237486.710270,VS0,VE3 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/instrument.json#\",\n + \ \"title\": \"Instrument Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"platform\": {\n \"title\": \"Platform\",\n \"type\": \"string\"\n + \ },\n \"instruments\": {\n \"title\": \"Instruments\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n + \ \"constellation\": {\n \"title\": \"Constellation\",\n \"type\": + \"string\"\n },\n \"mission\": {\n \"title\": \"Mission\",\n \"type\": + \"string\"\n },\n \"gsd\": {\n \"title\": \"Ground Sample Distance\",\n + \ \"type\": \"number\",\n \"exclusiveMinimum\": 0\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '2' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '696' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-2b8"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - 6cb3bea4883f1fe51d9915176b94b624789563ef + X-GitHub-Request-Id: + - 9461:76956:3BAC588:420C605:6702CFAA + X-Served-By: + - cache-den8249-DEN + X-Timer: + - S1728237486.745865,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/licensing.json#\",\n + \ \"title\": \"Licensing Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"license\": {\n \"type\": \"string\",\n \"pattern\": \"^[\\\\w\\\\-\\\\.\\\\+]+$\"\n + \ }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '2' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '302' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-12e"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - c0100f30de45cc072925f9696b05677193863f4c + X-GitHub-Request-Id: + - 3627:25A7B1:3C09466:4269466:6702CFA8 + X-Served-By: + - cache-den8252-DEN + X-Timer: + - S1728237486.773936,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - schemas.stacspec.org + User-Agent: + - Python-urllib/3.12 + method: GET + uri: https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json + response: + body: + string: "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"$id\": + \"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/provider.json#\",\n + \ \"title\": \"Provider Fields\",\n \"type\": \"object\",\n \"properties\": + {\n \"providers\": {\n \"title\": \"Providers\",\n \"type\": + \"array\",\n \"items\": {\n \"type\": \"object\",\n \"required\": + [\n \"name\"\n ],\n \"properties\": {\n \"name\": + {\n \"title\": \"Organization name\",\n \"type\": \"string\",\n + \ \"minLength\": 1\n },\n \"description\": {\n + \ \"title\": \"Organization description\",\n \"type\": + \"string\"\n },\n \"roles\": {\n \"title\": \"Organization + roles\",\n \"type\": \"array\",\n \"items\": {\n \"type\": + \"string\",\n \"enum\": [\n \"producer\",\n \"licensor\",\n + \ \"processor\",\n \"host\"\n ]\n + \ }\n },\n \"url\": {\n \"title\": + \"Organization homepage\",\n \"type\": \"string\",\n \"format\": + \"iri\"\n }\n }\n }\n }\n }\n}" + headers: + Accept-Ranges: + - bytes + Access-Control-Allow-Origin: + - '*' + Age: + - '2' + Cache-Control: + - max-age=600 + Connection: + - close + Content-Length: + - '1135' + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 06 Oct 2024 17:58:05 GMT + ETag: + - '"66e1651c-46f"' + Last-Modified: + - Wed, 11 Sep 2024 09:38:36 GMT + Server: + - GitHub.com + Vary: + - Accept-Encoding + Via: + - 1.1 varnish + X-Cache: + - HIT + X-Cache-Hits: + - '1' + X-Fastly-Request-ID: + - c369fcc88b7933c4e7fd1c0e55fb01e2b0576448 + X-GitHub-Request-Id: + - FB80:30438:3A4FEB1:40AFCA0:6702CFA8 + X-Served-By: + - cache-den8263-DEN + X-Timer: + - S1728237486.803942,VS0,VE1 + expires: + - Sun, 06 Oct 2024 18:08:03 GMT + x-origin-cache: + - HIT + x-proxy-cache: + - MISS + status: + code: 200 + message: OK - request: body: null headers: @@ -7,7 +517,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/eo/v1.1.0/schema.json response: @@ -85,7 +595,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '94' + - '4' Cache-Control: - max-age=600 Connection: @@ -95,11 +605,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:17 GMT + - Sun, 06 Oct 2024 17:58:05 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 +621,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - ea45e7ddacf121a27fa973318921849303323612 + - 999644492285e713444bdbd2bfd2d4261b2e6489 X-GitHub-Request-Id: - - 5B26:3FB5:EBCC97:12D0123:6605CF76 + - 535B:2E3A96:393FA42:3F9F3E0:6702CFA8 X-Served-By: - - cache-ewr18180-EWR + - cache-den8259-DEN X-Timer: - - S1711656917.240001,VS0,VE1 + - S1728237486.845457,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:42 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -137,7 +647,7 @@ interactions: Host: - stac-extensions.github.io User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://stac-extensions.github.io/projection/v1.0.0/schema.json response: @@ -209,7 +719,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '4' Cache-Control: - max-age=600 Connection: @@ -219,11 +729,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:17 GMT + - Sun, 06 Oct 2024 17:58:05 GMT ETag: - - '"63e6651b-1226"' + - '"669e563b-1226"' Last-Modified: - - Fri, 10 Feb 2023 15:39:07 GMT + - Mon, 22 Jul 2024 12:53:15 GMT Server: - GitHub.com Strict-Transport-Security: @@ -237,15 +747,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e844ae7ed916a9264fa0f7463644020a53787b6c + - 5e41914ce91cce27194f207c0a59f9ff0562a640 X-GitHub-Request-Id: - - 616C:397D62:1AB8A52:1E8C8CA:6605CFD3 + - 360F:31444D:38827C0:3EE24EF:6702CFA8 X-Served-By: - - cache-ewr18166-EWR + - cache-den8248-DEN X-Timer: - - S1711656917.313448,VS0,VE2 + - S1728237486.872127,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:15 GMT + - Sun, 06 Oct 2024 18:08:01 GMT permissions-policy: - interest-cohort=() x-proxy-cache: @@ -261,7 +771,7 @@ interactions: Host: - proj.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://proj.org/schemas/v0.2/projjson.schema.json response: @@ -271,11 +781,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '18' + - '15' CF-Cache-Status: - HIT CF-Ray: - - 86ba4a95c8ae18a1-EWR + - 8ce7899efc1f533c-DEN Cache-Control: - max-age=1200 Connection: @@ -287,17 +797,18 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:17 GMT + - Sun, 06 Oct 2024 17:58:05 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; + 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: @@ -305,7 +816,7 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-05c117ec516ff1d60 + - web-i-00198cede0d27448d x-content-type-options: - nosniff x-rtd-domain: @@ -331,21 +842,23 @@ interactions: Host: - proj.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://proj.org/en/latest/schemas/v0.2/projjson.schema.json response: body: string: "{\n \"$id\": \"https://proj.org/schemas/v0.2/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.2.1)\",\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.2.1)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2020, 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\" @@ -777,11 +1290,11 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '17' + - '16' CF-Cache-Status: - HIT CF-Ray: - - 86ba4a9678bbc339-EWR + - 8ce7899f5eca518c-DEN Cache-Control: - max-age=1200 Connection: @@ -789,33 +1302,36 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:15:17 GMT + - Sun, 06 Oct 2024 17:58:06 GMT ETag: - - W/"229554e540c67351947cd45680c62eef" + - W/"54be42a997d748d338984583b3f2c900" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=Lkr64CHKUZ0bIRdpygQjso17kQwJUxBavUxHoYQH2S8-1728237486011-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: - 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: - - 4cF+iaelIycTz63ZRs3qOoue6uBVN/YbrM1P094ScvL+hHDIICPqGt4HKW77KnWNrh6wHU4QjaM= + - f5aASN/bFyj2phyPzWWHQ68IHhNiPEXh6zTTeg9+RJ9QQzj6sVVR2aT8uGUxg5L0kRyrjZjApiE= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - B2V799T0ED750CXZ + - R8NFNYA0GYKBVMPW x-amz-server-side-encryption: - AES256 x-backend: - - web-i-0da202e90bd9b7c41 + - web-i-0437d377c305e1f87 x-content-type-options: - nosniff x-rtd-domain: 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 2dd53c09c..e5ca5f6b7 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:20 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:20 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - - '2' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1f6a2e3bded4d34f6b5d66d0ecb955ac18c9bfe4 + - 1d28e7877ee6a06a92648145c72c8bb69c8ee026 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18138-EWR + - cache-den8230-DEN X-Timer: - - S1711656861.648105,VS0,VE1 + - S1728237442.536286,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:20 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Thu, 28 Mar 2024 20:19:20 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - '0' Strict-Transport-Security: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f24323bf36f894a0236a25e03593243ce28ca460 + - 74c9eac15b53b7738b9a1a5c6bcaa4eeb84df4c7 X-Frame-Options: - deny X-GitHub-Request-Id: - - D04E:5061:615719:752CF3:6605CF9C + - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 X-Served-By: - - cache-ewr18136-EWR + - cache-den8249-DEN X-Timer: - - S1711656861.799589,VS0,VE1 + - S1728237442.584911,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 141346411..5be5598fa 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:20 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:20 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - - '2' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a0c7059d11c6b418db1016cd419a09a7cdaa3b8b + - 4b7f450cfa0fec6af6dd268c38ef2e555c1f557b X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18181-EWR + - cache-den8251-DEN X-Timer: - - S1711656861.880970,VS0,VE1 + - S1728237442.619905,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:20 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Thu, 28 Mar 2024 20:19:20 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - '0' Strict-Transport-Security: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 52e9d08801cf3ca66cb791edecf8595f1e64cc7b + - b5a5bf84a5106df28d11fa93130b4541d21d471c X-Frame-Options: - deny X-GitHub-Request-Id: - - D04E:5061:615719:752CF3:6605CF9C + - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 X-Served-By: - - cache-ewr18164-EWR + - cache-den8264-DEN X-Timer: - - S1711656861.968362,VS0,VE1 + - S1728237442.653036,VS0,VE1 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 6d05978f4..e4867769f 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:21 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:19:21 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - - '2' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - fac54cf38ef29be72b3ff73d6d978753985b1dce + - 561c267429e54fc9fd76845dfbc320295c6f2bae X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F X-Served-By: - - cache-ewr18143-EWR + - cache-den8268-DEN X-Timer: - - S1711656861.055784,VS0,VE1 + - S1728237442.687762,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:21 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:19:21 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d45cc62962b44fa4f80b97b1f617f78a63e4898c + - d0f2a97a54c1eeb18c893d4d0654013e076a5a37 X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18149-EWR + - cache-den8250-DEN X-Timer: - - S1711656861.132678,VS0,VE1 + - S1728237442.716590,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 a558e052d..94096c63e 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:21 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:19:21 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - '2' Strict-Transport-Security: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4ce37723539ccb8da610e77cc5c309cb4394da01 + - fbf0d4d34b9dfec8d02a292ad6b7331f44778ab5 X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F X-Served-By: - - cache-ewr18183-EWR + - cache-den8250-DEN X-Timer: - - S1711656861.203582,VS0,VE1 + - S1728237442.753161,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:21 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:19:21 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4f196bd4f374ad269ab7d1bfcd9e59e525292776 + - 63b6caf2e946c9b318ade8c59049d9fc76114d3b X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18152-EWR + - cache-den8249-DEN X-Timer: - - S1711656861.283834,VS0,VE1 + - S1728237442.785670,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 64c427a0e..6566b6fc6 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:21 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:21 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - - '2' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 886899faa4cfd6deea2d1d99910b4f34ea2d6639 + - 2f9fac3a88895a1e1f9cb032c8494ad2db63e360 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18141-EWR + - cache-den8252-DEN X-Timer: - - S1711656861.497321,VS0,VE2 + - S1728237442.888733,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:23 GMT + - Sun, 06 Oct 2024 17:57:23 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Thu, 28 Mar 2024 20:19:23 GMT + - Sun, 06 Oct 2024 18:02:23 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4a7dae8f1019589e2f8f8bd235abb3ece177a1c2 + - 185b5cd5542c0d6a129eb3a77cf1e818754f038c X-Frame-Options: - deny X-GitHub-Request-Id: - - D04E:5061:615719:752CF3:6605CF9C + - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 X-Served-By: - - cache-ewr18147-EWR + - cache-den8259-DEN X-Timer: - - S1711656864.851557,VS0,VE1 + - S1728237443.276599,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 e04beb0c1..e561e41bd 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:23 GMT + - Sun, 06 Oct 2024 17:57:23 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:23 GMT + - Sun, 06 Oct 2024 18:02:23 GMT Source-Age: - - '5' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2d7a1e3f9e4b159645309694d457eca9da978bbe + - 65d0750f56479ed079c2ea2816c7d4c43da0bb27 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18122-EWR + - cache-den8238-DEN X-Timer: - - S1711656864.951937,VS0,VE1 + - S1728237443.326959,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:24 GMT + - Sun, 06 Oct 2024 17:57:23 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Thu, 28 Mar 2024 20:19:24 GMT + - Sun, 06 Oct 2024 18:02:23 GMT Source-Age: - - '4' + - '2' 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: - - 5742efa2c745a6d3a974de43d13c10ed86b72781 + - bbafc1c8958105931160be9e20591b9f4b702b77 X-Frame-Options: - deny X-GitHub-Request-Id: - - D04E:5061:615719:752CF3:6605CF9C + - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 X-Served-By: - - cache-ewr18136-EWR + - cache-den8250-DEN X-Timer: - - S1711656865.683649,VS0,VE0 + - S1728237444.734122,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 0d564a760..17f134248 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:24 GMT + - Sun, 06 Oct 2024 17:57:23 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:19:24 GMT + - Sun, 06 Oct 2024 18:02:23 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 027207d9cedf8623c3a251ae71826489f71ebf86 + - 820326b1d62e050839d7a6db179045eef79b965c X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F X-Served-By: - - cache-ewr18160-EWR + - cache-den8264-DEN X-Timer: - - S1711656865.764265,VS0,VE1 + - S1728237444.761044,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:24 GMT + - Sun, 06 Oct 2024 17:57:23 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:19:24 GMT + - Sun, 06 Oct 2024 18:02:23 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 586366f29efbad69f719b71af2c85a80b524b10b + - b63cd34ea263f477a6d21f5769e5cd6cca279754 X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18164-EWR + - cache-den8275-DEN X-Timer: - - S1711656865.839891,VS0,VE1 + - S1728237444.786326,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 51ad9c539..0e8674009 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:24 GMT + - Sun, 06 Oct 2024 17:57:23 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:24 GMT + - Sun, 06 Oct 2024 18:02:23 GMT Source-Age: - - '6' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b1fe7f2cec6dee712a35bf4f9b9d2d1111ffa596 + - d5c9833ec025b6f3eeeee3021e27474f32428ea2 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18125-EWR + - cache-den8241-DEN X-Timer: - - S1711656865.915951,VS0,VE1 + - S1728237444.812656,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:24 GMT + - Sun, 06 Oct 2024 17:57:23 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Thu, 28 Mar 2024 20:19:24 GMT + - Sun, 06 Oct 2024 18:02:23 GMT Source-Age: - - '4' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -243,15 +243,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 847c84fec666ebba54cc780fb87b8d6de0cdd03e + - a443eaac3b0d4dea9a0275bd249f57b06de5f5e6 X-Frame-Options: - deny X-GitHub-Request-Id: - - D04E:5061:615719:752CF3:6605CF9C + - 5EE4:33B9B9:5BA79E:65DA53:6702CF80 X-Served-By: - - cache-ewr18161-EWR + - cache-den8254-DEN X-Timer: - - S1711656865.996101,VS0,VE1 + - S1728237444.840563,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 52cb098e2..be85cdd2f 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:18 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:19:18 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - '0' Strict-Transport-Security: @@ -88,15 +88,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f4d6ea6478f0409c61879a871c88b724ff1392a6 + - 2359f34ee550694966fdf37b175bc62a73bd3fdb X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18161-EWR + - cache-den8270-DEN X-Timer: - - S1711656859.635777,VS0,VE1 + - S1728237440.077093,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 fb9746308..1db931068 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:25 GMT + - Sun, 06 Oct 2024 17:57:23 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:25 GMT + - Sun, 06 Oct 2024 18:02:23 GMT Source-Age: - - '6' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ad7662b9f8596d59c1e5e221c09596d08bff239a + - 6090aeda2fee17d7463801efe58b3186d1f1f856 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18120-EWR + - cache-den8265-DEN X-Timer: - - S1711656865.079793,VS0,VE1 + - S1728237444.871231,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 b14ad50c1..ed0b81140 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:25 GMT + - Sun, 06 Oct 2024 17:57:23 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:25 GMT + - Sun, 06 Oct 2024 18:02:23 GMT Source-Age: - - '6' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a299be66a806bfd51ba02a4800acbd835b0e643b + - 893116e477ae37a67cce45ec031000e71ffe971a X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18183-EWR + - cache-den8266-DEN X-Timer: - - S1711656865.160035,VS0,VE1 + - S1728237444.903460,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 2a555677e..bf13f0032 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:25 GMT + - Sun, 06 Oct 2024 17:57:23 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:25 GMT + - Sun, 06 Oct 2024 18:02:23 GMT Source-Age: - - '6' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5abc843f05e1b1bd5a4ab117fdf043c8cef09815 + - 3c3220b84a87b12e3df20da5a33c96f43561bb52 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18170-EWR + - cache-den8244-DEN X-Timer: - - S1711656865.243796,VS0,VE1 + - S1728237444.932575,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:25 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"bd0d97e01404052bb35eda302935aea6ab05818f78d1970e785c7083dedc3bad"' Expires: - - Thu, 28 Mar 2024 20:19:25 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - '0' Strict-Transport-Security: @@ -276,15 +276,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7fcdf563933502528a2cf984b63bb509ac1d2ddf + - 9e88792e2e5c7f16e0e1dc763e5727c13f8ccd48 X-Frame-Options: - deny X-GitHub-Request-Id: - - 422C:3CC77F:5FAE6B:73C053:6605CF9E + - 5EE4:33B9B9:5BA96D:65DC40:6702CF81 X-Served-By: - - cache-ewr18124-EWR + - cache-den8231-DEN X-Timer: - - S1711656865.324039,VS0,VE73 + - S1728237444.957911,VS0,VE147 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 69f2e9d68..d1d6b6074 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:25 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:25 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 42ed5ac993823eb6e44a50deb75b3ae7e383aca9 + - f19188e5c586201ce08313e3a5537d95a1c2895d X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18171-EWR + - cache-den8247-DEN X-Timer: - - S1711656865.495943,VS0,VE1 + - S1728237444.144592,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:25 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"ceed674cee48a43076989957b8a4f96d8acba3f52df1d52a3745e28225923aac"' Expires: - - Thu, 28 Mar 2024 20:19:25 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '6' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -218,15 +218,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c068ad5a993b6f8de86f762b35f57d0320ee7f76 + - 9502e90ffdd93db2938398c5cea7a56ddc95c606 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4334:3DB40B:628C95:769E36:6605CF9B + - 4D1E:183A6B:5EAFC0:68DD36:6702CF80 X-Served-By: - - cache-ewr18151-EWR + - cache-den8259-DEN X-Timer: - - S1711656866.579691,VS0,VE1 + - S1728237444.175499,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -240,7 +240,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:25 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"bd0d97e01404052bb35eda302935aea6ab05818f78d1970e785c7083dedc3bad"' Expires: - - Thu, 28 Mar 2024 20:19:25 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - '0' Strict-Transport-Security: @@ -362,15 +362,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 40f25410dfed8e5fee4f4f9c8d8ac039371866ec + - ea0b79ca40c4462d7d1b99906e87e2ed1d0c1031 X-Frame-Options: - deny X-GitHub-Request-Id: - - 422C:3CC77F:5FAE6B:73C053:6605CF9E + - 5EE4:33B9B9:5BA96D:65DC40:6702CF81 X-Served-By: - - cache-ewr18120-EWR + - cache-den8250-DEN X-Timer: - - S1711656866.659727,VS0,VE1 + - S1728237444.205590,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 8012b3dfa..851afa947 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:25 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:19:25 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '7' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -105,19 +105,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '6' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9f75356b2d8c0b0948a476a77d6cc39d7f056832 + - 25dad5fda598f9fd49bb273b0d5e2cd60d95a4e3 X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F X-Served-By: - - cache-ewr18170-EWR + - cache-den8268-DEN X-Timer: - - S1711656866.747855,VS0,VE0 + - S1728237444.240865,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:25 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:19:25 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '7' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5dc324eb3705eeae53e2a3ba4b06f460a96498b3 + - 2d801ad2fe00afc2bc0989f8c6b0ea888c2ef2ea X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18161-EWR + - cache-den8250-DEN X-Timer: - - S1711656866.843962,VS0,VE0 + - S1728237444.269023,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -234,7 +234,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"13ff4323200a45e6acb12e649221282624758beb0a8f5b3a190160c2aa9d358a"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - '0' Strict-Transport-Security: @@ -300,15 +300,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - fcacae7cc0d1fcdd54aba4c28a462d9c759ff29f + - 61f92ac58ea37a1592fb504bd9510b8b999f763e X-Frame-Options: - deny X-GitHub-Request-Id: - - 4A3C:38DEC0:632454:773643:6605CFA1 + - C40E:1AA5C0:5862BA:629366:6702CF82 X-Served-By: - - cache-ewr18170-EWR + - cache-den8228-DEN X-Timer: - - S1711656866.929395,VS0,VE96 + - S1728237444.295120,VS0,VE154 X-XSS-Protection: - 1; mode=block status: @@ -322,7 +322,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '7' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -447,15 +447,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c3f9dccb828493d9e58714e08a56c19645542a93 + - 6f4e6835690e11822301723558fdffc04450b2dc X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18165-EWR + - cache-den8259-DEN X-Timer: - - S1711656866.120179,VS0,VE1 + - S1728237444.485202,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 21938b140..f35cb0964 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '4' 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: - - 95ecf0358a28882345e0aafce112cfa7efaa8594 + - 337e63b47632d35b0c17bb607c5071db3814229d X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18138-EWR + - cache-den8267-DEN X-Timer: - - S1711656866.207537,VS0,VE0 + - S1728237445.526656,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"13ff4323200a45e6acb12e649221282624758beb0a8f5b3a190160c2aa9d358a"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - '0' Strict-Transport-Security: @@ -220,15 +220,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6d207c2bac5450c4f073db556021c9d825270044 + - 2bb72ba0ba10d799ddeb43bc95228b181903718c X-Frame-Options: - deny X-GitHub-Request-Id: - - 4A3C:38DEC0:632454:773643:6605CFA1 + - C40E:1AA5C0:5862BA:629366:6702CF82 X-Served-By: - - cache-ewr18177-EWR + - cache-den8253-DEN X-Timer: - - S1711656866.287835,VS0,VE1 + - S1728237445.554693,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -242,7 +242,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -344,15 +344,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b8d4f1fd6f8548188e0ebda071b95b67b1d8aa92 + - 6a2a5f14c4ef541b6a081220ac32bda1106a494d X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F X-Served-By: - - cache-ewr18135-EWR + - cache-den8241-DEN X-Timer: - - S1711656866.368544,VS0,VE1 + - S1728237445.584852,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -366,7 +366,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -447,15 +447,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 98568514db070ef5f844d33ba0eb43d4a68ee116 + - a4e2460e826e80fac18557f7b685d59b03b274a4 X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18121-EWR + - cache-den8235-DEN X-Timer: - - S1711656866.456288,VS0,VE1 + - S1728237445.615390,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -469,7 +469,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"ceed674cee48a43076989957b8a4f96d8acba3f52df1d52a3745e28225923aac"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '7' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -533,15 +533,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 247cea7fa9615d2474376bd9e145bd76343a04ff + - c9bcf30385a531ee4d1bc37090474acd54c6e8a9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 4334:3DB40B:628C95:769E36:6605CF9B + - 4D1E:183A6B:5EAFC0:68DD36:6702CF80 X-Served-By: - - cache-ewr18121-EWR + - cache-den8229-DEN X-Timer: - - S1711656867.540710,VS0,VE2 + - S1728237445.643064,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 83be4029f..829ca1044 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '5' 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: - - 69a1b6320a81cb554e1b19db3df2bc480c7fe16b + - eec44992c35d0c1bcc93ea4bb54953e264e848a5 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18159-EWR + - cache-den8236-DEN X-Timer: - - S1711656867.624197,VS0,VE1 + - S1728237445.677380,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -240,15 +240,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c08a2dd0fece680c007d05a7fe38efbfb3251a74 + - fde4aa284d8b865a696082c3c3088732a3491f68 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:4485F5:52C752:6605CF9A + - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F X-Served-By: - - cache-ewr18181-EWR + - cache-den8244-DEN X-Timer: - - S1711656867.719525,VS0,VE1 + - S1728237445.708445,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 2b23ebe2f..d7f187a44 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2138d79ec04507500cd8adb24693a301acc11d65 + - 32ef0ef0017e6f13d6ca33599e6b593a5846093d X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18176-EWR + - cache-den8255-DEN X-Timer: - - S1711656867.812394,VS0,VE1 + - S1728237445.739290,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -240,15 +240,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6739487c3bac66856d54304354321cbcd943911e + - 5a1af62de7644b4a01b11e6941dc1a8a9f2a4965 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:4485F5:52C752:6605CF9A + - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F X-Served-By: - - cache-ewr18165-EWR + - cache-den8265-DEN X-Timer: - - S1711656867.895870,VS0,VE1 + - S1728237445.774010,VS0,VE1 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 27b62dc69..4e5be89af 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:26 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:26 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '4' 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: - - 29febaf61af2dacab6f26e8085a6580fb6021168 + - 2057bbb27f25f9ebe5b48b7f38ff46b8e25e87b9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18175-EWR + - cache-den8259-DEN X-Timer: - - S1711656867.979716,VS0,VE1 + - S1728237445.808572,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:27 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Thu, 28 Mar 2024 20:19:27 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -240,15 +240,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a0e091244690df5aeb355c2e14f3624e91cccd49 + - ce5a9268d562396933441b0ed6806828e76689a5 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:4485F5:52C752:6605CF9A + - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F X-Served-By: - - cache-ewr18126-EWR + - cache-den8276-DEN X-Timer: - - S1711656867.059580,VS0,VE1 + - S1728237445.836566,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 3fd985b05..851760d5d 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:27 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:27 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 744b86ee00a2195fb3623391de6fcb21f422b1ef + - 62c59549acbbb4204006796febffe2a169b38f52 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18158-EWR + - cache-den8278-DEN X-Timer: - - S1711656867.151800,VS0,VE1 + - S1728237445.865981,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:27 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Thu, 28 Mar 2024 20:19:27 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '5' 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: - - 9a2082d0365cf79674735ed9bef70defee613e12 + - 865423373da32bcf613b3780bd1de3f740018696 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:4485F5:52C752:6605CF9A + - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F X-Served-By: - - cache-ewr18164-EWR + - cache-den8255-DEN X-Timer: - - S1711656867.223772,VS0,VE2 + - S1728237445.894673,VS0,VE0 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 0a76a11e8..b171310cf 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:18 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:19:18 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - '0' Strict-Transport-Security: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4249eb49396c8fa85cdaf254a002fdf55ceab2ea + - d59fde1b301d34efd7de22b0fecd0d52badcbc98 X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F X-Served-By: - - cache-ewr18165-EWR + - cache-den8237-DEN X-Timer: - - S1711656859.715693,VS0,VE83 + - S1728237440.110246,VS0,VE134 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:18 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:19:18 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - '0' Strict-Transport-Security: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 529ebda514003d2349b04b5641008dcb7f56e626 + - 3b0998139864e67b7ff27bb08683a8772395e451 X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18157-EWR + - cache-den8255-DEN X-Timer: - - S1711656859.879666,VS0,VE1 + - S1728237440.282284,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 eb0fc60ef..ebafae976 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:27 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:27 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2fda88b99883cbab1faf8540738eeffd2a8c5678 + - 042959b2c638ea915c3114983992e5d09eaba845 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18167-EWR + - cache-den8262-DEN X-Timer: - - S1711656867.307635,VS0,VE1 + - S1728237445.925208,VS0,VE1 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 479a6541d..f0f1a3052 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:27 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:27 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2c15c7ccd13d28aefb7afd4f94e2ed1ef8d94d1b + - ad8e9704563657ae98486057dfabc32cc5bff079 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18177-EWR + - cache-den8272-DEN X-Timer: - - S1711656867.396037,VS0,VE1 + - S1728237445.957959,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:27 GMT + - Sun, 06 Oct 2024 17:57:24 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Thu, 28 Mar 2024 20:19:27 GMT + - Sun, 06 Oct 2024 18:02:24 GMT Source-Age: - - '8' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -240,15 +240,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ba883cd1af0b3415397bb71376bd850e69833e32 + - de2332cc2f63e113c816092c20ae97020a79b6e0 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:4485F5:52C752:6605CF9A + - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F X-Served-By: - - cache-ewr18150-EWR + - cache-den8277-DEN X-Timer: - - S1711656867.475634,VS0,VE1 + - S1728237445.986904,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 5df4ff4e3..d7721f56d 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:27 GMT + - Sun, 06 Oct 2024 17:57:25 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:27 GMT + - Sun, 06 Oct 2024 18:02:25 GMT Source-Age: - '0' Strict-Transport-Security: @@ -76,15 +76,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 44092631c1e0188bbf546d7fbf03483b3db47fb4 + - e3f0c6ef80835b6bb3cacf925c869b438549b779 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18173-EWR + - cache-den8250-DEN X-Timer: - - S1711656868.551642,VS0,VE67 + - S1728237445.019572,VS0,VE150 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 fc1c21d96..fbdf018b7 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:27 GMT + - Sun, 06 Oct 2024 17:57:25 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:27 GMT + - Sun, 06 Oct 2024 18:02:25 GMT Source-Age: - '0' Strict-Transport-Security: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 61e3c7b7f13a1897bd252c9db37eeaa2b856e6c2 + - d6f78db552604bfc562bfad4649e0c4d80ffd5c4 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18174-EWR + - cache-den8270-DEN X-Timer: - - S1711656868.695687,VS0,VE93 + - S1728237445.209386,VS0,VE140 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:27 GMT + - Sun, 06 Oct 2024 17:57:25 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:27 GMT + - Sun, 06 Oct 2024 18:02:25 GMT Source-Age: - '0' Strict-Transport-Security: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0cef101c34db8220fd2be00999ed32ea1caf30cb + - cc87bbad4782793b8be8b7feade0bfb3fdf0db5c X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18167-EWR + - cache-den8246-DEN X-Timer: - - S1711656868.871693,VS0,VE1 + - S1728237445.491451,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 4634279e6..287946ad3 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:28 GMT + - Sun, 06 Oct 2024 17:57:25 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:28 GMT + - Sun, 06 Oct 2024 18:02:25 GMT Source-Age: - '0' Strict-Transport-Security: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4b52427145b81f6a0dfa51bc77501aebe59eedf3 + - 77aa467c2ceba89c95be7347b4191c29c8fd23bc X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18123-EWR + - cache-den8233-DEN X-Timer: - - S1711656868.963751,VS0,VE86 + - S1728237446.533005,VS0,VE124 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:28 GMT + - Sun, 06 Oct 2024 17:57:25 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:28 GMT + - Sun, 06 Oct 2024 18:02:25 GMT Source-Age: - '0' Strict-Transport-Security: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c9ff3d2eb265d6879aac73dc300811cf904e0ed8 + - 92df5948f604e85215d2ddfeb71458795a4df6d3 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18175-EWR + - cache-den8279-DEN X-Timer: - - S1711656868.139800,VS0,VE69 + - S1728237446.693663,VS0,VE122 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:28 GMT + - Sun, 06 Oct 2024 17:57:25 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:28 GMT + - Sun, 06 Oct 2024 18:02:25 GMT Source-Age: - '0' Strict-Transport-Security: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 485a7bdb67df8ebb9de5950326722d391b7e6f96 + - 5f418d4d42780e99aad9b4164178394fc5aa2e02 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18152-EWR + - cache-den8274-DEN X-Timer: - - S1711656868.295988,VS0,VE123 + - S1728237446.845474,VS0,VE126 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:28 GMT + - Sun, 06 Oct 2024 17:57:26 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:28 GMT + - Sun, 06 Oct 2024 18:02:26 GMT Source-Age: - '0' Strict-Transport-Security: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 52ae7bb51edc8283ab1eb0cc3e26a1c039d03cce + - 589dc8adb4a4b42f7d63810a27fd688243e34267 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18140-EWR + - cache-den8252-DEN X-Timer: - - S1711656869.612343,VS0,VE83 + - S1728237446.994695,VS0,VE125 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:28 GMT + - Sun, 06 Oct 2024 17:57:26 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:28 GMT + - Sun, 06 Oct 2024 18:02:26 GMT Source-Age: - '0' Strict-Transport-Security: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 80cedb20919eb3ff6c7320f9cdf3d74ee025798e + - a168655501d4f909c88807a525e3c8ceff6f7443 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18130-EWR + - cache-den8254-DEN X-Timer: - - S1711656869.788403,VS0,VE106 + - S1728237446.147684,VS0,VE134 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:29 GMT + - Sun, 06 Oct 2024 17:57:26 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:29 GMT + - Sun, 06 Oct 2024 18:02:26 GMT Source-Age: - '0' Strict-Transport-Security: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7449d2ad318d2b962974181180ca7d9debdc21c5 + - 03494ae8cb3dd637090aebe5278376946630da43 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18164-EWR + - cache-den8221-DEN X-Timer: - - S1711656869.964432,VS0,VE78 + - S1728237446.313343,VS0,VE147 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:29 GMT + - Sun, 06 Oct 2024 17:57:26 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:29 GMT + - Sun, 06 Oct 2024 18:02:26 GMT Source-Age: - '0' Strict-Transport-Security: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 80d0f3f56de3fa9aca7882e418dfd8e694737a91 + - eaa46e973004b36c481a8dda61c06662b0b021b4 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18150-EWR + - cache-den8263-DEN X-Timer: - - S1711656869.116031,VS0,VE78 + - S1728237447.509733,VS0,VE120 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:29 GMT + - Sun, 06 Oct 2024 17:57:26 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Thu, 28 Mar 2024 20:19:29 GMT + - Sun, 06 Oct 2024 18:02:26 GMT Source-Age: - '0' Strict-Transport-Security: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d120fcd0c91fcd372ee392136761311a08898586 + - d33b8d3fc95b9e66e3745b50fdbb3b05b72a94b5 X-Frame-Options: - deny X-GitHub-Request-Id: - - B964:F537A:5F1D4E:732F65:6605CFA4 + - 2D51:A1DE:5F6E3B:69A130:6702CF81 X-Served-By: - - cache-ewr18164-EWR + - cache-den8228-DEN X-Timer: - - S1711656869.272213,VS0,VE112 + - S1728237447.659866,VS0,VE169 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 21b677b79..4cd3750c7 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:29 GMT + - Sun, 06 Oct 2024 17:57:26 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:29 GMT + - Sun, 06 Oct 2024 18:02:26 GMT Source-Age: - '2' Strict-Transport-Security: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - bf1f2e6557c34f7066c9a0a45bc070c5f18a7ba8 + - 6f70928d46be2a290b52b4be161ca46ff3fda5d8 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18159-EWR + - cache-den8235-DEN X-Timer: - - S1711656869.472430,VS0,VE1 + - S1728237447.876464,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:29 GMT + - Sun, 06 Oct 2024 17:57:26 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:29 GMT + - Sun, 06 Oct 2024 18:02:26 GMT Source-Age: - '2' Strict-Transport-Security: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 322584ab0d3de2c3fa39481f754876cc85d6eac8 + - cc096f15c2f2d49d0ae8565be1ac627a239ae241 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18180-EWR + - cache-den8263-DEN X-Timer: - - S1711656870.560118,VS0,VE3 + - S1728237447.904957,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 cdd13ba72..9b6e43d71 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:29 GMT + - Sun, 06 Oct 2024 17:57:26 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:29 GMT + - Sun, 06 Oct 2024 18:02:26 GMT Source-Age: - '2' Strict-Transport-Security: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 092956bb421cf738c52438c0ec0ec35af2d59b0f + - 78336a95c142a710fa956eb4b0088843d23daf94 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18138-EWR + - cache-den8278-DEN X-Timer: - - S1711656870.650207,VS0,VE1 + - S1728237447.937078,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:29 GMT + - Sun, 06 Oct 2024 17:57:26 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:29 GMT + - Sun, 06 Oct 2024 18:02:26 GMT Source-Age: - '2' Strict-Transport-Security: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2fcd4e1d9930b0dfc923ece3300636ab5e831a60 + - 8dc6001c23aec84733a1ec1b7b42e9bec2f792b9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18172-EWR + - cache-den8275-DEN X-Timer: - - S1711656870.732343,VS0,VE1 + - S1728237447.965849,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -233,7 +233,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:29 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"6ae857b8e1e2f74d6b996d5f7111e822099d2620956150db4b96325f59fccc52"' Expires: - - Thu, 28 Mar 2024 20:19:29 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - '0' Strict-Transport-Security: @@ -294,15 +294,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 024068d328394be38ab3895775b6b2471a00eb37 + - 9815d215157e4397a7f861c61322bf89d517c0c3 X-Frame-Options: - deny X-GitHub-Request-Id: - - 8FDA:74CA:6B4529:7F5699:6605CFA5 + - 72A2:33B9B9:5BAB32:65DE22:6702CF86 X-Served-By: - - cache-ewr18173-EWR + - cache-den8272-DEN X-Timer: - - S1711656870.817140,VS0,VE78 + - S1728237447.992492,VS0,VE150 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 6c2f7f2e1..4a0840717 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:29 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:29 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - '2' Strict-Transport-Security: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - cf05dc42b4add9ec8e861e62651b4e300da43128 + - 9b5aa6eae48aa065d6462e5edaa4f9f23a2ae2db X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18178-EWR + - cache-den8242-DEN X-Timer: - - S1711656870.976584,VS0,VE1 + - S1728237447.187173,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:30 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:30 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '2' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 064a3d7ee0f37437b80e93e12d21870a07425f80 + - b27c3b7f622ca7bc9b0a790676902d6a7892554d X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18121-EWR + - cache-den8235-DEN X-Timer: - - S1711656870.057066,VS0,VE1 + - S1728237447.219902,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:30 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:30 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '2' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 07cdcc7c2462f90f392238c38b2e5517df27152b + - 09605012c8d7028c6d673b48507a6ed7b9a69f6d X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18158-EWR + - cache-den8231-DEN X-Timer: - - S1711656870.132767,VS0,VE1 + - S1728237447.250161,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:30 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:30 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '2' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - be4e3f353646027296888d9afd274c09eeccfa65 + - 5e0554bc66d5f5f8ad13051cc2f78822ef194422 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18169-EWR + - cache-den8240-DEN X-Timer: - - S1711656870.212110,VS0,VE1 + - S1728237447.279722,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:30 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:30 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - '1' Strict-Transport-Security: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 36aee2ef01c8d61ffb21fe9b5cbf3ed05dba26b6 + - 6f33b73a539bd4917af2395aeb2f3fca088960f6 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18161-EWR + - cache-den8252-DEN X-Timer: - - S1711656870.300956,VS0,VE1 + - S1728237447.315047,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:30 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:30 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - '1' Strict-Transport-Security: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 58e32998777839b997aebe9f5d17a24374671f66 + - 1bcfbeb5c784ef429b3e6fb86e56ee84296fecf7 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18148-EWR + - cache-den8259-DEN X-Timer: - - S1711656870.396455,VS0,VE1 + - S1728237447.346453,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:30 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:30 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - '1' Strict-Transport-Security: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1bad9c5e1c6f743ba873fe4c2717ab5a61138a30 + - c4ca3fb786acf353591e2aec4f4c329300bb3399 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18154-EWR + - cache-den8258-DEN X-Timer: - - S1711656870.476458,VS0,VE1 + - S1728237447.378171,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:30 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"9bde8b6875408a186b283e6e3dd3edb01bc2b938e55a0491b0b7f4e06f0faccb"' Expires: - - Thu, 28 Mar 2024 20:19:30 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - '0' Strict-Transport-Security: @@ -641,15 +641,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - bfa6956183f77f38438a7fea4b1eab62c564f624 + - d7e303538a7c31ba19d4137a2bc301890fef8530 X-Frame-Options: - deny X-GitHub-Request-Id: - - C6E8:C1794:6D3799:8149D2:6605CFA6 + - 1BD9:3EDAE6:60035E:6A38E7:6702CF87 X-Served-By: - - cache-ewr18122-EWR + - cache-den8259-DEN X-Timer: - - S1711656871.556295,VS0,VE90 + - S1728237447.405986,VS0,VE133 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 283f049d5..307ec7779 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:30 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:30 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7b6b3c21330c30110e84f1dc9ae64759707051bd + - 0c3d3f0a815c3bc88c4edc78b08b69563237a576 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18175-EWR + - cache-den8240-DEN X-Timer: - - S1711656871.732644,VS0,VE1 + - S1728237448.583007,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:30 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:30 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b20e191eb65e0d7d8e7ed30e148fb9d962923d56 + - 44691cc84ac879bcbb6198ec77828058da56c023 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18137-EWR + - cache-den8229-DEN X-Timer: - - S1711656871.869081,VS0,VE1 + - S1728237448.620627,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 4970b56ad..8de5f7c38 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:30 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:30 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f57c7c7cac0b0fd524e8c715104c7a9d442b4814 + - 249ff84133ca245eb7021b225b47bc9f6ae35bf6 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18126-EWR + - cache-den8256-DEN X-Timer: - - S1711656871.954219,VS0,VE1 + - S1728237448.657401,VS0,VE13 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:31 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:31 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1271b55fdeccb22aa43be07131f746ddf1e62f8d + - 41f57699bbb3cabd61c01d7f43c664e6c748a9ef X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18129-EWR + - cache-den8272-DEN X-Timer: - - S1711656871.053093,VS0,VE1 + - S1728237448.700441,VS0,VE17 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:31 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:31 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 791c947cf2f23302374706b3a12b439f2ef6cd04 + - c819254a7ae1c6a3cc4aeba2f139f212fd711206 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18149-EWR + - cache-den8264-DEN X-Timer: - - S1711656871.136427,VS0,VE1 + - S1728237448.747057,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:31 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:31 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 79e651199e7f4127ce0faf8fc1b84a22aaff656b + - b0afde4f2abd6ac247a5294a10d2de569f7aa724 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18174-EWR + - cache-den8254-DEN X-Timer: - - S1711656871.208871,VS0,VE1 + - S1728237448.774636,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:31 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:31 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - '2' Strict-Transport-Security: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f9e2cf937b0ce8dfd4a2e53b3b47108a37cd63ea + - ffb455a6b548864806353bbec4a1d9b461bbf34f X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18133-EWR + - cache-den8274-DEN X-Timer: - - S1711656871.284558,VS0,VE1 + - S1728237448.805852,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:31 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:31 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '2' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 575d5e1b9094dac155022513da1ce79a14b5f1ac + - 89c62cd62e5f2c5f983ed572beca80cb4c2ab4be X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18178-EWR + - cache-den8230-DEN X-Timer: - - S1711656871.360501,VS0,VE1 + - S1728237448.835332,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:31 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:31 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '2' + - '1' 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: - - 4c8358b404810874c60c7f04d6ab7ba1cd9d70f6 + - e4a5168c5e13fab1cbc01910edbec3e4168c1b7a X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18154-EWR + - cache-den8253-DEN X-Timer: - - S1711656871.428540,VS0,VE0 + - S1728237448.865486,VS0,VE3 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:31 GMT + - Sun, 06 Oct 2024 17:57:27 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Thu, 28 Mar 2024 20:19:31 GMT + - Sun, 06 Oct 2024 18:02:27 GMT Source-Age: - - '2' + - '1' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7a5e955dfe9b37f4823bae28837a3dbedfd3fbd3 + - 5646dd649ac714ee561c105304f91f00f7d018b3 X-Frame-Options: - deny X-GitHub-Request-Id: - - B964:F537A:5F1D4E:732F65:6605CFA4 + - 2D51:A1DE:5F6E3B:69A130:6702CF81 X-Served-By: - - cache-ewr18138-EWR + - cache-den8279-DEN X-Timer: - - S1711656871.496683,VS0,VE1 + - S1728237448.894238,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:31 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"90408dbc0c6ce835205fcdbeeab881774f06517052d7c3dbcf6ba7c3ccced7eb"' Expires: - - Thu, 28 Mar 2024 20:19:31 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - '0' Strict-Transport-Security: @@ -734,15 +734,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - fc49fb4d6a74ebfffccf3547b83d97e006dc2096 + - c8e0af3072eb57308fd63a80c9dc5a299753a47e X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB466:4A2820:6605CFA7 + - 8E2F:17ACE4:5F69A9:699BE3:6702CF85 X-Served-By: - - cache-ewr18165-EWR + - cache-den8225-DEN X-Timer: - - S1711656872.568662,VS0,VE95 + - S1728237448.928837,VS0,VE131 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 883bd05a3..4f3a7b1d2 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:19 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:19 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - '0' Strict-Transport-Security: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 558443833613655a4d616979ee97eed345f06bb8 + - a0d8c0e0b4dd9778d15d2b34680e2e517d0a20b8 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18123-EWR + - cache-den8264-DEN X-Timer: - - S1711656859.956935,VS0,VE72 + - S1728237440.324535,VS0,VE131 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:19 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Thu, 28 Mar 2024 20:19:19 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - '0' Strict-Transport-Security: @@ -240,15 +240,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 345583c1a17da2ec3a699f5a0f79f0c80fb99030 + - ef678bfe787270fdb56fac4562254776cc5f8239 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:4485F5:52C752:6605CF9A + - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F X-Served-By: - - cache-ewr18149-EWR + - cache-den8251-DEN X-Timer: - - S1711656859.103753,VS0,VE80 + - S1728237440.498113,VS0,VE121 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 8cbca8733..a2c44db99 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:31 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:31 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ad6af95f3de3f846c6274be8dd080bab02c845e4 + - e2848b51672274eb5219f30ead5a34513b5488ec X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18156-EWR + - cache-den8239-DEN X-Timer: - - S1711656872.756526,VS0,VE1 + - S1728237448.101616,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:31 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:31 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8c366a63f83265b1ca598f844ff9828f38a48f33 + - 9760bf3c5a2c0f9ef47c24bb7d213220b6d1efe5 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18150-EWR + - cache-den8252-DEN X-Timer: - - S1711656872.840633,VS0,VE1 + - S1728237448.134146,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 ed0812743..9166b13fa 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:31 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:31 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 48fd56d46a55ed8c297a074d60fa97bf7ec5a9ed + - 4efed848c0ffed4d3033be4a1c0479b52cab6d00 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18174-EWR + - cache-den8254-DEN X-Timer: - - S1711656872.940477,VS0,VE1 + - S1728237448.168071,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - dfcceeb400bcfee39738d67a9760836c9ce16e73 + - 81e17b3c1af64352ab3091216f3a59a4e59c9e1f X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18141-EWR + - cache-den8248-DEN X-Timer: - - S1711656872.056999,VS0,VE1 + - S1728237448.197276,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 254d835858909e2544d14be08e6761b76ce7a02d + - f2519ead1b9eaf5e936b2a5b60eb2f38a21f8306 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18170-EWR + - cache-den8258-DEN X-Timer: - - S1711656872.144485,VS0,VE1 + - S1728237448.227381,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0ee570004018c3dd521c47e22c90fe535f2d1aa9 + - 44fd6e5f4116c3a7cf9deb1cbf0e8886a367815e X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18170-EWR + - cache-den8281-DEN X-Timer: - - S1711656872.244521,VS0,VE1 + - S1728237448.254528,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3ce8974d39686ded04ad89b627a6559b38a579c6 + - 5dac7781e203bf4146411209c18e1764a59e09e6 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18164-EWR + - cache-den8227-DEN X-Timer: - - S1711656872.328651,VS0,VE1 + - S1728237448.284426,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - cf55a38984adc4bd99d0930ced818fd1297abf7c + - 4d8697ad5de29d976b60b8b7e3b67b3fbfaaf23d X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18173-EWR + - cache-den8246-DEN X-Timer: - - S1711656872.420279,VS0,VE1 + - S1728237448.317704,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '3' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a35766963bd9e7e3b309dd0dd8aea26bcaa67d52 + - dd59023ac6f89b4a6ceb3154d74ea23e1a01b903 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18175-EWR + - cache-den8271-DEN X-Timer: - - S1711656873.501906,VS0,VE1 + - S1728237448.344960,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 34ab10238..333313f36 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '5' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 507bb66e838a0260e7c2f40815609518d5fb0b81 + - 3ae1fedec16ad9135297443beb43242af8a5efbe X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18155-EWR + - cache-den8267-DEN X-Timer: - - S1711656873.572642,VS0,VE1 + - S1728237448.385126,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6c170693d7de45bca9070d90e3acf86760586b52 + - 6903ea7c5cc0b4bc3296432cf352aba8503ed19d X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18138-EWR + - cache-den8223-DEN X-Timer: - - S1711656873.656722,VS0,VE1 + - S1728237448.417410,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8ecb5dc05b78f78c1b7e7f6af78d063a98f00ca5 + - 527d982f98da8f318634201b170f60551a167029 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18179-EWR + - cache-den8241-DEN X-Timer: - - S1711656873.736775,VS0,VE1 + - S1728237448.443274,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 145d633b264b368aae7326e7e9513430b7cd2956 + - 93bea995bba91aabc0330e458d5b048f94b202c1 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18124-EWR + - cache-den8274-DEN X-Timer: - - S1711656873.816640,VS0,VE4 + - S1728237448.470947,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ec117e0841ac07dc3e6e2942dd963fa3095e3aaf + - 6babfc3a2928266e559bfd7219ef0805016c9e48 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18144-EWR + - cache-den8272-DEN X-Timer: - - S1711656873.892570,VS0,VE1 + - S1728237449.502596,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:32 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:32 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - bee03c690392a92ad6b10b2523944b4287de51cc + - b8c8c1695b3de8f5dfade1a188f8e85ffc962dfd X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18171-EWR + - cache-den8252-DEN X-Timer: - - S1711656873.980382,VS0,VE1 + - S1728237449.530186,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:33 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:33 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e0073a8077530a6a64b47658285667f0624e631d + - 3d1994c1288e3e0fa479182971d01ede06753d10 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18146-EWR + - cache-den8239-DEN X-Timer: - - S1711656873.068838,VS0,VE1 + - S1728237449.561608,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:33 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Thu, 28 Mar 2024 20:19:33 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '4' + - '2' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 06f3fa413ae3e901d1383aea916bdcf0beacdbba + - 70b939dc87a1d023250f56e2f0440f1f039beec8 X-Frame-Options: - deny X-GitHub-Request-Id: - - B964:F537A:5F1D4E:732F65:6605CFA4 + - 2D51:A1DE:5F6E3B:69A130:6702CF81 X-Served-By: - - cache-ewr18169-EWR + - cache-den8253-DEN X-Timer: - - S1711656873.144336,VS0,VE1 + - S1728237449.589868,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:33 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Thu, 28 Mar 2024 20:19:33 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - '0' Strict-Transport-Security: @@ -742,15 +742,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0f3d7f93f2b16bbed1744cb08d6866d82f60542a + - 38f24b1c1d4e8917676688a8c79e5723ccd476f5 X-Frame-Options: - deny X-GitHub-Request-Id: - - 21FC:5061:615A5C:7530C4:6605CFA9 + - 5920:1CA6FD:6230EC:6C6434:6702CF88 X-Served-By: - - cache-ewr18152-EWR + - cache-den8259-DEN X-Timer: - - S1711656873.225289,VS0,VE71 + - S1728237449.620449,VS0,VE117 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 21ae3f56f..466095fa0 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:33 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:33 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '6' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -72,19 +72,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7823dbcf0e54c35aec1bd7f2dedfc3a3189a96f9 + - 89baf88d180a4c878d6c013a18653305ae8dca40 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18174-EWR + - cache-den8229-DEN X-Timer: - - S1711656873.383586,VS0,VE1 + - S1728237449.781089,VS0,VE0 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 69b686d73..f30d5578d 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:33 GMT + - Sun, 06 Oct 2024 17:57:28 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:33 GMT + - Sun, 06 Oct 2024 18:02:28 GMT Source-Age: - - '5' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d3949d8d03adbb8fd85fa7f4bfcf9391ae966129 + - 6ae22d426011f1877e4b5bcf5c4f6ec70f786d09 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18165-EWR + - cache-den8252-DEN X-Timer: - - S1711656873.463679,VS0,VE2 + - S1728237449.817232,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:33 GMT + - Sun, 06 Oct 2024 17:57:29 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:33 GMT + - Sun, 06 Oct 2024 18:02:29 GMT Source-Age: - - '5' + - '4' 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: - - 609bd491fa514304c89c36f7a7dfff5b09e1c155 + - fa430519eceaf35fadb939aae1b61aeb8bbb8974 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18124-EWR + - cache-den8248-DEN X-Timer: - - S1711656874.543732,VS0,VE1 + - S1728237450.856891,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:33 GMT + - Sun, 06 Oct 2024 17:57:29 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:33 GMT + - Sun, 06 Oct 2024 18:02:29 GMT Source-Age: - - '5' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e5f36e70f5a0e51d64b199a41972e5a0b1b8d0c1 + - 106168fa074a56e88d147997cd0cdd6a49485a3b X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18138-EWR + - cache-den8268-DEN X-Timer: - - S1711656874.611755,VS0,VE1 + - S1728237450.891160,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:33 GMT + - Sun, 06 Oct 2024 17:57:29 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:33 GMT + - Sun, 06 Oct 2024 18:02:29 GMT Source-Age: - - '5' + - '4' 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: - - d17005cbbb147ca1491414881bebab7f58c9e691 + - 9a8eb2803b2bbcecccf27607604b6b661bed615c X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18170-EWR + - cache-den8276-DEN X-Timer: - - S1711656874.679788,VS0,VE0 + - S1728237450.925067,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:33 GMT + - Sun, 06 Oct 2024 17:57:29 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:33 GMT + - Sun, 06 Oct 2024 18:02:29 GMT Source-Age: - - '5' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2b737c98e2047acfa4b5850d34a41a50f0609388 + - 5fe2a3a3bd64567297ab111dcd36684a9e631459 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18173-EWR + - cache-den8230-DEN X-Timer: - - S1711656874.775926,VS0,VE1 + - S1728237450.955492,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:33 GMT + - Sun, 06 Oct 2024 17:57:29 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:33 GMT + - Sun, 06 Oct 2024 18:02:29 GMT Source-Age: - - '5' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b65f73c699a35a18d60e0ea8e542db435f4c5f79 + - f1787b298defdd87255d80423b98acf005f74801 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18138-EWR + - cache-den8221-DEN X-Timer: - - S1711656874.844632,VS0,VE1 + - S1728237450.985120,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:33 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:33 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '5' + - '3' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 333f88f5542509f221d62ff6bf80c03d48ba0ecf + - 132b47236ddb9fab3d401b7e747e229dfa987960 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18165-EWR + - cache-den8277-DEN X-Timer: - - S1711656874.919573,VS0,VE1 + - S1728237450.015887,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 c3a4057f7..870aaef8b 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '6' + - '4' 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: - - 90c0a338bae4ce6c035fdb49c5105c2b7e443e52 + - cb59e4fe69daeb6da196277ee65711c47ee30106 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18165-EWR + - cache-den8251-DEN X-Timer: - - S1711656874.011749,VS0,VE0 + - S1728237450.061819,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7c04527275fe90bb9f6e91b41bf481b96449afde + - 7b8eeeb17b066a0a4fa09028ce8f46b3af1b3219 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18140-EWR + - cache-den8258-DEN X-Timer: - - S1711656874.079919,VS0,VE1 + - S1728237450.092152,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5f2f0491ba6cdef9ac5231df6fb9517c86c86465 + - a147603c6b59d64f18c339b07adc12c88afd7802 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18171-EWR + - cache-den8259-DEN X-Timer: - - S1711656874.141325,VS0,VE2 + - S1728237450.118282,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 967fbf3bfeb2cb603502f71506753c4c5f825973 + - 690307a3260569df45870da70bc6264bba615e4d X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18134-EWR + - cache-den8245-DEN X-Timer: - - S1711656874.224914,VS0,VE1 + - S1728237450.143213,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '5' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 49a83122975c1861ba7918fc1e1f35e4300bbc15 + - 406ac075f97bd25b89c9179f10d3b4e6fb47e65f X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18156-EWR + - cache-den8221-DEN X-Timer: - - S1711656874.304368,VS0,VE1 + - S1728237450.170044,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '5' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2d4de3311ec7791fca7aecc3e9ec6182bbb9bf28 + - 72a91794a0828a368542862661d321a54b904db6 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18135-EWR + - cache-den8270-DEN X-Timer: - - S1711656874.388094,VS0,VE1 + - S1728237450.198230,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '5' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f5021241325a3f4ed3cbef406396f3fb8c6d4275 + - dfbfb3b55f9f0bbe47d16032b774be532b11f628 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18123-EWR + - cache-den8276-DEN X-Timer: - - S1711656874.467747,VS0,VE1 + - S1728237450.250627,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 ea39d5c83..9ee3e462f 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '7' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4c1d0dd81510d9e4a14c5ad9b16a97e9a838a3bc + - 12694c9a83e8881ad120c8e335a1fbb171e59252 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18164-EWR + - cache-den8250-DEN X-Timer: - - S1711656875.559851,VS0,VE1 + - S1728237450.292450,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '6' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 04212b05a4a90c5090a038c084ba87fe1c4138ed + - a2454f1a8284528f169d528527a076fbebb96e90 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18153-EWR + - cache-den8261-DEN X-Timer: - - S1711656875.643436,VS0,VE1 + - S1728237450.325770,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 853b0a6cd2ec0c8b275e93da3cb65a145bedcb19 + - b087f42121ba08c07f95b87951a087c4256dcfe0 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18183-EWR + - cache-den8279-DEN X-Timer: - - S1711656875.727849,VS0,VE1 + - S1728237450.353329,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8b40ef37b472646ea7f624646c80d6f6ea88087f + - e8a78828e18ad6737c45cf3deea3c5e5bda49cad X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18182-EWR + - cache-den8282-DEN X-Timer: - - S1711656875.810777,VS0,VE1 + - S1728237450.382864,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '6' + - '4' 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: - - 6f2b42cc344a177e679a058dd42d7a7688a4d250 + - 2fbbdd65bfcc07bee77e7c538225831d98657a69 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18166-EWR + - cache-den8230-DEN X-Timer: - - S1711656875.892598,VS0,VE1 + - S1728237450.413295,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:34 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:34 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 634088017d90971bb4aa6a3345ad34c5fa997b10 + - 3770c2b4f57fd2bc5ec64891e6fc13e232852264 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18164-EWR + - cache-den8234-DEN X-Timer: - - S1711656875.972602,VS0,VE0 + - S1728237450.438971,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4cd3b35059a0f5fade9997569b77d04d0489b4e9 + - 843fb6f6a4f4f6f7b40d905ac642e87b6b406c57 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18172-EWR + - cache-den8263-DEN X-Timer: - - S1711656875.047926,VS0,VE1 + - S1728237450.466920,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 251ed5708..78e1caf1d 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '7' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 21b662cdb876ea43cbcc67416614a03cede5c862 + - c0141a864d011b07fb15aa7e63ad74490ae6f1ce X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18128-EWR + - cache-den8231-DEN X-Timer: - - S1711656875.131803,VS0,VE1 + - S1728237451.508464,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '8' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a341a6d1ca536885a60ad440fef1a9df0c977cbc + - eeeb3c877643dbc3bc22359849be614bd76c3c2a X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18135-EWR + - cache-den8262-DEN X-Timer: - - S1711656875.201359,VS0,VE1 + - S1728237451.537424,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 fe3914c8a..048641ea6 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '7' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b303b5784e9bb0c186c218ac0be66441607bb489 + - 517c2c8dc7b14ab4f438101f7ebf6cfaaed77cff X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18144-EWR + - cache-den8269-DEN X-Timer: - - S1711656875.271727,VS0,VE1 + - S1728237451.568442,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '8' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 726522077342b5f5f5b86765f6f8d83ab0440894 + - 6922dac9a52bcb0fc78d09ae5345488e04a9332a X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18138-EWR + - cache-den8227-DEN X-Timer: - - S1711656875.344224,VS0,VE1 + - S1728237451.597638,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 2f35c30eb..9553306d4 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '7' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e2775c55f849a3ba73f47bc508fc6f4897bea3c5 + - e70223a507be3110d9ccb310d25b0bd1440fc848 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18137-EWR + - cache-den8265-DEN X-Timer: - - S1711656875.424463,VS0,VE1 + - S1728237451.628835,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '7' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3862620c6b65c4e102f8d0c25388c69f75412d6c + - 6f722fad5547906f28bd492e36582bd48451e94c X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18167-EWR + - cache-den8276-DEN X-Timer: - - S1711656876.500029,VS0,VE1 + - S1728237451.666535,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '7' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2b9dd91e752c05a76eb8fd5abd179de001ba46bd + - 44a15c725b0c2e7bc2b15e71f441530dbec8d767 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18167-EWR + - cache-den8239-DEN X-Timer: - - S1711656876.567929,VS0,VE1 + - S1728237451.693251,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '7' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - bd0e3263d44c3c09ce26833545c2ede23e27550e + - cfff113b42a856bc723b2565b760674b272697b0 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18150-EWR + - cache-den8280-DEN X-Timer: - - S1711656876.635618,VS0,VE1 + - S1728237451.717028,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '7' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 04585eefd85101cb8d22ca1e60f13eb59c20856a + - 906f9f060f46c0e829289e8bc6e45afe403445b6 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18127-EWR + - cache-den8275-DEN X-Timer: - - S1711656876.704452,VS0,VE1 + - S1728237451.742738,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '7' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f1630c9f6c4cec8bb750f554404aa953f8e600c4 + - c925c7a93d48d2a195309955c23eb9d02352c950 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18144-EWR + - cache-den8263-DEN X-Timer: - - S1711656876.771839,VS0,VE1 + - S1728237451.771353,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '7' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 658da71aa1806259a34e7db9ad3b1d519e8776bf + - dc4180fed2b773cf4df47d756e879b0e796d7506 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18134-EWR + - cache-den8223-DEN X-Timer: - - S1711656876.844643,VS0,VE1 + - S1728237451.802513,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 a0beed653..d6ef18f64 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:19 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:19:19 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - '0' Strict-Transport-Security: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 84815dacade051751b418e55550bd8c229e5c015 + - dd3d5c0be7896175938229cf9f722125a9f9619d X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F X-Served-By: - - cache-ewr18146-EWR + - cache-den8248-DEN X-Timer: - - S1711656859.260401,VS0,VE1 + - S1728237441.660992,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:19 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:19:19 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - '1' Strict-Transport-Security: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3b9e7148d6e73220942c96764d09cf30287581e8 + - 20c17dfbcd59cd52af723aca9489f836c66fa5ac X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18167-EWR + - cache-den8230-DEN X-Timer: - - S1711656859.340521,VS0,VE1 + - S1728237441.691462,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 7e1bb38c9..affa96f91 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '8' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '7' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 01db231605501fda793e9f265331a913647365a9 + - 8a554567b041d646b1d0b21678cc13f61ea00797 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18180-EWR + - cache-den8235-DEN X-Timer: - - S1711656876.920286,VS0,VE1 + - S1728237451.841572,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:35 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:35 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '8' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -211,15 +211,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 00f8525782b881400957165223287e3a17793dd2 + - b96c9e6748f5c9a82c335ff0cfb547b34edb28b8 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18154-EWR + - cache-den8232-DEN X-Timer: - - S1711656876.991851,VS0,VE4 + - S1728237451.869213,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 8f9181820..2bfbcb22e 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:36 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:36 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '8' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1678ad0e5e43be6846d8d149233855c60707526b + - afb2a3330467dedf9618177913c830f7225dd790 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18136-EWR + - cache-den8220-DEN X-Timer: - - S1711656876.080627,VS0,VE1 + - S1728237451.900381,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:36 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:36 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '8' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -188,19 +188,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '8' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e40134161ca6603c7d5b2ccef42b374ce46ec2d0 + - 99c4fd3c0fb2742db3c053229e07eaf315327861 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18171-EWR + - cache-den8277-DEN X-Timer: - - S1711656876.167815,VS0,VE1 + - S1728237451.929923,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:36 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:36 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '8' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -265,19 +265,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '9' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1acf1fd48d80725ff865d1de9ccb1d62c51caeee + - 88d1f5ba66bcf16baa1e76794db2ab472e13fcc7 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18153-EWR + - cache-den8231-DEN X-Timer: - - S1711656876.248505,VS0,VE0 + - S1728237451.953693,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:36 GMT + - Sun, 06 Oct 2024 17:57:30 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:36 GMT + - Sun, 06 Oct 2024 18:02:30 GMT Source-Age: - - '8' + - '5' 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: - - 9934f59dccae44f94440e27d7f2125d34c5d5768 + - fcb08d6e5ecf21651c60ae4d19a8cddce1c7c711 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18145-EWR + - cache-den8280-DEN X-Timer: - - S1711656876.324764,VS0,VE1 + - S1728237451.977057,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:36 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:36 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '8' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 80f6dd90f157b532b84bd9dca4cafec2d4e4e130 + - 9b1ddbb7462fa1a66520f258945a17f34647664d X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18163-EWR + - cache-den8235-DEN X-Timer: - - S1711656876.403615,VS0,VE1 + - S1728237451.000273,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:36 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:36 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '7' + - '4' 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: - - 95a2f8c8b494058213b70bebfe5e4b28f121e201 + - 04c3eeb21d2ff9cb3d5c127e52afbce46d02b351 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18123-EWR + - cache-den8230-DEN X-Timer: - - S1711656876.479723,VS0,VE1 + - S1728237451.024611,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:36 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:36 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '7' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ab9990880bfff951e43e88afe6f2d08a9f440f8f + - 882400afd838268b3a674e0a0e5f8e607bad5237 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18152-EWR + - cache-den8273-DEN X-Timer: - - S1711656877.563904,VS0,VE1 + - S1728237451.047194,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:36 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"46c09f290da4303780880924f1569b2cb0b979a2d363a4446e2b8b7cc494844b"' Expires: - - Thu, 28 Mar 2024 20:19:36 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - '0' Strict-Transport-Security: @@ -672,15 +672,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b84e2649b507567d3c3c9487fa2fb6016177b7f7 + - 28b4a8f4c549e79002df6a40bab2c728d504aa97 X-Frame-Options: - deny X-GitHub-Request-Id: - - F58A:35E656:849A:9390:6605CFAB + - 5920:1CA6FD:6232C9:6C6639:6702CF8A X-Served-By: - - cache-ewr18157-EWR + - cache-den8242-DEN X-Timer: - - S1711656877.644060,VS0,VE98 + - S1728237451.072337,VS0,VE109 X-XSS-Protection: - 1; mode=block status: @@ -694,7 +694,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:36 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"3ad87031bb638da9b48582cbf730c047e1075960364c8fc992381ddf5467f296"' Expires: - - Thu, 28 Mar 2024 20:19:36 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - '0' Strict-Transport-Security: @@ -754,15 +754,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b9267a671be646425bd5a9435e434572e99bc219 + - 45125d3b465ff7c40d6b6d8e78f4b74ef1d00687 X-Frame-Options: - deny X-GitHub-Request-Id: - - 620C:106CA3:AD9A:BD89:6605CFAC + - EA2E:1CA6FD:6232F5:6C6663:6702CF8A X-Served-By: - - cache-ewr18128-EWR + - cache-den8282-DEN X-Timer: - - S1711656877.827779,VS0,VE135 + - S1728237451.218161,VS0,VE154 X-XSS-Protection: - 1; mode=block status: @@ -776,7 +776,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:37 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:37 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '9' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -889,15 +889,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7c958aa076da5497fc1b885687ec62f403f73104 + - b1ff8d953ac6c87db285335d5fee6d9748e3f438 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18151-EWR + - cache-den8271-DEN X-Timer: - - S1711656877.116349,VS0,VE1 + - S1728237451.408917,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -911,7 +911,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:37 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:37 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '10' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -980,15 +980,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0368b84e88ea645d4155a5f47f9867e2a12abf1e + - 6cc791a72060c17bfbe506c921de417574d33977 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18151-EWR + - cache-den8250-DEN X-Timer: - - S1711656877.204113,VS0,VE1 + - S1728237451.447153,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 0073557da..2fa9469a9 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:37 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:37 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '9' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4c337428c879bcc12f034d5dcbbbee7aab1d2ebc + - 0c03ecd8e994f1f1ce7295c37a97080cc4814318 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18165-EWR + - cache-den8241-DEN X-Timer: - - S1711656877.287846,VS0,VE0 + - S1728237451.479802,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:37 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:37 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '9' + - '6' 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: - - 801f1707f71d84c4ba33d79ede9e2e909c4de9e7 + - 6fceb0f37c83b084b84cf5e8c394ba9d2dfb03c9 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18162-EWR + - cache-den8223-DEN X-Timer: - - S1711656877.364602,VS0,VE2 + - S1728237452.508814,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:37 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:37 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '9' + - '6' 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: - - 40a1b0ab5ee30bbb6a402c367c91311ee3cee614 + - 45cb8cc51363060674a7be6ac26c6b05f0a89990 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18179-EWR + - cache-den8265-DEN X-Timer: - - S1711656877.440461,VS0,VE0 + - S1728237452.531547,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:37 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:37 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '9' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 64a3211c7fd20d6deec79ad3907d0ea72464d26e + - 3bd048aff1f6c6adafee8fd881148c0359e22f69 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18149-EWR + - cache-den8269-DEN X-Timer: - - S1711656878.519496,VS0,VE1 + - S1728237452.563301,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:37 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:37 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '9' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 78d39dc6282fdb5a436163c00abf232d798a8f3b + - 47a0733d47f54f04267bb527d92787f88c1e4713 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18131-EWR + - cache-den8243-DEN X-Timer: - - S1711656878.596630,VS0,VE2 + - S1728237452.614200,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:37 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:37 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '9' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7c512ebe8f39591248217c407ec453c86dcd4c4b + - 9c310eb467a6a41c23bb318344656d599a18d244 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18141-EWR + - cache-den8262-DEN X-Timer: - - S1711656878.675844,VS0,VE1 + - S1728237452.641132,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:37 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:37 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '8' + - '5' 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: - - 183919a9fee59120f22a7cc3d3f5f4636c82b4e8 + - 21e0702e17e2cac2bc2748f8e27285fa0d0c0acc X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18175-EWR + - cache-den8280-DEN X-Timer: - - S1711656878.767500,VS0,VE0 + - S1728237452.756291,VS0,VE1 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 80d1d8062..62a170fa3 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:37 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:37 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '10' + - '6' 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: - - e52fb3f701107baf17cda4bfb5df84d16b47bb0c + - 24fb915756836a36936903f1e41dbd93c608c1f7 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18126-EWR + - cache-den8278-DEN X-Timer: - - S1711656878.847685,VS0,VE0 + - S1728237452.799551,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:37 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:37 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '10' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - def984ebb179db50bc17a6d4e295a1514655f59b + - e2fd660ca179893a6d5d9b521a7b6e1447caadc5 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18155-EWR + - cache-den8255-DEN X-Timer: - - S1711656878.931974,VS0,VE1 + - S1728237452.832174,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '10' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ade99f856a8f7fb4aed3ab092eebf2be29eef676 + - 5f2724d6525ce2431fc8bb79c498c06de6f3b954 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18121-EWR + - cache-den8236-DEN X-Timer: - - S1711656878.023481,VS0,VE1 + - S1728237452.859509,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '9' + - '6' 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: - - 59c766b4c7ad99e9c5703703884052d2038ac7af + - 652612e12b0ff2f4e13d11a6b639f09626e6162f X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18125-EWR + - cache-den8254-DEN X-Timer: - - S1711656878.099790,VS0,VE1 + - S1728237452.889010,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '9' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e53415ae276d50753b682b6ff0c39fabf09cc00c + - d09ea1780860658cb63cf56d64fbd5712045f056 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18180-EWR + - cache-den8232-DEN X-Timer: - - S1711656878.187987,VS0,VE1 + - S1728237452.918059,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '9' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f4f90806504452209d55fd50df53a85fcbe1391d + - 876006787555cbf30f9f1d61ac93547f7226885e X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18181-EWR + - cache-den8242-DEN X-Timer: - - S1711656878.267554,VS0,VE1 + - S1728237452.946897,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:31 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:31 GMT Source-Age: - - '9' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e5f90c61b1377e68229234077d3f78630dc8e3b6 + - 537c29129a31a164d4beea7cb1c26cd883202c0d X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18130-EWR + - cache-den8220-DEN X-Timer: - - S1711656878.344091,VS0,VE5 + - S1728237452.975674,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 eae756cb2..a07b88505 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '10' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 38e0735bc46e83283f3164c00fafe4ceb4540a77 + - 04647afb7ff524831a849757f369ae976d11c2ca X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18127-EWR + - cache-den8266-DEN X-Timer: - - S1711656878.452342,VS0,VE1 + - S1728237452.010668,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '10' + - '6' 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: - - cb84cb6ac977bf4b242d7834a3e2a9478872aaef + - 9fcd59a2fed87cb2ca46ca8e80ad94ab04ea32a9 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18122-EWR + - cache-den8235-DEN X-Timer: - - S1711656879.536113,VS0,VE1 + - S1728237452.041543,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '10' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1c0b4cee1de22e0a0c8c622f92233d1c494391cc + - 273983d5d788a3de43fadeba666b48a5cbed1114 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18154-EWR + - cache-den8282-DEN X-Timer: - - S1711656879.620192,VS0,VE1 + - S1728237452.065687,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '10' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c5b381f59ebe3e21314121a142900b59789598ad + - 9c24ed13b552b3f2f99e9fb0dc1396ad92718a32 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18176-EWR + - cache-den8239-DEN X-Timer: - - S1711656879.700290,VS0,VE1 + - S1728237452.093304,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '10' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f123cfca0fba4c84a30a72c347ecdfb430ea1d34 + - b1cc41b47c0adc9e2429efa427b3ca195836838b X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18143-EWR + - cache-den8280-DEN X-Timer: - - S1711656879.784398,VS0,VE1 + - S1728237452.124595,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '10' + - '6' 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: - - a6cd3cc23c7df387f0319fa4428823cab468f43f + - 25fc61bcc92a14038e69a7b25ba67b8fda64b457 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18178-EWR + - cache-den8258-DEN X-Timer: - - S1711656879.868547,VS0,VE0 + - S1728237452.151469,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:38 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:38 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '10' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d27a29675e15ae1957d28c9a2068337546cbe90f + - e152df16e95e9cde452d90da8974f2a2f0694f8e X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18178-EWR + - cache-den8240-DEN X-Timer: - - S1711656879.943616,VS0,VE1 + - S1728237452.179335,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 c7bee7ca1..6f60f5e6b 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '11' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 02a8e7a8ca1325a8b04ca019b77b1740b5fedc15 + - b305060ca65c2755cab34ca9d9684a866bcda594 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18182-EWR + - cache-den8228-DEN X-Timer: - - S1711656879.021281,VS0,VE1 + - S1728237452.217568,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '11' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a45830d5ce3e85ee2dc6c6c6ccadfce11147ba6c + - d923c5343659e2103470f1b28025b3a62a3bcbab X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18144-EWR + - cache-den8245-DEN X-Timer: - - S1711656879.100420,VS0,VE1 + - S1728237452.252188,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '11' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 73162d0deaee0f77daf33554ff02588464c5f9b9 + - ee7f6132129b9ff20d89ac33be4ae0064004ebb1 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18162-EWR + - cache-den8270-DEN X-Timer: - - S1711656879.176506,VS0,VE1 + - S1728237452.280742,VS0,VE8 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '11' + - '6' 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: - - 1597ed42a67dbcd755603ba541dec0b81ee98f8d + - 096d053b0ef65931ae64f585374bce02e31d1810 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18145-EWR + - cache-den8268-DEN X-Timer: - - S1711656879.268651,VS0,VE0 + - S1728237452.320404,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '11' + - '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: - - 8a92dab20af2085cd79d66cdf2c4038d6175a5fa + - 6339ab114bf113d710c1455f1f7a928e616355ea X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18173-EWR + - cache-den8224-DEN X-Timer: - - S1711656879.340428,VS0,VE0 + - S1728237452.351678,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '10' + - '6' 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: - - e30dd6075743f656688e747a5ea1df2a58ba78ca + - 0ebfdf43b605f963f4d13047ee150a825c235f79 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18132-EWR + - cache-den8221-DEN X-Timer: - - S1711656879.415809,VS0,VE1 + - S1728237452.380973,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '10' + - '6' 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: - - 5bdc24bff4e36b82ecab2ce604d5121f7b1b6984 + - b80ccb0b8976534ffce8b3531def6486c5be8eef X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18143-EWR + - cache-den8239-DEN X-Timer: - - S1711656879.495663,VS0,VE1 + - S1728237452.410665,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"90408dbc0c6ce835205fcdbeeab881774f06517052d7c3dbcf6ba7c3ccced7eb"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '8' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -639,15 +639,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9447cc30fffead775d942bcb3ddfed1124b4d40e + - 12fac3517ea9c46f503feaf9622969eeaaec56cd X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB466:4A2820:6605CFA7 + - 8E2F:17ACE4:5F69A9:699BE3:6702CF85 X-Served-By: - - cache-ewr18132-EWR + - cache-den8224-DEN X-Timer: - - S1711656880.572417,VS0,VE1 + - S1728237452.438321,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -661,7 +661,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"8546ced8239a833de59c3c153dab1ad77f34c598818da6695196e7449d680592"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - '0' Strict-Transport-Security: @@ -756,15 +756,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - dc9b7bd227e1744e8a979add107bfc5f074698ca + - 99f83707c536c272cf39db64b52841d1abf5aac1 X-Frame-Options: - deny X-GitHub-Request-Id: - - A67A:8622A:9C1C:AB0C:6605CFAF + - C5EC:3EDAE6:60063B:6A3BFA:6702CF8C X-Served-By: - - cache-ewr18152-EWR + - cache-den8238-DEN X-Timer: - - S1711656880.648487,VS0,VE80 + - S1728237452.470764,VS0,VE125 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 ecbe5a4ae..06f3bea08 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '12' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4a269e5b2a5b5914ade1c6fe0027f3c736ef67e6 + - 204d7f5ca88c58251f76ddbd66c31d2f86e22a99 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18157-EWR + - cache-den8268-DEN X-Timer: - - S1711656880.812918,VS0,VE2 + - S1728237453.641428,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '12' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7917d80d0d7b3074f8debf579992bf33b5c0080b + - 6f5b39fe591ecbf248e7f35738e6c7328cc31381 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18173-EWR + - cache-den8232-DEN X-Timer: - - S1711656880.901285,VS0,VE1 + - S1728237453.680329,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:39 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:39 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '12' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 83eeef92f33049320bbdcd36f7be4208c4d9c985 + - 26bfa8467e7a94b92a1c835f5c5980bf33cf285b X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18142-EWR + - cache-den8250-DEN X-Timer: - - S1711656880.991920,VS0,VE1 + - S1728237453.708805,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '11' + - '6' 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: - - b1aaa9c5c0e09f07e27b86bd6cc2bdadd20fc5f9 + - 7c1d7f39ee5fd8f47614cf26a7cb77681e982ceb X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18151-EWR + - cache-den8282-DEN X-Timer: - - S1711656880.068738,VS0,VE1 + - S1728237453.738162,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '11' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f33992cbff17d2012135aad51e993a1b385a1d92 + - 7c1832384b9506d564fd16208079cacacc277e4d X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18129-EWR + - cache-den8273-DEN X-Timer: - - S1711656880.151505,VS0,VE2 + - S1728237453.782277,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '11' + - '6' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3583e2d9dac5af222960fddc38c7bdea2b6627d5 + - 1c404f6e249d49b199d1ab59a9ad90bf7136c3d9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18159-EWR + - cache-den8276-DEN X-Timer: - - S1711656880.232528,VS0,VE2 + - S1728237453.811884,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '11' + - '6' 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: - - e9f3cd955ef7c568adf06bc498f720fcda06e22e + - a7bef60943bc56aefd1a8f20369d7c68a99097de X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18134-EWR + - cache-den8249-DEN X-Timer: - - S1711656880.304373,VS0,VE0 + - S1728237453.843633,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"9bde8b6875408a186b283e6e3dd3edb01bc2b938e55a0491b0b7f4e06f0faccb"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '10' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -641,15 +641,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 83c3a5985bf75b2876b78d55fe03eb187c6d7cf9 + - 1927d286288a30872783e435bcd33d6fa606381c X-Frame-Options: - deny X-GitHub-Request-Id: - - C6E8:C1794:6D3799:8149D2:6605CFA6 + - 1BD9:3EDAE6:60035E:6A38E7:6702CF87 X-Served-By: - - cache-ewr18155-EWR + - cache-den8261-DEN X-Timer: - - S1711656880.383812,VS0,VE1 + - S1728237453.872235,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -663,7 +663,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"8546ced8239a833de59c3c153dab1ad77f34c598818da6695196e7449d680592"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '1' + - '0' Strict-Transport-Security: - max-age=31536000 Vary: @@ -758,15 +758,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ce59d4dad435c7388f5272391f9ba3c4df67cfea + - 5811a69f305a5d556c2217089f408a154d77b36b X-Frame-Options: - deny X-GitHub-Request-Id: - - A67A:8622A:9C1C:AB0C:6605CFAF + - C5EC:3EDAE6:60063B:6A3BFA:6702CF8C X-Served-By: - - cache-ewr18172-EWR + - cache-den8224-DEN X-Timer: - - S1711656880.451638,VS0,VE1 + - S1728237453.913890,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -780,7 +780,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"90408dbc0c6ce835205fcdbeeab881774f06517052d7c3dbcf6ba7c3ccced7eb"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '9' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -836,15 +836,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 756c4f1f8c02253b8a1087b85d165415946f1b96 + - 7b425bc6ad97c56065106c802e3dd30670f8a9cb X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB466:4A2820:6605CFA7 + - 8E2F:17ACE4:5F69A9:699BE3:6702CF85 X-Served-By: - - cache-ewr18163-EWR + - cache-den8281-DEN X-Timer: - - S1711656881.532480,VS0,VE1 + - S1728237453.954878,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 9035c2d9d..5eabf144f 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:32 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:32 GMT Source-Age: - - '12' + - '7' 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: - - 222412a31bfb2b3423363caea6b19e9f7a23fc4c + - 8f0e589e32900f49073be6f1efd28488894fb26d X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18127-EWR + - cache-den8257-DEN X-Timer: - - S1711656881.615786,VS0,VE0 + - S1728237453.996944,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - - '12' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9e7e1743597031190e0c396102248066c25d9722 + - 934e1d92b9903477f4601c70db830d4f697ab60b X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18180-EWR + - cache-den8267-DEN X-Timer: - - S1711656881.683621,VS0,VE1 + - S1728237453.028628,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - - '12' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9daff4cbce95dde27b7b451760b5d5636c443cc8 + - ae65687b5ccc9d2da13e5938e01587a422e23cd6 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18156-EWR + - cache-den8263-DEN X-Timer: - - S1711656881.759880,VS0,VE1 + - S1728237453.073504,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - - '12' + - '7' 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: - - aabf2e05b305efce1502e045ab576d457d006962 + - 982422120e4691dfd0ba169d8451eb82811bf6f2 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18124-EWR + - cache-den8279-DEN X-Timer: - - S1711656881.836664,VS0,VE0 + - S1728237453.106201,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - - '12' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8ab1a2f22a2b84e4474f51a71eed7c1a0ae47817 + - f4c34f194895c1975e6d83806fe36671ad95bb8e X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18168-EWR + - cache-den8255-DEN X-Timer: - - S1711656881.912229,VS0,VE2 + - S1728237453.137765,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:40 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:40 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - - '12' + - '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: - - 331896ed817d44c90c9420804ba3fe8b28178d80 + - 89d4b1f38837761da1f824028c5a2317b38f680d X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18135-EWR + - cache-den8265-DEN X-Timer: - - S1711656881.984016,VS0,VE0 + - S1728237453.168227,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:41 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:41 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - - '12' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -557,19 +557,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 384fcd8e52bc25d96c918c819e579e535faa1f13 + - aa53568230ffac826b9f60b17e59b03000b76ea5 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18175-EWR + - cache-den8243-DEN X-Timer: - - S1711656881.047737,VS0,VE0 + - S1728237453.200291,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:41 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"90408dbc0c6ce835205fcdbeeab881774f06517052d7c3dbcf6ba7c3ccced7eb"' Expires: - - Thu, 28 Mar 2024 20:19:41 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - - '9' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -639,15 +639,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 8cdab0f1b4072725d7fc8f8548a70173685ef6e4 + - cc50c0fd06d6a6911b774596cc80be1024ff7b9e X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB466:4A2820:6605CFA7 + - 8E2F:17ACE4:5F69A9:699BE3:6702CF85 X-Served-By: - - cache-ewr18145-EWR + - cache-den8269-DEN X-Timer: - - S1711656881.116414,VS0,VE1 + - S1728237453.226788,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -661,7 +661,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:41 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Thu, 28 Mar 2024 20:19:41 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - - '8' + - '5' Strict-Transport-Security: - max-age=31536000 Vary: @@ -725,15 +725,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 96646a70ed1400e25e9749209f0856ac4a7eb429 + - 0d5134ba0a79e5f9ed8c2bd61f6cb084e1641637 X-Frame-Options: - deny X-GitHub-Request-Id: - - 21FC:5061:615A5C:7530C4:6605CFA9 + - 5920:1CA6FD:6230EC:6C6434:6702CF88 X-Served-By: - - cache-ewr18148-EWR + - cache-den8282-DEN X-Timer: - - S1711656881.192759,VS0,VE1 + - S1728237453.262127,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 52cac862c..6ab4317e2 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:41 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:41 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - - '13' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 46c18653f6ad9ee0facf629f9280707020a487b2 + - 7853b72eaf1916c7f370797ac82a98719dbd4553 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18157-EWR + - cache-den8262-DEN X-Timer: - - S1711656881.272777,VS0,VE1 + - S1728237453.303197,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:41 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:41 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - - '13' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -207,19 +207,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e0f07b80ba912fe9dfbc01819e9f9681bb31817f + - eb7b450560664d3ea60c049f14d28400d9b5af7a X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18137-EWR + - cache-den8278-DEN X-Timer: - - S1711656881.352415,VS0,VE0 + - S1728237453.333398,VS0,VE34 X-XSS-Protection: - 1; mode=block status: @@ -233,7 +233,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:41 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"13ff4323200a45e6acb12e649221282624758beb0a8f5b3a190160c2aa9d358a"' Expires: - - Thu, 28 Mar 2024 20:19:41 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - '0' Strict-Transport-Security: @@ -299,15 +299,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 85f697b6edb16282851a7a01415e4774a1ff9ca0 + - fd5cbb33fa526061f91abdd8ebac782e5090c95f X-Frame-Options: - deny X-GitHub-Request-Id: - - 620C:106CA3:AFF8:C015:6605CFB0 + - 3A18:1531AA:5E789F:68AA10:6702CF8C X-Served-By: - - cache-ewr18126-EWR + - cache-den8227-DEN X-Timer: - - S1711656881.431870,VS0,VE86 + - S1728237453.397724,VS0,VE130 X-XSS-Protection: - 1; mode=block status: @@ -321,7 +321,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:41 GMT + - Sun, 06 Oct 2024 17:57:33 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:41 GMT + - Sun, 06 Oct 2024 18:02:33 GMT Source-Age: - - '14' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -434,15 +434,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 78e1c34161536a45529abd996d57fa4cff7999e8 + - 533901eee27007098bf4a4dc807db2029617b194 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18164-EWR + - cache-den8257-DEN X-Timer: - - S1711656882.591834,VS0,VE0 + - S1728237454.578325,VS0,VE0 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 85ac199e6..057aaf355 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:41 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:41 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - - '14' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4f191e4a3d7e8e534fd7ca46d3d5c9470e16a6ac + - 4bc9617f84ead80c5a5ef6bb5771abe6c11ef555 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18126-EWR + - cache-den8238-DEN X-Timer: - - S1711656882.676136,VS0,VE0 + - S1728237455.616706,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:41 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:41 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - - '14' + - '9' 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: - - 29f97131b0b6f420d6191c367ea7e700767c2ca7 + - f552f7b8bdb2b9a9e9b9ca1a257f2824cd39e230 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18134-EWR + - cache-den8276-DEN X-Timer: - - S1711656882.751904,VS0,VE1 + - S1728237455.650491,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:41 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:41 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - - '13' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6dfc335cbf54198313598d9c4ef3162067413b23 + - 7c32836d0d12a36d58902f80d1ea2a19c2af066b X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18140-EWR + - cache-den8278-DEN X-Timer: - - S1711656882.836113,VS0,VE1 + - S1728237455.681921,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:41 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:41 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - - '13' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 01881b470b3434b3b3398ed0f3bdbbcb673a4949 + - 7247cddf457f90ae5ab6d0e367e256d25bfd016e X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18181-EWR + - cache-den8267-DEN X-Timer: - - S1711656882.927890,VS0,VE5 + - S1728237455.714610,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - - '13' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c27083f380a3d3ae487afb17d02a0ca5542b1ee9 + - 44366d34fe79e09ccfe1eafa18970ec829e851b2 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18170-EWR + - cache-den8247-DEN X-Timer: - - S1711656882.011862,VS0,VE1 + - S1728237455.743522,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - - '13' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4e8f1c395b64b57900e318c699577406271e02f5 + - 4c15e244142d826946e45b0e61b9d69a2b064fd8 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18158-EWR + - cache-den8273-DEN X-Timer: - - S1711656882.083929,VS0,VE1 + - S1728237455.772688,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - - '13' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 183f743908234dab0b8d0d7dfea1b6e91d32691d + - c07149eae5d842369145d43cfe9726cdf592c2d3 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18138-EWR + - cache-den8279-DEN X-Timer: - - S1711656882.156986,VS0,VE1 + - S1728237455.805947,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"13ff4323200a45e6acb12e649221282624758beb0a8f5b3a190160c2aa9d358a"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - '1' Strict-Transport-Security: @@ -649,15 +649,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9c0f2d99c480a5007c06816323b34416e3bbfbd2 + - e6964b455a563704c96e50a700795044e35268dd X-Frame-Options: - deny X-GitHub-Request-Id: - - 620C:106CA3:AFF8:C015:6605CFB0 + - 3A18:1531AA:5E789F:68AA10:6702CF8C X-Served-By: - - cache-ewr18155-EWR + - cache-den8283-DEN X-Timer: - - S1711656882.227733,VS0,VE1 + - S1728237455.839347,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -671,7 +671,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - - '15' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -780,19 +780,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - a61a6c25424fb8e2969f0b949a29a426b26ad3b6 + - 708b0b5d3759b6dbb1cf40cfb1bfdf9688792c4b X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18175-EWR + - cache-den8283-DEN X-Timer: - - S1711656882.295778,VS0,VE0 + - S1728237455.873523,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -806,7 +806,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - - '15' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -871,19 +871,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2b222387126fce95f6258db26043c4e53fb11ba3 + - f9d66246757311bf247b7fde2b2bb641e3358082 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18174-EWR + - cache-den8253-DEN X-Timer: - - S1711656882.363730,VS0,VE0 + - S1728237455.908193,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -897,7 +897,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"9bde8b6875408a186b283e6e3dd3edb01bc2b938e55a0491b0b7f4e06f0faccb"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - - '12' + - '7' Strict-Transport-Security: - max-age=31536000 Vary: @@ -955,15 +955,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3c1c981ff5b5e83ecdad67cb5bc1e681dcd48aff + - 61b4ddf68f51b2eb67f91c0f5f4c0131e8e23a71 X-Frame-Options: - deny X-GitHub-Request-Id: - - C6E8:C1794:6D3799:8149D2:6605CFA6 + - 1BD9:3EDAE6:60035E:6A38E7:6702CF87 X-Served-By: - - cache-ewr18143-EWR + - cache-den8229-DEN X-Timer: - - S1711656882.440649,VS0,VE1 + - S1728237455.938591,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 1e8df7ba4..411c743e0 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:19 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"031974beaaaf6f0b5c6877dc97088d9e2aff3bc8962df33ff291dddded353f09"' Expires: - - Thu, 28 Mar 2024 20:19:19 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - - '1' + - '0' Strict-Transport-Security: - max-age=31536000 Vary: @@ -109,15 +109,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 00b7f91e3a5be9db814937ce6b81dfffb9e4febf + - 4126c69f0ec6cf73d77774bb8fd56d10697fff11 X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB141:4A2468:6605CF9A + - A5C5:183A6B:5EAF1E:68DC8C:6702CF7F X-Served-By: - - cache-ewr18129-EWR + - cache-den8243-DEN X-Timer: - - S1711656859.419988,VS0,VE1 + - S1728237441.724250,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -131,7 +131,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:19 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"3b514933a3747f038125935624a13df108e30fe1cb8f9660a7f54ac6d4765ce9"' Expires: - - Thu, 28 Mar 2024 20:19:19 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - '1' Strict-Transport-Security: @@ -212,15 +212,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 64472a2ce5cef45a22e8d05c569e2841abace534 + - 818255ee852e806e4aaac9ba38dd6a04aa2e013b X-Frame-Options: - deny X-GitHub-Request-Id: - - 248A:74CA:6B4141:7F522D:6605CF9A + - 3A2C:1CA6FD:622AF5:6C5DEA:6702CF7F X-Served-By: - - cache-ewr18177-EWR + - cache-den8261-DEN X-Timer: - - S1711656860.500036,VS0,VE1 + - S1728237441.753625,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -234,7 +234,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:19 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"cffbb0036f526b016f24477e0ad674e75b6fefb89708ca796686de9d2e2a67ed"' Expires: - - Thu, 28 Mar 2024 20:19:19 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - '0' Strict-Transport-Security: @@ -291,15 +291,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 79fc091094385fb672db37b0bea29cc2ae72e191 + - 2fcc9ec6b43d92148ae5cb1283ee0e798b616c56 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:44861F:52C78A:6605CF9B + - 7944:1949AB:63C251:6DF50B:6702CF7F X-Served-By: - - cache-ewr18167-EWR + - cache-den8252-DEN X-Timer: - - S1711656860.579791,VS0,VE95 + - S1728237441.778872,VS0,VE138 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 35993fe83..abe092919 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:34 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:34 GMT Source-Age: - - '15' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 16f9ce319444f48450b7f1eb89944da248a9a6c5 + - 41319cf2f1a2f67fba98cb966329cdf494f827b4 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18180-EWR + - cache-den8283-DEN X-Timer: - - S1711656883.520662,VS0,VE0 + - S1728237455.985268,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '15' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -207,19 +207,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '11' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - eb6fdb834ef2d43096b04f5ef3a6d734ac39f488 + - 8608ef3dc481ddf03f2dff68f5b4261e17cb01de X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18160-EWR + - cache-den8255-DEN X-Timer: - - S1711656883.587884,VS0,VE0 + - S1728237455.012614,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -233,7 +233,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"3ad87031bb638da9b48582cbf730c047e1075960364c8fc992381ddf5467f296"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -293,15 +293,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d1f9e8f0877c7cc85bb4666ba363753eabbfe750 + - 33005abeeecb9e4a8113273981551f6077f245e8 X-Frame-Options: - deny X-GitHub-Request-Id: - - 620C:106CA3:AD9A:BD89:6605CFAC + - EA2E:1CA6FD:6232F5:6C6663:6702CF8A X-Served-By: - - cache-ewr18161-EWR + - cache-den8265-DEN X-Timer: - - S1711656883.659548,VS0,VE1 + - S1728237455.038552,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -315,7 +315,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '15' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -428,15 +428,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2b5add044fd6d327bf8294b75c601c1ea551f498 + - 8f1403a921f821357ed36216633f98ab91e7ba39 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18121-EWR + - cache-den8281-DEN X-Timer: - - S1711656883.732716,VS0,VE1 + - S1728237455.066009,VS0,VE1 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 4a24e3e56..135ff3ca8 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '15' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4c1117aec00001be4b824b383fbf26bbbf348093 + - b6bfcd4d262da84a1d20f1e7b1e156f8d5889187 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18163-EWR + - cache-den8230-DEN X-Timer: - - S1711656883.820470,VS0,VE2 + - S1728237455.100098,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '15' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 9915b40a786ffc75cae172f8bdfab6879cb1e354 + - 8a8968c0e77946a4d04b325bbf9bc3f5be39e1a1 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18164-EWR + - cache-den8229-DEN X-Timer: - - S1711656883.888902,VS0,VE1 + - S1728237455.129733,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:42 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:42 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '15' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5744927a699f860bc52ffa4a03781ef4c3f470cd + - 62c5f9ffdb5f7bbb4e727d172b3a885fad709a14 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18171-EWR + - cache-den8239-DEN X-Timer: - - S1711656883.957372,VS0,VE0 + - S1728237455.154002,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '14' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 679e071d641d7ea36de0aeedce6fa8094ac7c08f + - fd2876ccfa4e221ce3210da238be2e3b6576d68a X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18177-EWR + - cache-den8265-DEN X-Timer: - - S1711656883.028536,VS0,VE1 + - S1728237455.179603,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '14' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7df3919843724d745c56c1d372ff514aeb9969eb + - 11c1fc8618995748207d142a92d83b77f74851f4 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18145-EWR + - cache-den8226-DEN X-Timer: - - S1711656883.099835,VS0,VE1 + - S1728237455.211391,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '14' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 61db4689a632cf49ddb3d3147439bac5a166a9fb + - 1dde236524125ae5ba337fb753c1d8e596770703 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18152-EWR + - cache-den8245-DEN X-Timer: - - S1711656883.179719,VS0,VE1 + - S1728237455.240524,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '14' + - '9' 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: - - 4a3a9f1c45e5e5f31483e64f6229acff0fad72e8 + - 1c84f26c90234fe00ceb8f9ca770e0255a84acb9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18178-EWR + - cache-den8255-DEN X-Timer: - - S1711656883.276434,VS0,VE0 + - S1728237455.268442,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"3ad87031bb638da9b48582cbf730c047e1075960364c8fc992381ddf5467f296"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '6' + - '4' Strict-Transport-Security: - max-age=31536000 Vary: @@ -643,15 +643,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 519bb1f45f5a4aff071f29a7826736ff8771d074 + - 15fbe2a64c567367afd309c204fe5c7106a84799 X-Frame-Options: - deny X-GitHub-Request-Id: - - 620C:106CA3:AD9A:BD89:6605CFAC + - EA2E:1CA6FD:6232F5:6C6663:6702CF8A X-Served-By: - - cache-ewr18128-EWR + - cache-den8231-DEN X-Timer: - - S1711656883.364923,VS0,VE0 + - S1728237455.299455,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -665,7 +665,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"efa6309742b904ab7b06bab4c30c3ea2e1ce78163892365a7f4ee461716396b3"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '16' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -778,15 +778,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f361b102dcae16d2216f87ffce9b5a39eb06b295 + - 16f576e2df5a917594b9573f627fed0515b628d0 X-Frame-Options: - deny X-GitHub-Request-Id: - - 1D78:54CE:5C2E53:703FA6:6605CFA3 + - F32C:1FF8D6:60FF37:6B3609:6702CF83 X-Served-By: - - cache-ewr18125-EWR + - cache-den8222-DEN X-Timer: - - S1711656883.448243,VS0,VE2 + - S1728237455.332844,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -800,7 +800,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"c76fd44b22619705d40fb03a5b1d875e2e786f9ac7a85244758d15cc7cc947a9"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '16' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -869,15 +869,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 58588b70a0228b1ef603e5309afcc1e3dab8653d + - 536383b3347137930d9bf1ace9d2a67c5af9c9a8 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628EB9:76A0B6:6605CFA3 + - 1BD9:3EDAE6:600238:6A37A3:6702CF84 X-Served-By: - - cache-ewr18159-EWR + - cache-den8272-DEN X-Timer: - - S1711656884.519905,VS0,VE1 + - S1728237455.362581,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 9b4e1e49b..52f8e8a6c 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '16' + - '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: - - 3820ba62fa9710a42108eda8ab26394ca11d27e8 + - e8925beeddb39e3e410ea9238491bb69c09ad375 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18145-EWR + - cache-den8228-DEN X-Timer: - - S1711656884.604588,VS0,VE1 + - S1728237455.403071,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '16' + - '10' 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: - - 20fc1f0ab503ec95af8531d0df691d86fa840e26 + - ff2e0d93a9605929231f9e46b7dbd5171dad1a40 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18144-EWR + - cache-den8226-DEN X-Timer: - - S1711656884.684778,VS0,VE0 + - S1728237455.434132,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:35 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:35 GMT Source-Age: - - '15' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 08d6f9f9e08c74a5ae02fc10e0c2fc9634fd397a + - b61364c9fe7e08f0b128dc4c93a6d1d2d1c1b6eb X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18120-EWR + - cache-den8280-DEN X-Timer: - - S1711656884.760247,VS0,VE1 + - S1728237455.459333,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '15' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 83cffbba70f803e9e42d0b0bb02386b17c919ed1 + - b627b8c0d2bcdb44f1a2b39ea33763a697b4cadc X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18128-EWR + - cache-den8252-DEN X-Timer: - - S1711656884.840021,VS0,VE1 + - S1728237457.503429,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:43 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:43 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '15' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1145f4f6a1dda8465d1e2cc56f96850fd0ee28c0 + - 0ee366bcf0d558bda2d14b821153509455df2401 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18143-EWR + - cache-den8273-DEN X-Timer: - - S1711656884.916694,VS0,VE0 + - S1728237457.538899,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '15' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0de61c9d84c1a8e3a1bdbbb8a4bb04bbc5cb3831 + - ccc505e814523642e5e3eb75d4822a8dec91f500 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18172-EWR + - cache-den8228-DEN X-Timer: - - S1711656884.001307,VS0,VE1 + - S1728237457.571963,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '15' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 030db0ac6bdcaae0fb18f309f7f97737df7646ea + - 5ed5c2f15e0d201d016d4f269b89099e36cbcc64 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18132-EWR + - cache-den8278-DEN X-Timer: - - S1711656884.072690,VS0,VE1 + - S1728237457.606457,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"90408dbc0c6ce835205fcdbeeab881774f06517052d7c3dbcf6ba7c3ccced7eb"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '12' + - '9' Strict-Transport-Security: - max-age=31536000 Vary: @@ -639,15 +639,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - edc6f9892d0d6fbc18ac3258ff4c7669da289e4d + - ddb56dc492b9ed030cedfbe73219f712c169a388 X-Frame-Options: - deny X-GitHub-Request-Id: - - C3EC:2007:3CB466:4A2820:6605CFA7 + - 8E2F:17ACE4:5F69A9:699BE3:6702CF85 X-Served-By: - - cache-ewr18125-EWR + - cache-den8248-DEN X-Timer: - - S1711656884.151678,VS0,VE1 + - S1728237457.638193,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -661,7 +661,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '11' + - '8' Strict-Transport-Security: - max-age=31536000 Vary: @@ -725,15 +725,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0574f5ab95d081136863595d41464b61301d7e6a + - 9c5d08780c8a810ba5c542a10e7c983c515ad560 X-Frame-Options: - deny X-GitHub-Request-Id: - - 21FC:5061:615A5C:7530C4:6605CFA9 + - 5920:1CA6FD:6230EC:6C6434:6702CF88 X-Served-By: - - cache-ewr18179-EWR + - cache-den8228-DEN X-Timer: - - S1711656884.220535,VS0,VE1 + - S1728237457.673792,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 3fecea231..4dbeaafb1 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '16' + - '11' 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: - - 9f35624fa32ae8928b72dc0310757b34d470bb0f + - 7310ee41f4a41d39cd4dc1e9b246beede8c450da X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18182-EWR + - cache-den8244-DEN X-Timer: - - S1711656884.312401,VS0,VE0 + - S1728237457.714419,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '16' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 004fc98e2450183b5ed3b1797af669533fb7c5ef + - fd7f5055faf40b942f580acfab5c7658c9cd9fac X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18120-EWR + - cache-den8249-DEN X-Timer: - - S1711656884.399550,VS0,VE1 + - S1728237457.747840,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '16' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d291e3894cb03b3f696784b39dcc2fd1fb62992e + - fa68e123cdbfea449df0e0cd5276070396244594 X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18169-EWR + - cache-den8244-DEN X-Timer: - - S1711656884.479668,VS0,VE1 + - S1728237457.774088,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '16' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 981ccc9501ca51d767ca5b6db20e995822898295 + - 3bc4e575eddbd168366c75ca678b127cf920f34b X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18158-EWR + - cache-den8261-DEN X-Timer: - - S1711656885.555755,VS0,VE1 + - S1728237457.802044,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '16' + - '11' 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: - - 1e8d40b26842bf8980126084e8aa62562299e261 + - 912519b7a0b3ab327d64092daa138a4b9d488d63 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18136-EWR + - cache-den8255-DEN X-Timer: - - S1711656885.619869,VS0,VE1 + - S1728237457.828906,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '15' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -478,19 +478,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0d1441f3b7ae05238d90f02425828369a6855753 + - 258ffabbdd0e71a7cfbf36c0b9a2a072c1e35755 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18135-EWR + - cache-den8250-DEN X-Timer: - - S1711656885.695845,VS0,VE0 + - S1728237457.856805,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '16' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -557,19 +557,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 593b7c78dfd01d4f5ad5aa70bcbe2ef800cb913d + - 3033bfabc42b0ec66593dfe82d0ade70b49fa8b5 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18134-EWR + - cache-den8277-DEN X-Timer: - - S1711656885.771813,VS0,VE0 + - S1728237457.885018,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 b2c01fad6..0003d9537 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '16' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '4' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 17fe42cfc208591c433e8b287b1a4c163f20bd18 + - 24646ba98b61eb10e4a53478aae0c34c69e0dcf9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18165-EWR + - cache-den8280-DEN X-Timer: - - S1711656885.853026,VS0,VE0 + - S1728237457.916537,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:44 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:44 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '16' + - '11' 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: - - 5a3bc299255f92ba126499c00c2a026ec82c6214 + - b67377c2fe2e8281b8ca2bb3264e607bf9175f2d X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18124-EWR + - cache-den8259-DEN X-Timer: - - S1711656885.931802,VS0,VE0 + - S1728237457.948176,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:36 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:36 GMT Source-Age: - - '16' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b721084f32c474956960af07d83ec3986f8a3594 + - 17e16aaaa0b40010b37641ac9b4bcfb6974fbf0d X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18167-EWR + - cache-den8263-DEN X-Timer: - - S1711656885.007463,VS0,VE0 + - S1728237457.975195,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:37 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:37 GMT Source-Age: - - '16' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -338,19 +338,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5097b548425832a0b07feb2be55aee060e9a7db7 + - f896a43709e793f64c8054622f26b1b7547bb5b0 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18124-EWR + - cache-den8237-DEN X-Timer: - - S1711656885.080707,VS0,VE0 + - S1728237457.000706,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '16' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f1791e3e15c9f087749456c5c76bef325e9639d4 + - 6ca36da95d181d228e82bbe7a4b6584d4ce55f96 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18161-EWR + - cache-den8243-DEN X-Timer: - - S1711656885.151864,VS0,VE0 + - S1728237458.036702,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '16' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - f235dd0f4b7efe862053b9f0661a56d56f869e3a + - ef6e5a6134b4154e91d7bca536c11bca72b9f6d7 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18161-EWR + - cache-den8266-DEN X-Timer: - - S1711656885.228588,VS0,VE1 + - S1728237458.068073,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '16' + - '12' 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: - - c6f3678ca940fccbeaa375ac2ed57ac4c15305ce + - 2d446b3a26020ed3992f8505e49f146c2ebe27a5 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18130-EWR + - cache-den8245-DEN X-Timer: - - S1711656885.304347,VS0,VE0 + - S1728237458.152896,VS0,VE8 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '16' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b61232f809cbd075e699b0c8726512a8f8b1dc30 + - 8fb70a810acf727a8137f339033908e3a76d8062 X-Frame-Options: - deny X-GitHub-Request-Id: - - B964:F537A:5F1D4E:732F65:6605CFA4 + - 2D51:A1DE:5F6E3B:69A130:6702CF81 X-Served-By: - - cache-ewr18136-EWR + - cache-den8251-DEN X-Timer: - - S1711656885.390708,VS0,VE1 + - S1728237458.191967,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '12' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -738,19 +738,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 4bfe689c1c443e4be43b0691e70f049a6b472fc1 + - 6822a9cb81444e3264b258e11160660c831f9b4f X-Frame-Options: - deny X-GitHub-Request-Id: - - 21FC:5061:615A5C:7530C4:6605CFA9 + - 5920:1CA6FD:6230EC:6C6434:6702CF88 X-Served-By: - - cache-ewr18177-EWR + - cache-den8282-DEN X-Timer: - - S1711656885.473019,VS0,VE0 + - S1728237458.229139,VS0,VE0 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 bb801f38b..86a2f4c3b 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - b4c4b6bcbe465a19bf84b7ec667039976956f45a + - 6125e2e2221d00d35507e820591a685af9c627e4 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18182-EWR + - cache-den8238-DEN X-Timer: - - S1711656886.556509,VS0,VE0 + - S1728237458.273866,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '17' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c2ce1b321f978c4a4e694f1f78cb0a8bb8183186 + - 9807a1faf4420935b997f578481a766cb083cf2a X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18130-EWR + - cache-den8274-DEN X-Timer: - - S1711656886.643820,VS0,VE1 + - S1728237458.301886,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0d68c612650f055801006707fd2259e0e3a289e8 + - e7260691f9c3831c3f1490e3b4824e9f1f0d1aff X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18158-EWR + - cache-den8259-DEN X-Timer: - - S1711656886.719940,VS0,VE0 + - S1728237458.327381,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '17' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 5a59880765c062627ecb92933734c03d9be2473d + - 1e61d23818389c62954eb3910aeb1d3b222bcf25 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18140-EWR + - cache-den8278-DEN X-Timer: - - S1711656886.788014,VS0,VE0 + - S1728237458.352541,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '17' + - '12' 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: - - 0a429d3cc55601da6ac47028b9205481a9d691a8 + - 106fb87e8b611d8b713d86f936e616c3c3af8265 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18166-EWR + - cache-den8248-DEN X-Timer: - - S1711656886.856533,VS0,VE0 + - S1728237458.379270,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:45 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:45 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '17' + - '12' 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: - - ebb63e11010e716ab36cfb80657104244bc78070 + - 775af1e51cdd0c6e87e48774f2c346b6e87b4bce X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18148-EWR + - cache-den8235-DEN X-Timer: - - S1711656886.924520,VS0,VE0 + - S1728237458.413080,VS0,VE3 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '17' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 034d55e9f214599648d61277277f442b6b490677 + - d4239d5e1570b68bbcf7ce65f1b0989a1218a058 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18166-EWR + - cache-den8247-DEN X-Timer: - - S1711656886.012638,VS0,VE1 + - S1728237458.445571,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '17' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6d92e22ce5ab0945ca6e9c893044c0b5c4c1b1f8 + - 07ce74455854b84725dc2a9eb8f81b39ca498ef7 X-Frame-Options: - deny X-GitHub-Request-Id: - - B964:F537A:5F1D4E:732F65:6605CFA4 + - 2D51:A1DE:5F6E3B:69A130:6702CF81 X-Served-By: - - cache-ewr18158-EWR + - cache-den8248-DEN X-Timer: - - S1711656886.088914,VS0,VE1 + - S1728237458.475880,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '13' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -742,15 +742,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 076f886f24515441337bc849ac074a30d56522d4 + - 4482a9b5f3cae653d1c057b3f68e1a635c107844 X-Frame-Options: - deny X-GitHub-Request-Id: - - 21FC:5061:615A5C:7530C4:6605CFA9 + - 5920:1CA6FD:6230EC:6C6434:6702CF88 X-Served-By: - - cache-ewr18166-EWR + - cache-den8222-DEN X-Timer: - - S1711656886.168406,VS0,VE1 + - S1728237459.510083,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 bc1585918..f2808d38f 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -116,19 +116,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '4' + - '2' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 3a65a36d6870eeccedd275cf6a644d3fed57e77c + - 2bfec1fbba003b65f76d5adc564419cb7922a838 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18126-EWR + - cache-den8266-DEN X-Timer: - - S1711656886.253625,VS0,VE0 + - S1728237459.553583,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d6e2d2449496ab999170069fcba9578330d3a029 + - bc0fe7264e7dee4a0a285e81b02d0c7d7a7ef2b8 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18160-EWR + - cache-den8279-DEN X-Timer: - - S1711656886.332211,VS0,VE5 + - S1728237459.582904,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - c9e9c9c2549ce2022527bc3c489d074fb2c282c5 + - 7f74fe28fca1c73c409112f2322f13017423d7dd X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18135-EWR + - cache-den8226-DEN X-Timer: - - S1711656886.417383,VS0,VE1 + - S1728237459.609755,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1c79d133729ce8ac1cc3e94dc8920b7ea3fc9d59 + - 4a988c6c47630cf97a126c8f32109cb68712855e X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18175-EWR + - cache-den8250-DEN X-Timer: - - S1711656886.496055,VS0,VE1 + - S1728237459.639333,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 0d6f8e95ff73bfa8fa57e9b0bea6c006bb45bf66 + - 080addd9d23a4355e4c505d656f3f1940d2e5325 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18171-EWR + - cache-den8245-DEN X-Timer: - - S1711656887.592076,VS0,VE1 + - S1728237459.668875,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '12' 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: - - c4baed3697cf4c3fd7461f8e62f22e45d907b3c4 + - decfef4bba07a64b275d5e71515335243f4cc7b9 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18120-EWR + - cache-den8276-DEN X-Timer: - - S1711656887.668078,VS0,VE1 + - S1728237459.698710,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 071e7cbad1731e5f6581639529df7e619cc17463 + - 96b65627929c630f6e0bc7b9eb4de049628a81af X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18141-EWR + - cache-den8261-DEN X-Timer: - - S1711656887.744729,VS0,VE1 + - S1728237459.726292,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '17' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 14bd05401fecef6274459ceb6e6888fbced9b0d7 + - 1fb6a3348303457f714f7e9f91a35077b3116890 X-Frame-Options: - deny X-GitHub-Request-Id: - - B964:F537A:5F1D4E:732F65:6605CFA4 + - 2D51:A1DE:5F6E3B:69A130:6702CF81 X-Served-By: - - cache-ewr18145-EWR + - cache-den8267-DEN X-Timer: - - S1711656887.816722,VS0,VE1 + - S1728237459.756094,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '14' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -742,15 +742,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e38811ea061d8ede03cea2856599fe8b7481b6c4 + - 8a751d935a6520b597875c7121a07a5faaa722ee X-Frame-Options: - deny X-GitHub-Request-Id: - - 21FC:5061:615A5C:7530C4:6605CFA9 + - 5920:1CA6FD:6230EC:6C6434:6702CF88 X-Served-By: - - cache-ewr18151-EWR + - cache-den8280-DEN X-Timer: - - S1711656887.896741,VS0,VE1 + - S1728237459.789529,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 643ae9856..5569bff24 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:46 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:46 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '19' + - '13' 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: - - 9bd079a5a42ac801ef1a2ee5e77e76573c1b6940 + - 19899a7a2f9d9d7509c33483d3a84ee96337e4bd X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18181-EWR + - cache-den8241-DEN X-Timer: - - S1711656887.984270,VS0,VE1 + - S1728237459.833131,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '19' + - '13' 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: - - ef70764994f086b896b6693b6b0809db402f503c + - e9016cbe6e1897d756ea216dc91d4755db8b8de1 X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18125-EWR + - cache-den8226-DEN X-Timer: - - S1711656887.069053,VS0,VE1 + - S1728237459.863463,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -265,19 +265,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '3' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ce283f5936883b3bf19e002d34c9d6ce7d7b8135 + - 6133ffa623014e79dfb3d2e59b171f4e78f9125d X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18156-EWR + - cache-den8259-DEN X-Timer: - - S1711656887.145741,VS0,VE0 + - S1728237459.886612,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '19' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -342,15 +342,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 27c1a71c69a862f95e63c437d24867b0eb833cd6 + - a50f49c8a62986bccf788f4bed9b2dbb36719a1d X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18178-EWR + - cache-den8270-DEN X-Timer: - - S1711656887.237570,VS0,VE1 + - S1728237459.912508,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '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: - - 470f6cd2fcd6316224b9255dd1fd394f37ab94d3 + - 53acbbd43abba5516a40e9f22c3c5e031a10c417 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18174-EWR + - cache-den8274-DEN X-Timer: - - S1711656887.315955,VS0,VE1 + - S1728237459.937340,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e09eb4f6bf2fdd74ef335be34a69883be4820e26 + - b5daa1f92478125dbcea82d4dfc41ad0650ab17d X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18159-EWR + - cache-den8273-DEN X-Timer: - - S1711656887.401020,VS0,VE0 + - S1728237459.961849,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:38 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:38 GMT Source-Age: - - '18' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -561,15 +561,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 026439a2a5dac627df03ddb8f6baca706d2fd2d5 + - efe138d653a55ef1bf1de8fc15c94cc2358c2b4b X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18168-EWR + - cache-den8274-DEN X-Timer: - - S1711656887.488696,VS0,VE1 + - S1728237459.984078,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '18' + - '12' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - dc41b62ad182ca62b51c26d0bf9d3527db8b3baf + - 6b767d6155a57bc356f3e65e77b04795b12034fa X-Frame-Options: - deny X-GitHub-Request-Id: - - B964:F537A:5F1D4E:732F65:6605CFA4 + - 2D51:A1DE:5F6E3B:69A130:6702CF81 X-Served-By: - - cache-ewr18127-EWR + - cache-den8265-DEN X-Timer: - - S1711656888.581242,VS0,VE1 + - S1728237459.007883,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '14' + - '10' Strict-Transport-Security: - max-age=31536000 Vary: @@ -742,15 +742,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 746dfe1047a60aa3f11e4afb26d839751564c33f + - 3a38aecbb1e1d30c5f49d12ee28996d58b6f260e X-Frame-Options: - deny X-GitHub-Request-Id: - - 21FC:5061:615A5C:7530C4:6605CFA9 + - 5920:1CA6FD:6230EC:6C6434:6702CF88 X-Served-By: - - cache-ewr18141-EWR + - cache-den8229-DEN X-Timer: - - S1711656888.656888,VS0,VE1 + - S1728237459.034115,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 620807e45..f3cb8929b 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '20' + - '14' 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: - - 0d1ccb9803a29dac5359b14db4f5b0ba8bc0000e + - 296f83dd5acfed290ae034aa6d124d96dc81d464 X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18140-EWR + - cache-den8267-DEN X-Timer: - - S1711656888.739961,VS0,VE1 + - S1728237459.070154,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '20' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ad22f6a56c28cbdab12bdd8b684d73679e0c6429 + - a26171419174a3e1a8a16701d77655e676bc932e X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18127-EWR + - cache-den8243-DEN X-Timer: - - S1711656888.829147,VS0,VE1 + - S1728237459.097153,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '19' + - '13' 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: - - 1c6097c66ef99c1255c6499fc2816ff05232347d + - 4ee74f152e6d26f58f476568e5f136de551f45ce X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18156-EWR + - cache-den8255-DEN X-Timer: - - S1711656888.908269,VS0,VE0 + - S1728237459.120661,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:47 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:47 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '19' + - '13' 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: - - 0b080036a7d403255a0d8ee643e2d10a0c815d3e + - 60d3fc662e4a422a67c593ad50700ea039298e04 X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18180-EWR + - cache-den8267-DEN X-Timer: - - S1711656888.976119,VS0,VE1 + - S1728237459.147980,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '19' + - '13' 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: - - 3cc73914de66370cf8f8045ad96454a9f94b6b0b + - 632721c12e58a8ff62d0c4ce562901acb511daf6 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18144-EWR + - cache-den8249-DEN X-Timer: - - S1711656888.044192,VS0,VE0 + - S1728237459.173807,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '19' + - '13' 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: - - f30a22e1e6b6fb7be4d90e66042fe6de068fb6ae + - e5d9e1945050d9825a3c268439cc1f27be21375e X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18153-EWR + - cache-den8252-DEN X-Timer: - - S1711656888.108282,VS0,VE1 + - S1728237459.200489,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '19' + - '13' 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: - - 73597d39f9bf9666afe90165e57f5188ad7ce7cc + - cdc25799805d9e462d226691a4c91dee5b582e93 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18132-EWR + - cache-den8229-DEN X-Timer: - - S1711656888.184524,VS0,VE0 + - S1728237459.228781,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 208af8d72..f16ad8fb7 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"eb4ef35f5071c45c7b53e7fe6ef92a682455a0de207fcbe27507488c4bfcc9ca"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '20' + - '14' Strict-Transport-Security: - max-age=31536000 Vary: @@ -120,15 +120,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 266fe8b7eb5a5b009b3f6c8bb686a686fd57468b + - cb0218380b9d2a84167eaced51ed650887d57e9b X-Frame-Options: - deny X-GitHub-Request-Id: - - 73EA:0E00:45CE70:531BF8:6605CFA3 + - 0A3F:38FE6F:5BFDCC:662B7B:6702CF85 X-Served-By: - - cache-ewr18173-EWR + - cache-den8274-DEN X-Timer: - - S1711656888.268769,VS0,VE1 + - S1728237459.263120,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -142,7 +142,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"2436fa8ce8356cb57ec6581098dc3ea04f5395558aaca6e4008e09eb43f0a9db"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '20' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -192,15 +192,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ab87ef6d8ea48fec7b2859e30aa9a5d37425dab6 + - 1cb4ccbe221b4bf95f38003ae0c4c3c97b7078cc X-Frame-Options: - deny X-GitHub-Request-Id: - - E072:16CB:412507:4DB39D:6605CFA3 + - C5EC:3EDAE6:600288:6A3805:6702CF84 X-Served-By: - - cache-ewr18148-EWR + - cache-den8254-DEN X-Timer: - - S1711656888.348730,VS0,VE1 + - S1728237459.293868,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -214,7 +214,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"e1248a7fa9f6feeddb9c683a0fcfcab1b8ea66ae5db2d9a36f0602d44879a0f8"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '20' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -269,15 +269,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 2dd0b9cf1ceb29e28343e77de73e42daee82ddac + - f888751e7d6d2b55ff829ad079496555c440b53b X-Frame-Options: - deny X-GitHub-Request-Id: - - 6BE2:3CBA86:65A7B9:79B980:6605CFA3 + - A5C5:183A6B:5EB34C:68E0F5:6702CF82 X-Served-By: - - cache-ewr18124-EWR + - cache-den8225-DEN X-Timer: - - S1711656888.420297,VS0,VE1 + - S1728237459.320750,VS0,VE2 X-XSS-Protection: - 1; mode=block status: @@ -291,7 +291,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"84c39a084fe100d85a10cdeef11399cb06ceed2c623ee37cfbdb03f85d39477c"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '20' + - '13' 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: - - 61d1e1b8d53f547309c4457065f69569516f8790 + - 0118f88cffb3869978a3df4df63e9e3fa1abbf6b X-Frame-Options: - deny X-GitHub-Request-Id: - - B55A:1160:5DDEA6:71963B:6605CFA3 + - 47A4:18BCD2:62ECDD:6D1A8A:6702CF84 X-Served-By: - - cache-ewr18160-EWR + - cache-den8239-DEN X-Timer: - - S1711656888.495793,VS0,VE1 + - S1728237459.349905,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -364,7 +364,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"d2cd4998f5154410f2dc79b42af5baaf118454186cee8d12066a5f42d3e821fc"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '20' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -411,15 +411,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1804c5328495743e8773987b460a8e8643e4e037 + - 499e95e918274f13546b470607e9a46f2d2a6338 X-Frame-Options: - deny X-GitHub-Request-Id: - - D1D4:3BB210:68A221:7CB400:6605CFA4 + - BE0E:1949AB:63C641:6DF947:6702CF85 X-Served-By: - - cache-ewr18181-EWR + - cache-den8270-DEN X-Timer: - - S1711656889.572156,VS0,VE1 + - S1728237459.379421,VS0,VE46 X-XSS-Protection: - 1; mode=block status: @@ -433,7 +433,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"a99228769e5d0400f7b006fa153262053fb7a6ffdb3b8bbf51c4df37a82098f6"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '20' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -482,15 +482,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6e12b61036a31fad2d61da5c7db23b9fad077db2 + - 68562b58191229e70f259e09b1ff743aebb72dab X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F09:76A114:6605CFA3 + - 1CA3:C353F:5E158E:6847D9:6702CF86 X-Served-By: - - cache-ewr18130-EWR + - cache-den8278-DEN X-Timer: - - S1711656889.651690,VS0,VE1 + - S1728237459.456645,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -504,7 +504,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"a92eac8e15643dce5b9165724ce350d2ee5edad5f8baca7140c79ce8ce0da8c6"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '20' + - '13' 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: - - aefae5aaa8397f6e34bc567d10a405cfa4a2c26f + - 0fb4c5cce3bd25bd7daab2d26528dbe5b64ee666 X-Frame-Options: - deny X-GitHub-Request-Id: - - 2A1E:3DB40B:628F12:76A125:6605CFA5 + - 4CF2:1CA6FD:622F9B:6C62CD:6702CF85 X-Served-By: - - cache-ewr18126-EWR + - cache-den8276-DEN X-Timer: - - S1711656889.731912,VS0,VE1 + - S1728237459.492922,VS0,VE0 X-XSS-Protection: - 1; mode=block status: @@ -583,7 +583,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"4ce0628a6b4d2c8e80ff67d116b60196c8f9d0a017a63b3557ebd6b46f42dfef"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '19' + - '13' Strict-Transport-Security: - max-age=31536000 Vary: @@ -656,15 +656,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 544d9431e50414f6127424f272c2c35aee069515 + - 489d0ddab1a8d99ceb65a85236005a92da10ea30 X-Frame-Options: - deny X-GitHub-Request-Id: - - B964:F537A:5F1D4E:732F65:6605CFA4 + - 2D51:A1DE:5F6E3B:69A130:6702CF81 X-Served-By: - - cache-ewr18160-EWR + - cache-den8223-DEN X-Timer: - - S1711656889.807771,VS0,VE4 + - S1728237460.521057,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -678,7 +678,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:48 GMT + - Sun, 06 Oct 2024 17:57:39 GMT ETag: - '"e3e45b623ffe7f49713a2595b631681ba13de3813a1f297508e46360b2becd71"' Expires: - - Thu, 28 Mar 2024 20:19:48 GMT + - Sun, 06 Oct 2024 18:02:39 GMT Source-Age: - - '16' + - '11' Strict-Transport-Security: - max-age=31536000 Vary: @@ -742,15 +742,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 7708042125e28e8f4e43e9c587b6fda0c1736af2 + - 0be7be68ddd2590ec39b57ef4e30039d52c67db0 X-Frame-Options: - deny X-GitHub-Request-Id: - - 21FC:5061:615A5C:7530C4:6605CFA9 + - 5920:1CA6FD:6230EC:6C6434:6702CF88 X-Served-By: - - cache-ewr18138-EWR + - cache-den8255-DEN X-Timer: - - S1711656889.891645,VS0,VE1 + - S1728237460.559004,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 c06b12e66..59a9469ab 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:19 GMT + - Sun, 06 Oct 2024 17:57:20 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:19 GMT + - Sun, 06 Oct 2024 18:02:20 GMT Source-Age: - '1' Strict-Transport-Security: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 6c440357488334e75d3167dacb852f195a952034 + - 85402ca8a612047e8fa215192dba6bfbc52f0af1 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18151-EWR + - cache-den8264-DEN X-Timer: - - S1711656860.748800,VS0,VE1 + - S1728237441.958674,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:19 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"ceed674cee48a43076989957b8a4f96d8acba3f52df1d52a3745e28225923aac"' Expires: - - Thu, 28 Mar 2024 20:19:19 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - '0' Strict-Transport-Security: @@ -218,15 +218,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - ce3a169907017f2744d50f1f8f71eb4ed59036bd + - 9be95ffe4c832f98970a35788b0eab507c5fe41e X-Frame-Options: - deny X-GitHub-Request-Id: - - 4334:3DB40B:628C95:769E36:6605CF9B + - 4D1E:183A6B:5EAFC0:68DD36:6702CF80 X-Served-By: - - cache-ewr18141-EWR + - cache-den8254-DEN X-Timer: - - S1711656860.835849,VS0,VE79 + - S1728237441.987505,VS0,VE146 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 19e081aa9..5a77c40c7 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.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -59,11 +59,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:39 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: @@ -75,15 +75,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 97fa7b24b40fdfe5a2405e833bb3d1fe53073cfe + - b1f406ab5948a8781206ce71cf109668871f37b2 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18152-EWR + - cache-den8221-DEN X-Timer: - - S1711656889.992007,VS0,VE22 + - S1728237460.604346,VS0,VE75 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 9ccc827cb..f06bc0d27 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.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -59,11 +59,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:39 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: @@ -75,15 +75,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 541e6195c413b84a07ab0e52230ab08ec487256c + - 49ecfffdd4dfa61ee0237e369deb8dec430ab361 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18122-EWR + - cache-den8270-DEN X-Timer: - - S1711656889.087711,VS0,VE2 + - S1728237460.725657,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 1a3002d96..3cfe663a6 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.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:39 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,15 +115,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 219b352f3fa52bd17115a83f9f41bc989983a8d1 + - 4f2d256701c0fb28a6ed94f17e32c650e2ccd84e X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18172-EWR + - cache-den8272-DEN X-Timer: - - S1711656889.171458,VS0,VE26 + - S1728237460.767473,VS0,VE61 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -139,7 +139,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:39 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: @@ -207,15 +207,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0f239a17f374d95672d8d5600981b81f0ad4ec31 + - 0aaee0aab10ac68a3e802e8c709832ace80a29fe X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18120-EWR + - cache-den8250-DEN X-Timer: - - S1711656889.288393,VS0,VE2 + - S1728237460.865505,VS0,VE6 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 f90c71f4a..b489904e4 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.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:39 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,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0973f30a57c63619bbf8d5eef360457340dfae86 + - f8f1b0aee532cdf2b38b93d3eadd39a28e76f1c4 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18154-EWR + - cache-den8275-DEN X-Timer: - - S1711656889.379604,VS0,VE1 + - S1728237460.916266,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -139,7 +139,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:39 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: @@ -207,15 +207,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 51d30acb5d4005a27fddb3d017ce4ea6c99f9800 + - 97b61cd1f21c06afdbcc19f122792f8cb999477b X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18168-EWR + - cache-den8231-DEN X-Timer: - - S1711656889.471481,VS0,VE1 + - S1728237460.961107,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 3650b5b2b..f21c797fc 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.11 + - Python-urllib/3.12 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: - - '65' + - '0' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:40 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: @@ -111,19 +111,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - 02d4e076fab162a1e0f9b87c4fd8c4e407eb2093 + - 91ed4c953ca5e3f7d23d550c5bb87b3bb12432ca X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18126-EWR + - cache-den8250-DEN X-Timer: - - S1711656890.552663,VS0,VE1 + - S1728237460.997759,VS0,VE69 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '65' + - '0' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:40 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: @@ -178,19 +178,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - 281e99b20d5da66c2602cfe8f86add6e40a7fe29 + - ce0640e71a50d905400b29142f05c3e450db22b3 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18146-EWR + - cache-den8252-DEN X-Timer: - - S1711656890.635457,VS0,VE1 + - S1728237460.105730,VS0,VE58 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '65' + - '0' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:40 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: @@ -277,19 +277,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - 8a8532795f1a34274530a369781e3517f6664299 + - 15bddee8450efa07c1a135de14e606fa912b52e2 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18163-EWR + - cache-den8227-DEN X-Timer: - - S1711656890.707851,VS0,VE2 + - S1728237460.200197,VS0,VE63 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '65' + - '0' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:40 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: @@ -348,19 +348,19 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - 42159b5f56cee6847dcc56fab4968ebf17057be7 + - 20575b9510a984a6153027b3826a300075c36067 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18167-EWR + - cache-den8281-DEN X-Timer: - - S1711656890.779839,VS0,VE1 + - S1728237460.297142,VS0,VE58 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '65' + - '0' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:40 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: @@ -414,19 +414,21 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - 808c2a782bcd4d7f09437066d9c9945bd2e10ea9 + - 4c6dc6d0f59d522dedb161a799d0a2d46b5462fc X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18153-EWR + - cache-den8282-DEN X-Timer: - - S1711656890.851749,VS0,VE1 + - S1728237460.388567,VS0,VE59 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '65' + - '0' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:49 GMT + - Sun, 06 Oct 2024 17:57:40 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: @@ -488,19 +490,21 @@ interactions: Via: - 1.1 varnish X-Cache: - - HIT + - MISS X-Cache-Hits: - - '1' + - '0' X-Fastly-Request-ID: - - dcdb2f2d4706fc457b29aa5b1346e272f754b42c + - e44a7633e5643a4affa9e50adb4fef776c9dfbbc X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18137-EWR + - cache-den8266-DEN X-Timer: - - S1711656890.931902,VS0,VE1 + - S1728237460.482871,VS0,VE58 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/checksum/json-schema/schema.json response: @@ -567,11 +571,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:50 GMT + - Sun, 06 Oct 2024 17:57:40 GMT ETag: - - '"65bd0237-939"' + - '"66e1651c-939"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -583,15 +587,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 81a4fe7a062060b9dc79c035b00db156dd5ccffd + - 7bc5572b9536bbc5ee3253c53b9367b75351c307 X-GitHub-Request-Id: - - 5588:2AA28D:E2A75A:123F7B0:6605CFB9 + - 7DC6:215EAC:3D1DA0A:437D7E0:6702CF93 X-Served-By: - - cache-ewr18142-EWR + - cache-den8282-DEN X-Timer: - - S1711656890.000891,VS0,VE22 + - S1728237461.569904,VS0,VE67 expires: - - Thu, 28 Mar 2024 20:24:50 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -607,7 +611,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -659,11 +663,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:50 GMT + - Sun, 06 Oct 2024 17:57:40 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: @@ -675,15 +679,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 98982e501c2e95a0c662b912ade8bda4cc5d6cdb + - 4873835cd474b5f15c8a53319619cc9dcd1464b7 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18162-EWR + - cache-den8233-DEN X-Timer: - - S1711656890.096834,VS0,VE2 + - S1728237461.679649,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-proxy-cache: - MISS status: @@ -697,7 +701,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -789,11 +793,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:50 GMT + - Sun, 06 Oct 2024 17:57:40 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: @@ -805,15 +809,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 03cc539384f9f1d3a91b4757898e0e1dd5ec72c5 + - 1944c97d65a22666c4dc8d8be9a9566b3fbc01b1 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18162-EWR + - cache-den8243-DEN X-Timer: - - S1711656890.174121,VS0,VE1 + - S1728237461.716458,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: 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 135d79cd0..2d800f9f5 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.11 + - Python-urllib/3.12 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: - - '1' + - '2' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:50 GMT + - Sun, 06 Oct 2024 17:57:41 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,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d455ce45c7fb5ef24d578ef49d111ea40f032d7c + - e60deb418cf2a4662f26a7f0c9502b2cd903b71f X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18181-EWR + - cache-den8259-DEN X-Timer: - - S1711656890.279637,VS0,VE1 + - S1728237462.768037,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -139,7 +139,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +181,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '3' Cache-Control: - max-age=600 Connection: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:50 GMT + - Sun, 06 Oct 2024 17:57:42 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: @@ -207,15 +207,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6c99d606f8eb3ab3c5e949c46d2b0b5b73d5bfee + - 7b31cdac23ba0a05ae3022df6267dc2bd71b0e72 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18136-EWR + - cache-den8273-DEN X-Timer: - - S1711656890.360078,VS0,VE2 + - S1728237463.818074,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-proxy-cache: - MISS status: @@ -229,7 +229,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/collection-assets/json-schema/schema.json response: @@ -262,11 +262,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:50 GMT + - Sun, 06 Oct 2024 17:57:42 GMT ETag: - - '"65bd0237-3ab"' + - '"66e1651c-3ab"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -278,15 +278,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - f1d7a58582d645ce3d83755f925e4bf20d05b5b8 + - a59db248ba27c8e03ccf6bd63fb4f22817134a56 X-GitHub-Request-Id: - - 6002:276508:DB29C5:11C795E:6605CFB9 + - AAFD:3E300:36AE5B9:3D0E07F:6702CF95 X-Served-By: - - cache-ewr18155-EWR + - cache-den8247-DEN X-Timer: - - S1711656890.436678,VS0,VE22 + - S1728237463.854031,VS0,VE68 expires: - - Thu, 28 Mar 2024 20:24:50 GMT + - Sun, 06 Oct 2024 18:07:42 GMT x-proxy-cache: - MISS status: @@ -300,7 +300,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '66' + - '3' Cache-Control: - max-age=600 Connection: @@ -392,11 +392,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:50 GMT + - Sun, 06 Oct 2024 17:57:42 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: @@ -408,15 +408,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 68f8a5ae6b3fdbc572327377399b730331daab72 + - 1a9a20098422476398e24f65388b1f787cdaf728 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18123-EWR + - cache-den8281-DEN X-Timer: - - S1711656891.556059,VS0,VE2 + - S1728237463.956515,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 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 9698a4143..9110cf62f 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.11 + - Python-urllib/3.12 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: - - '1' + - '3' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:50 GMT + - Sun, 06 Oct 2024 17:57:43 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,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 61950ab503067f5bda13d73fa8d4eb8832e42a4f + - 1491a98d0adc83510ec4ab1ef05e84030e1cd513 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18132-EWR + - cache-den8236-DEN X-Timer: - - S1711656891.648656,VS0,VE2 + - S1728237463.002740,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -139,7 +139,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +181,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '3' Cache-Control: - max-age=600 Connection: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:50 GMT + - Sun, 06 Oct 2024 17:57:43 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: @@ -207,15 +207,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a833f53f0ab6003f517f5e878f2714ca19e39c4b + - 546bf1f126286e9003c75ca8e33951586e304ccd X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18154-EWR + - cache-den8232-DEN X-Timer: - - S1711656891.736298,VS0,VE2 + - S1728237463.033509,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-proxy-cache: - MISS status: @@ -229,7 +229,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/datacube/json-schema/schema.json response: @@ -350,11 +350,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:50 GMT + - Sun, 06 Oct 2024 17:57:43 GMT ETag: - - '"65bd0237-1d66"' + - '"66e1651c-1d66"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -366,17 +366,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - b581f5e71dbfccfba0e5dcb6c9b39b318652d780 + - f27278b779aaa482320c37b8349bacd88dcc9a0b X-GitHub-Request-Id: - - 7098:3A1975:EB147E:12C513B:6605CFBA + - 7AFA:687EA:3798A5F:3DF8423:6702CF95 X-Served-By: - - cache-ewr18156-EWR + - cache-den8229-DEN X-Timer: - - S1711656891.824489,VS0,VE20 + - S1728237463.061044,VS0,VE67 expires: - - Thu, 28 Mar 2024 20:24:50 GMT - x-origin-cache: - - HIT + - Sun, 06 Oct 2024 18:07:43 GMT x-proxy-cache: - MISS status: @@ -390,7 +388,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -472,7 +470,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '66' + - '4' Cache-Control: - max-age=600 Connection: @@ -482,11 +480,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:50 GMT + - Sun, 06 Oct 2024 17:57:44 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: @@ -498,15 +496,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - cc5bbd4f923d208a44ce6884fb57b035c8151909 + - 761320c4990f9b0d481b4f88ce56c8222ef5fcbc X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18152-EWR + - cache-den8225-DEN X-Timer: - - S1711656891.920684,VS0,VE2 + - S1728237464.170700,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 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 4e7670b8e..8e3fa1bb0 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.11 + - Python-urllib/3.12 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: - - '66' + - '4' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 904856f1efa98060607e9d77faf9ce143dd86082 + - 930b2807a27696368eaf27903e28372df43ead53 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18183-EWR + - cache-den8225-DEN X-Timer: - - S1711656891.007763,VS0,VE1 + - S1728237464.214545,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '66' + - '4' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6c694e748bdff8c3fa17fe2a2b6fc4204f564596 + - befbdc930d7c82ae9860c2400246d27a4b505b03 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18160-EWR + - cache-den8277-DEN X-Timer: - - S1711656891.089179,VS0,VE1 + - S1728237464.248047,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '66' + - '4' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0eff4d1f1665daa6d7080041ebd6abf590d4ce8c + - 2d91719fd7493f1204a44ffe053b5e72b7b83ddb X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18149-EWR + - cache-den8250-DEN X-Timer: - - S1711656891.163657,VS0,VE1 + - S1728237464.271612,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '66' + - '4' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8825eae0f97f1936768d2a51aa358ce100ef3e0c + - f4c6cbea16c44fa26c5015d9806421c9efd34c39 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18177-EWR + - cache-den8223-DEN X-Timer: - - S1711656891.231973,VS0,VE6 + - S1728237464.360485,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '66' + - '4' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - dd6fc15222a11723ffd731139c463d28e79f390c + - c2e6187bc0bc3c2ab5e37a5703f042279d2f574f X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18147-EWR + - cache-den8238-DEN X-Timer: - - S1711656891.327617,VS0,VE1 + - S1728237464.397277,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '66' + - '4' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e83fbf2006599b2dd0b54f78f7cee1507e98389d + - 06857d6547109d690b0928f4eb9a10decb90203b X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18180-EWR + - cache-den8251-DEN X-Timer: - - S1711656891.409545,VS0,VE1 + - S1728237464.436070,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/datacube/json-schema/schema.json response: @@ -635,11 +639,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 GMT ETag: - - '"65bd0237-1d66"' + - '"66e1651c-1d66"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -651,17 +655,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 78bdd79fd2849452b3a862acb2125a60add6fb25 + - b1841ccf233e68eaa44e90365655b2318b59ce75 X-GitHub-Request-Id: - - 7098:3A1975:EB147E:12C513B:6605CFBA + - 7AFA:687EA:3798A5F:3DF8423:6702CF95 X-Served-By: - - cache-ewr18142-EWR + - cache-den8268-DEN X-Timer: - - S1711656891.484565,VS0,VE5 + - S1728237464.469710,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:50 GMT - x-origin-cache: - - HIT + - Sun, 06 Oct 2024 18:07:43 GMT x-proxy-cache: - MISS status: @@ -675,7 +677,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -757,7 +759,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '5' Cache-Control: - max-age=600 Connection: @@ -767,11 +769,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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: @@ -781,17 +783,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 6a58ac4a5d544f879959d0cdd6246ba29c1f79c9 + - 2a6f0ae31d6e58aa15ce27ec819e5f34dd70f8bc X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18121-EWR + - cache-den8243-DEN X-Timer: - - S1711656892.573105,VS0,VE2 + - S1728237465.506274,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -807,7 +809,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -849,7 +851,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '5' Cache-Control: - max-age=600 Connection: @@ -859,11 +861,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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: @@ -875,15 +877,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fc3c6d915957c08e3e2389700652cb182cda7943 + - eea91873c95998cccace01547526ddd788029a8a X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18166-EWR + - cache-den8244-DEN X-Timer: - - S1711656892.656642,VS0,VE1 + - S1728237465.540840,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 757e17869..130e63960 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.11 + - Python-urllib/3.12 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: - - '67' + - '5' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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: - '1' X-Fastly-Request-ID: - - f9faa71305ed459d4c597d75b26300f93d9d71c8 + - fc37258819b9a87544cb4fc9aa6066803c63c6b6 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18154-EWR + - cache-den8267-DEN X-Timer: - - S1711656892.740357,VS0,VE1 + - S1728237465.577732,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '67' + - '4' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - eb23a0abd3095c84cc969ac17daa99b5a60d18ff + - 689bec29d69d19b0a616ec3a52959360746dae04 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18134-EWR + - cache-den8227-DEN X-Timer: - - S1711656892.811896,VS0,VE1 + - S1728237465.610906,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '67' + - '4' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b1853dd0e01b3a68370b28928473390774ace170 + - 708778419ac7445a037fd9f6d64db5a1724f6a99 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18138-EWR + - cache-den8266-DEN X-Timer: - - S1711656892.900128,VS0,VE1 + - S1728237465.666565,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '67' + - '4' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:51 GMT + - Sun, 06 Oct 2024 17:57:44 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fe46ced4f1b5c1b67bb29b19415f6bbdd0eddcfb + - 486869fc3138b988b7210146d573401c172ebffe X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18171-EWR + - cache-den8230-DEN X-Timer: - - S1711656892.975638,VS0,VE2 + - S1728237465.701807,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '67' + - '4' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:44 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6904b0769398eb31fe5f0d51c49538ba036112c4 + - 8998a683f7ea2d9c7e5f03ff73d07c0d27214f9b X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18140-EWR + - cache-den8254-DEN X-Timer: - - S1711656892.044376,VS0,VE0 + - S1728237465.732817,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '67' + - '4' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:44 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5486d973366066f5695339e1a4a82d5ab3e13296 + - 398709a49275744498e1bb2390b6e55f37728a37 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18163-EWR + - cache-den8223-DEN X-Timer: - - S1711656892.107745,VS0,VE2 + - S1728237465.761066,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -562,11 +566,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:45 GMT ETag: - - '"65bd0237-805"' + - '"66e1651c-805"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -578,15 +582,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 7951f49070c036c2d9194985fc10517db2cb8c93 + - b4d27620d33357074bf1d95bcaa21ac46aa4b494 X-GitHub-Request-Id: - - 23F2:5B37:E736FB:1287063:6605CFBB + - E8D9:1C7115:3966C49:3FC69B2:6702CF98 X-Served-By: - - cache-ewr18152-EWR + - cache-den8277-DEN X-Timer: - - S1711656892.175756,VS0,VE27 + - S1728237465.788111,VS0,VE259 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -602,7 +606,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -651,11 +655,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:45 GMT ETag: - - '"65bd0237-829"' + - '"66e1651c-829"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -667,15 +671,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 98e1d779f43a79a87e63471cdabfd80e226ebc9d + - 34403196742506b49be5d52f8ef340468b78a2a7 X-GitHub-Request-Id: - - A73E:14AB:E3AFAE:124B38F:6605CFBC + - AE2B:2BEEA3:3A11710:4071547:6702CF98 X-Served-By: - - cache-ewr18168-EWR + - cache-den8244-DEN X-Timer: - - S1711656892.267842,VS0,VE17 + - S1728237465.152312,VS0,VE67 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: 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 55eab5343..7f199a301 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.11 + - Python-urllib/3.12 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' + - '5' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:45 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,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 931649e40f689655f417a42c07fea0e4c38f216b + - 332a3d3063929692938d6d779396bbd2931e61e6 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18156-EWR + - cache-den8220-DEN X-Timer: - - S1711656892.368482,VS0,VE2 + - S1728237465.267319,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -139,7 +139,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +181,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '6' Cache-Control: - max-age=600 Connection: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:45 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: @@ -207,15 +207,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 41f8cda964d31eb0735ddcce93ff859234fc96de + - b792fb5fa72c5dda3747aa84f034f2a87cc58029 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18161-EWR + - cache-den8222-DEN X-Timer: - - S1711656892.452858,VS0,VE2 + - S1728237465.303521,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-proxy-cache: - MISS status: @@ -229,7 +229,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/item-assets/json-schema/schema.json response: @@ -272,11 +272,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:45 GMT ETag: - - '"65bd0237-65f"' + - '"66e1651c-65f"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -288,15 +288,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 82a394eb10705cdb5aaa4720c45e72a96abb2e27 + - bd0b77253caa229cd9f1704981721fd77996e5f4 X-GitHub-Request-Id: - - E524:18FA:E476F9:1257F65:6605CFBC + - 5A6D:215EAC:3D1E00F:437DE72:6702CF98 X-Served-By: - - cache-ewr18181-EWR + - cache-den8283-DEN X-Timer: - - S1711656893.531638,VS0,VE27 + - S1728237465.337954,VS0,VE66 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 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 6489c4dcf..866d51c8e 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:20 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:20 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - '1' Strict-Transport-Security: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - d295b80fb43cdba299415b71251c76e79754422b + - 66d5945d662f749bba40fbd501e0e70757694213 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18166-EWR + - cache-den8236-DEN X-Timer: - - S1711656860.000577,VS0,VE1 + - S1728237441.164120,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 6fdd9e82d..0ea9eb618 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.11 + - Python-urllib/3.12 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: - - '4' + - '6' Cache-Control: - max-age=600 Connection: @@ -59,11 +59,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:45 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: @@ -75,15 +75,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f12054c366f076c2a6aa502c98b1de59cd0734a1 + - a9010d5940a8f1ba0cbd5f9a339469cafa27d29a X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18169-EWR + - cache-den8256-DEN X-Timer: - - S1711656893.636446,VS0,VE1 + - S1728237465.452260,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 c846cf7f2..b8c4f569c 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.11 + - Python-urllib/3.12 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: - - '68' + - '5' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:45 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 1c35fd6ab8bc3ac0c215acbc1fa1808233238ae2 + - 9c5a013ced6e8ce2c64f0ad3966912abcf23690a X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18154-EWR + - cache-den8246-DEN X-Timer: - - S1711656893.713103,VS0,VE1 + - S1728237465.488627,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '68' + - '5' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:45 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 447d7f7ec2aae62302e9165b9ed81f4d1546fe41 + - c9bead0cb72e4007673c60ab4dd152313915a69d X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18139-EWR + - cache-den8255-DEN X-Timer: - - S1711656893.792405,VS0,VE1 + - S1728237466.520696,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '68' + - '5' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:45 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: @@ -279,17 +279,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 6fdf00789248d11939c7d512c9a103d533965e61 + - 77066a54a6c6684dbdf525fcf84a2c93bb212935 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18149-EWR + - cache-den8248-DEN X-Timer: - - S1711656893.880234,VS0,VE1 + - S1728237466.552582,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '68' + - '5' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:52 GMT + - Sun, 06 Oct 2024 17:57:45 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 93faa7ab10a82311f4017d5c55c8f929deaa67f6 + - f3d85a041bb1e40f18d5feec9183dda7fd142537 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18165-EWR + - cache-den8232-DEN X-Timer: - - S1711656893.964435,VS0,VE2 + - S1728237466.578631,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '68' + - '5' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:45 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: @@ -416,17 +416,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 99b8a5d2914d8aa0c5debb24ea509825b705bc2f + - b61bdfa05772c0d3d72fbcb8dedec0ec14ff56b8 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18153-EWR + - cache-den8264-DEN X-Timer: - - S1711656893.031959,VS0,VE1 + - S1728237466.609604,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '68' + - '5' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:45 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 831996c1e46429293649d9b48326bc6560075eb4 + - 03ad6fd26e253159b14799ea0e689ab094f02a37 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18126-EWR + - cache-den8235-DEN X-Timer: - - S1711656893.107916,VS0,VE1 + - S1728237466.644955,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -594,11 +598,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:45 GMT ETag: - - '"65bd0237-1226"' + - '"66e1651c-1226"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -610,15 +614,17 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - b4edf0bfc2668a5c808af044b60d4e66e04772ba + - 27826bae49045f55ea148ad969acc9e4c2edb899 X-GitHub-Request-Id: - - 6860:46DB:E0F57D:1224B8A:6605CFBC + - 965A:88140:39A89DD:40086EC:6702CF96 X-Served-By: - - cache-ewr18147-EWR + - cache-den8262-DEN X-Timer: - - S1711656893.192794,VS0,VE28 + - S1728237466.676077,VS0,VE62 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -632,7 +638,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -677,11 +683,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:45 GMT ETag: - - '"65bd0237-70b"' + - '"66e1651c-70b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -693,15 +699,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 4a9431e419b79ad5be5bfb561bd35aff97380f95 + - 43cfcb56b034db5d0830100102ff7713dad0edaf X-GitHub-Request-Id: - - 325E:2B4A:E9B1F7:12ABF6C:6605CFBC + - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 X-Served-By: - - cache-ewr18144-EWR + - cache-den8237-DEN X-Timer: - - S1711656893.295951,VS0,VE23 + - S1728237466.776268,VS0,VE63 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -717,7 +723,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -799,7 +805,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '6' Cache-Control: - max-age=600 Connection: @@ -809,11 +815,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:45 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: @@ -825,15 +831,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5dc7f4a50e9cc42073e84e8b9bc877c7500cb47a + - 04ca0b8dfbb60d38b357022c3c1fa60eb883d615 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18177-EWR + - cache-den8235-DEN X-Timer: - - S1711656893.388325,VS0,VE1 + - S1728237466.878234,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -849,7 +855,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -891,7 +897,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '6' Cache-Control: - max-age=600 Connection: @@ -901,11 +907,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:45 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: @@ -917,15 +923,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 871622187c15f7a86667977dec17bfc5a01e1228 + - f6a462d107d3bb84dbc2634b9445af8a17055ff0 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18152-EWR + - cache-den8277-DEN X-Timer: - - S1711656893.463834,VS0,VE1 + - S1728237466.908856,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 ce0ef800e..ed9447b2a 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.11 + - Python-urllib/3.12 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: - - '69' + - '6' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:45 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: - '1' X-Fastly-Request-ID: - - 305a393a2369da41fc93d9f52d3f481349e7145a + - bcaee3fbcc202e9c79c7845ab1b09a8c52fa4e66 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18153-EWR + - cache-den8262-DEN X-Timer: - - S1711656894.532309,VS0,VE1 + - S1728237466.950449,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '69' + - '6' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:45 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 93ec7987271f4e47cee7a0a92ae647474e3edd2f + - 95bb542b7eb4eadb0586a299cec4fa1486bb9e04 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18169-EWR + - cache-den8256-DEN X-Timer: - - S1711656894.607789,VS0,VE2 + - S1728237466.982320,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '69' + - '6' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:46 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4eacf6fdf65b2014943947565115c5c5d1f94a48 + - 53f24d80fa5a53c37d3f1b02e7d567bdadfd6628 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18121-EWR + - cache-den8252-DEN X-Timer: - - S1711656894.679826,VS0,VE1 + - S1728237466.006335,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '69' + - '6' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:46 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1199bca9aa55ff243e046672f51d3c6c93e4e068 + - 29343b7e2ed71ee75a012a4cde9ca7e61fb7df9f X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18123-EWR + - cache-den8254-DEN X-Timer: - - S1711656894.752655,VS0,VE1 + - S1728237466.031951,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '69' + - '6' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:46 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5c33218471054178d86ff14cfe14547bfdbbcae3 + - 376baea7119a019188ac1107050e088e386e5c38 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18128-EWR + - cache-den8253-DEN X-Timer: - - S1711656894.836257,VS0,VE1 + - S1728237466.069299,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '69' + - '6' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:46 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e9e844efaf256421bd30a65593f4f0288e24ed7a + - 2570a0764a11a23a401adfe1efe92f6a6b948dd0 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18171-EWR + - cache-den8241-DEN X-Timer: - - S1711656894.919631,VS0,VE1 + - S1728237466.098427,VS0,VE3 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -584,7 +588,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '0' Cache-Control: - max-age=600 Connection: @@ -594,11 +598,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:53 GMT + - Sun, 06 Oct 2024 17:57:46 GMT ETag: - - '"65bd0237-1226"' + - '"66e1651c-1226"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -610,15 +614,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5605e6741a2fce756bbb28c4ef1c0169cddd684c + - 73ca6fbd28217f2f2a7d8e25cefe34e1c4bbf3be X-GitHub-Request-Id: - - 6860:46DB:E0F57D:1224B8A:6605CFBC + - 965A:88140:39A89DD:40086EC:6702CF96 X-Served-By: - - cache-ewr18147-EWR + - cache-den8228-DEN X-Timer: - - S1711656894.992103,VS0,VE0 + - S1728237466.127116,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -632,7 +638,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -667,7 +673,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '0' Cache-Control: - max-age=600 Connection: @@ -677,11 +683,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 GMT ETag: - - '"65bd0237-70b"' + - '"66e1651c-70b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -693,15 +699,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e03098b135fee7726c7f81229cecb604a3200fba + - d17ce060e7329d7153ecfde40735809ba4f5105d X-GitHub-Request-Id: - - 325E:2B4A:E9B1F7:12ABF6C:6605CFBC + - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 X-Served-By: - - cache-ewr18133-EWR + - cache-den8262-DEN X-Timer: - - S1711656894.072051,VS0,VE1 + - S1728237466.153236,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -717,7 +723,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -799,7 +805,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '6' Cache-Control: - max-age=600 Connection: @@ -809,11 +815,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 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: @@ -823,17 +829,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - b9233ff37d35c68c9c52150899c57a0a7bb023ff + - fa7da2003af85d60470dc2984410e5e5af428fc0 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18181-EWR + - cache-den8248-DEN X-Timer: - - S1711656894.148041,VS0,VE1 + - S1728237466.179973,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -849,7 +855,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -891,7 +897,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '7' Cache-Control: - max-age=600 Connection: @@ -901,11 +907,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 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: @@ -917,15 +923,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0dcc97726c11fbcd8ca680eb80797a0a9b5f351b + - 899abe83fddf3b6b536e37de7d7dab0afb262049 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18123-EWR + - cache-den8249-DEN X-Timer: - - S1711656894.220637,VS0,VE1 + - S1728237466.207010,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 65eb0b066..0c276dc1b 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.11 + - Python-urllib/3.12 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: - - '70' + - '6' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 543d06940a47caf7b85e27efb0d65a9c73b13a4b + - f8b405c154c17d3381ef350e3ee6045b3e866c71 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18123-EWR + - cache-den8283-DEN X-Timer: - - S1711656894.296803,VS0,VE0 + - S1728237466.236980,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '69' + - '6' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 7e8c90b0c58ec9ca1014b901cfe2980a4ddaeb3a + - e0dbd28b5a59331d5af1a0851a60576f8b0dbaae X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18177-EWR + - cache-den8242-DEN X-Timer: - - S1711656894.372504,VS0,VE2 + - S1728237466.268390,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '69' + - '6' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 85d78086e03acaa6a2bd294ad544be0c74f1d6ab + - e64345f0fb03da32a920d7802fc74775c28eb367 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18172-EWR + - cache-den8267-DEN X-Timer: - - S1711656894.439882,VS0,VE1 + - S1728237466.291818,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '69' + - '6' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 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: @@ -350,17 +350,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '6' + - '1' X-Fastly-Request-ID: - - 6c2c33fc045987eb1b874fa81cc346335548be00 + - 711ee03238d680a89a5c1594a982e1be63b44a73 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18156-EWR + - cache-den8250-DEN X-Timer: - - S1711656895.508433,VS0,VE1 + - S1728237466.317591,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '69' + - '6' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 6abf07804d8ceb5faf037c08e583c7105f89d62f + - dd20b8ea93e506c1aea451a0d8a7f85242cfdc0c X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18132-EWR + - cache-den8271-DEN X-Timer: - - S1711656895.584697,VS0,VE1 + - S1728237466.348886,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '69' + - '6' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a0e4d54f97f9087b6032b3684f712225f6ab2e31 + - 53334a3ae1a958742ee13228ec08e0ba9c9e2c1b X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18138-EWR + - cache-den8247-DEN X-Timer: - - S1711656895.663823,VS0,VE1 + - S1728237466.374327,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -584,7 +588,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '1' Cache-Control: - max-age=600 Connection: @@ -594,11 +598,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 GMT ETag: - - '"65bd0237-1226"' + - '"66e1651c-1226"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -610,15 +614,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d04aaf9f954eaaffae8859a9150f801bf692473a + - ba3f05380a73f85b665588e3de9056163231dc81 X-GitHub-Request-Id: - - 6860:46DB:E0F57D:1224B8A:6605CFBC + - 965A:88140:39A89DD:40086EC:6702CF96 X-Served-By: - - cache-ewr18155-EWR + - cache-den8242-DEN X-Timer: - - S1711656895.740815,VS0,VE1 + - S1728237466.400020,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -632,7 +638,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -667,7 +673,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '1' Cache-Control: - max-age=600 Connection: @@ -677,11 +683,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 GMT ETag: - - '"65bd0237-70b"' + - '"66e1651c-70b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -693,15 +699,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ef0b685963396f52b5fe5401b8a99e069fc9e7b8 + - 05b2d0812bd7e23fd611920274863c6e1fb7ae1a X-GitHub-Request-Id: - - 325E:2B4A:E9B1F7:12ABF6C:6605CFBC + - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 X-Served-By: - - cache-ewr18177-EWR + - cache-den8253-DEN X-Timer: - - S1711656895.823741,VS0,VE1 + - S1728237466.427293,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -717,7 +723,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -799,7 +805,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '7' Cache-Control: - max-age=600 Connection: @@ -809,11 +815,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 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: @@ -825,15 +831,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3c94fa829c21d1c47bcff701c22ac1dc6f4af476 + - 0c94fbc3f85887dffebbcbca1f674c3dd134b827 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18153-EWR + - cache-den8245-DEN X-Timer: - - S1711656895.899707,VS0,VE2 + - S1728237466.460307,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -849,7 +855,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -891,7 +897,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '7' Cache-Control: - max-age=600 Connection: @@ -901,11 +907,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:54 GMT + - Sun, 06 Oct 2024 17:57:46 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: @@ -917,15 +923,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - eac1e5528e29e8d0ed053b8a5175f5be5cbed5a4 + - 7b111fe4deb1cdd70424427299354d3c227458d5 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18171-EWR + - cache-den8259-DEN X-Timer: - - S1711656895.979503,VS0,VE1 + - S1728237466.485179,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 789c4870f..982aeed5a 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.11 + - Python-urllib/3.12 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: - - '6' + - '7' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:55 GMT + - Sun, 06 Oct 2024 17:57:46 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,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1ed32cad9fc5694d31b78a71d48a30b16e1f2504 + - 218e5ad4234c418708a8de4311bfdd990821b2d2 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18182-EWR + - cache-den8281-DEN X-Timer: - - S1711656895.071894,VS0,VE2 + - S1728237467.520399,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -139,7 +139,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +181,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '7' Cache-Control: - max-age=600 Connection: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:55 GMT + - Sun, 06 Oct 2024 17:57:46 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: @@ -207,15 +207,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 80897788f2fcbe47e0513e954ac2551ca731381f + - f49ce45bea7d28aec8ffb107e062237edc8b12fe X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18150-EWR + - cache-den8276-DEN X-Timer: - - S1711656895.163863,VS0,VE1 + - S1728237467.556722,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 906315d7a..9dfd56738 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.11 + - Python-urllib/3.12 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: - - '6' + - '7' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:55 GMT + - Sun, 06 Oct 2024 17:57:46 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,15 +115,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - 6a1a400e79a2a5cc70ce1291fddacfc4a940fa45 + - ec823ef6eeec1f2416243e47d6fcb34a8882467a X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18153-EWR + - cache-den8236-DEN X-Timer: - - S1711656895.247686,VS0,VE1 + - S1728237467.589587,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -139,7 +139,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +181,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '6' + - '7' Cache-Control: - max-age=600 Connection: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:55 GMT + - Sun, 06 Oct 2024 17:57:46 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 +205,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - b3b567fc6088fa56e482fed372012da86770d433 + - 05482112e9d9f6a7396ea7e60926419bd42a5750 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18158-EWR + - cache-den8276-DEN X-Timer: - - S1711656895.332986,VS0,VE2 + - S1728237467.616077,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 3af42dca0..182a00234 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.11 + - Python-urllib/3.12 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: - - '71' + - '7' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:55 GMT + - Sun, 06 Oct 2024 17:57:46 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: - '1' X-Fastly-Request-ID: - - 4d57410302e74ac23ff40dbbe43e3bdf3479ea22 + - b33a00b80598f9e9bb0fd3aceba439ad36e66fb6 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18145-EWR + - cache-den8234-DEN X-Timer: - - S1711656895.419980,VS0,VE2 + - S1728237467.648739,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '71' + - '7' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:55 GMT + - Sun, 06 Oct 2024 17:57:46 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 628d62a5f1526dddb3767edd33458d28e0b0ff2b + - b9fd8acc35a043db98d72de43dd796a8f227fb0a X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18159-EWR + - cache-den8275-DEN X-Timer: - - S1711656896.548349,VS0,VE1 + - S1728237467.681094,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '71' + - '6' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:55 GMT + - Sun, 06 Oct 2024 17:57:46 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - de88a73b4b387bd63bf05a9169f96129b6aee218 + - cecc70472687352e7ded2fa7072c113f057b499d X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18170-EWR + - cache-den8277-DEN X-Timer: - - S1711656896.624133,VS0,VE38 + - S1728237467.709064,VS0,VE52 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '71' + - '6' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:55 GMT + - Sun, 06 Oct 2024 17:57:46 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: @@ -350,17 +350,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 995835936e8890a18b9bcbedaaeb5d94b31fb3e1 + - 109654443b047435fabf6ffe3ff367e2234b57db X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18121-EWR + - cache-den8250-DEN X-Timer: - - S1711656896.740230,VS0,VE1 + - S1728237467.792101,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '71' + - '6' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:55 GMT + - Sun, 06 Oct 2024 17:57:46 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 976d0c435ea722e1552d4655b71e97d031c432ae + - 8ceb9974afc31ae76385a48beb6c92e667c57bc7 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18127-EWR + - cache-den8268-DEN X-Timer: - - S1711656896.823928,VS0,VE1 + - S1728237467.820677,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '71' + - '6' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:55 GMT + - Sun, 06 Oct 2024 17:57:46 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: @@ -490,17 +492,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 5c400aae4421deb6a0be4e6ba7c2be519b85bcb2 + - c410dca4f0e180bdb3513d146bd664b8672dc856 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18173-EWR + - cache-den8251-DEN X-Timer: - - S1711656896.908276,VS0,VE5 + - S1728237467.850074,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -584,7 +588,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '1' Cache-Control: - max-age=600 Connection: @@ -594,11 +598,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:46 GMT ETag: - - '"65bd0237-1226"' + - '"66e1651c-1226"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -610,15 +614,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a273492c5aa94f952d517bd268ff7d31e37b7b71 + - 3eb08a33d429971e3abe820f855d0bffce2d7110 X-GitHub-Request-Id: - - 6860:46DB:E0F57D:1224B8A:6605CFBC + - 965A:88140:39A89DD:40086EC:6702CF96 X-Served-By: - - cache-ewr18137-EWR + - cache-den8256-DEN X-Timer: - - S1711656896.004567,VS0,VE2 + - S1728237467.878494,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -632,7 +638,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -667,7 +673,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '3' + - '1' Cache-Control: - max-age=600 Connection: @@ -677,11 +683,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:46 GMT ETag: - - '"65bd0237-70b"' + - '"66e1651c-70b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -693,15 +699,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fb7e0bd99b3509e7e3db646cd7f92b400e9d5789 + - ca7a107203a3523d0fb045ab00883ee922486edd X-GitHub-Request-Id: - - 325E:2B4A:E9B1F7:12ABF6C:6605CFBC + - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 X-Served-By: - - cache-ewr18174-EWR + - cache-den8255-DEN X-Timer: - - S1711656896.087631,VS0,VE2 + - S1728237467.910037,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -717,7 +723,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -809,11 +815,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:46 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: @@ -823,17 +829,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - c50a1c32592773d5ba69b066c006af44f96faec7 + - 37f943b91045d58ae55b01f384d96559e64df3f0 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18132-EWR + - cache-den8250-DEN X-Timer: - - S1711656896.164434,VS0,VE0 + - S1728237467.943409,VS0,VE7 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -849,7 +855,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -901,11 +907,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:46 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: @@ -917,15 +923,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e633b0f7c3cdc4e606787c3e7adb60bb84d317e4 + - 5970312c44e34bd31f9a924085c6feaf3f47852e X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18182-EWR + - cache-den8238-DEN X-Timer: - - S1711656896.240012,VS0,VE1 + - S1728237467.981112,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 3ef29f999..a90f8f9d8 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.11 + - Python-urllib/3.12 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: - - '71' + - '7' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:47 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 87ca2c85d4401e1cd31a75edf11e10f566f0b5ee + - baa426ff8e262bb6413e58498d1683dbf6641245 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18120-EWR + - cache-den8262-DEN X-Timer: - - S1711656896.315835,VS0,VE2 + - S1728237467.016249,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '71' + - '7' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:47 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a15058af252f421f8347bbf828aa7b6d4296a435 + - f0222886f21aabbd695467006a8ff1e267579093 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18165-EWR + - cache-den8278-DEN X-Timer: - - S1711656896.400000,VS0,VE2 + - S1728237467.050354,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '71' + - '7' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:47 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - cc6b634533a0c5b01f4d71beb75ff48c706a904d + - a6142469d0dc8d663cd6b0a212a9b2991b07aaf1 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18134-EWR + - cache-den8235-DEN X-Timer: - - S1711656896.475812,VS0,VE2 + - S1728237467.077103,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '71' + - '7' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:47 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 467ba44d693fe54db0875ce77a30d1f812e27a46 + - 56e56c886c5bd5d648afc3f6189beb752a687532 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18140-EWR + - cache-den8283-DEN X-Timer: - - S1711656897.552515,VS0,VE3 + - S1728237467.103221,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '71' + - '7' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:47 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: @@ -416,17 +416,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 06bc9723b189ca69d5872fa8018c877c651778cb + - 34b8470cd4a3b3c767ad869ac449cb6312cd9198 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18161-EWR + - cache-den8253-DEN X-Timer: - - S1711656897.636449,VS0,VE1 + - S1728237467.129333,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '71' + - '7' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:47 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 420ddc4c3392f5101011f55a4721ddee68e48b77 + - 66fc39957c26a445cdb369d1d8098ba0f1639bfb X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18162-EWR + - cache-den8224-DEN X-Timer: - - S1711656897.703892,VS0,VE1 + - S1728237467.189525,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -584,7 +588,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '1' Cache-Control: - max-age=600 Connection: @@ -594,11 +598,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:47 GMT ETag: - - '"65bd0237-1226"' + - '"66e1651c-1226"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -610,15 +614,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 17214b845a1f1437d7cb144c7709b921881c64a9 + - b8ce44c019c37644e866e344e30b2195be9c7aa8 X-GitHub-Request-Id: - - 6860:46DB:E0F57D:1224B8A:6605CFBC + - 965A:88140:39A89DD:40086EC:6702CF96 X-Served-By: - - cache-ewr18144-EWR + - cache-den8251-DEN X-Timer: - - S1711656897.780184,VS0,VE2 + - S1728237467.220163,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -632,7 +638,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -667,7 +673,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '2' Cache-Control: - max-age=600 Connection: @@ -677,11 +683,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:48 GMT ETag: - - '"65bd0237-70b"' + - '"66e1651c-70b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -693,15 +699,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 08b819ebb3c636d08fd9badac75f32515e97f1ab + - 9af74557a4d2a0729afaa0ada85fe37a13e444b1 X-GitHub-Request-Id: - - 325E:2B4A:E9B1F7:12ABF6C:6605CFBC + - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 X-Served-By: - - cache-ewr18159-EWR + - cache-den8244-DEN X-Timer: - - S1711656897.863947,VS0,VE1 + - S1728237468.258028,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -717,7 +723,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -809,11 +815,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:56 GMT + - Sun, 06 Oct 2024 17:57:48 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: @@ -825,15 +831,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0873a9ce88b4390bf482607f19a8a32536beb8ef + - 9e9b1fc7f81e1d6b0804cf54c6325856c98790cb X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18176-EWR + - cache-den8233-DEN X-Timer: - - S1711656897.948367,VS0,VE2 + - S1728237468.295748,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -849,7 +855,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -891,7 +897,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '9' Cache-Control: - max-age=600 Connection: @@ -901,11 +907,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 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: @@ -917,15 +923,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f37c877d7b35e84ebe4a5d7378809720e5cb1deb + - b48da250ae50fe7ebf49361fe9122ea1d3ad68f7 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18121-EWR + - cache-den8265-DEN X-Timer: - - S1711656897.024623,VS0,VE1 + - S1728237468.328012,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 32d678d7d..ab0da2a11 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.11 + - Python-urllib/3.12 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: - - '8' + - '9' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 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,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 07acb97942b279ee439fd1478b2bd9965e23dd90 + - 62c5e720d701385797b85a9f8376bedc4374cd55 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18126-EWR + - cache-den8267-DEN X-Timer: - - S1711656897.095836,VS0,VE2 + - S1728237468.370169,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -139,7 +139,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +181,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '8' + - '9' Cache-Control: - max-age=600 Connection: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 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: @@ -207,15 +207,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e88f5e90af24336a70f26afdc66d1e822f9d9970 + - bac1f7ff83a4a72c79b4c0b11a813c03d3a49afb X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18157-EWR + - cache-den8257-DEN X-Timer: - - S1711656897.172004,VS0,VE1 + - S1728237468.401245,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 3e2d6a4d0..492c4ca6b 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.11 + - Python-urllib/3.12 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: - - '72' + - '9' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 0724f5339cd9bf8cccadee234245bf1964917d2a + - 9afe81df82a22734117a78b683d3d78df676171a X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18140-EWR + - cache-den8267-DEN X-Timer: - - S1711656897.260269,VS0,VE1 + - S1728237468.430347,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '72' + - '8' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0c017dca6c11a12491e268ea85afda37f0b9aff8 + - 089cfadf174bb707a06ae4b98c0599e9b6a3cd56 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18132-EWR + - cache-den8251-DEN X-Timer: - - S1711656897.340329,VS0,VE2 + - S1728237468.456972,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '72' + - '8' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 868d2c54d72fc8bf6b9c34c7fb1da8a3260d0a69 + - 3b758fe3e5c7a6e8b692f428966f08670e198989 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18166-EWR + - cache-den8253-DEN X-Timer: - - S1711656897.418297,VS0,VE2 + - S1728237468.481981,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '72' + - '8' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 0bf3730ea9dfe056cf2d7943b2912a541964f79d + - 31aaf115f707571d1ac58438f3fd3a59afc60bcb X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18158-EWR + - cache-den8272-DEN X-Timer: - - S1711656898.501976,VS0,VE1 + - S1728237469.507459,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '72' + - '8' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5f6cf1cc4cc512ab2d4f22276b3e4141d8193bc5 + - 229efeedab692b5c50da089f7e643ff0ee0e9fbc X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18130-EWR + - cache-den8256-DEN X-Timer: - - S1711656898.588247,VS0,VE1 + - S1728237469.536560,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '72' + - '8' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e90a5629f8a1ec6daea8c47184bfd99276426f9d + - dc31148c623ce8e8d6381781bd2eccd47cc72fef X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18136-EWR + - cache-den8234-DEN X-Timer: - - S1711656898.664412,VS0,VE1 + - S1728237469.560451,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json response: @@ -584,7 +588,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '5' + - '3' Cache-Control: - max-age=600 Connection: @@ -594,11 +598,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 GMT ETag: - - '"65bd0237-1226"' + - '"66e1651c-1226"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -610,15 +614,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 67ce2ae73faf0e1a027984232f6f950f4d93e380 + - c03143b9063c80122b962b7b25e485a9d07e0c2f X-GitHub-Request-Id: - - 6860:46DB:E0F57D:1224B8A:6605CFBC + - 965A:88140:39A89DD:40086EC:6702CF96 X-Served-By: - - cache-ewr18128-EWR + - cache-den8247-DEN X-Timer: - - S1711656898.731976,VS0,VE1 + - S1728237469.587854,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -632,7 +638,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/version/json-schema/schema.json response: @@ -667,7 +673,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '4' + - '3' Cache-Control: - max-age=600 Connection: @@ -677,11 +683,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 GMT ETag: - - '"65bd0237-70b"' + - '"66e1651c-70b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -693,15 +699,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 042c93eb1a7188232c0f3d29cf0e291f4b3637ba + - e5942f8ba67a0af5144ba3ab6d7df7d49fee8fa7 X-GitHub-Request-Id: - - 325E:2B4A:E9B1F7:12ABF6C:6605CFBC + - D4E0:269EC6:3A87F01:40E7AF4:6702CF99 X-Served-By: - - cache-ewr18155-EWR + - cache-den8226-DEN X-Timer: - - S1711656898.807794,VS0,VE2 + - S1728237469.626309,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:53 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -717,7 +723,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -809,11 +815,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 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: @@ -823,17 +829,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 8ecce0195ea3a04710eff882a3e9218b854b5d59 + - 86aa73f8a97ba762bf7f1f7e56ca83aba1145d57 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18175-EWR + - cache-den8235-DEN X-Timer: - - S1711656898.888024,VS0,VE2 + - S1728237469.658998,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -849,7 +855,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -901,11 +907,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:57 GMT + - Sun, 06 Oct 2024 17:57:48 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: @@ -917,15 +923,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 02fd396e2afc18825dd62a889ec7977f244c0828 + - 69b7ed054140818a338342c82975799e71ca09ed X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18143-EWR + - cache-den8246-DEN X-Timer: - - S1711656898.964069,VS0,VE1 + - S1728237469.686213,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 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 d54d45ea3..7226331e0 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:20 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:20 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - '1' Strict-Transport-Security: @@ -128,19 +128,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - afca175d42ef4157f468742921d129fde203e784 + - 2e923984c906dede1cc955922f4fe1f0743590e8 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18136-EWR + - cache-den8257-DEN X-Timer: - - S1711656860.083911,VS0,VE1 + - S1728237441.197617,VS0,VE0 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 8221474be..3e82607b8 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.11 + - Python-urllib/3.12 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: - - '73' + - '9' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:48 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 422a8ee5c3227967c1de8c73c216f4983e0eb30b + - 1c97f19765907971679a047a0cfe8d8ed1113978 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18159-EWR + - cache-den8234-DEN X-Timer: - - S1711656898.044479,VS0,VE1 + - S1728237469.723159,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '73' + - '9' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:48 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ff1370bb89710a20a493ba7e1021be5f7482f263 + - 6612ab80c40747cd78cfb10a51e04cbbd1d94cc3 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18168-EWR + - cache-den8260-DEN X-Timer: - - S1711656898.123392,VS0,VE2 + - S1728237469.764966,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '73' + - '9' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:48 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: @@ -279,17 +279,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '3' + - '1' X-Fastly-Request-ID: - - c5a08e6fdccdc13cc4d2ae0be79f385f64d906d4 + - 6d6e53cfada9e2076ca96be7547a0db4d6a0aeaf X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18149-EWR + - cache-den8224-DEN X-Timer: - - S1711656898.204753,VS0,VE1 + - S1728237469.809430,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '73' + - '8' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:48 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4978d2b963a425abd54cb98f9f1bdc574ab70ca1 + - 05bb7b1f9d77d34993bb90efdf9cc61789f41f0b X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18166-EWR + - cache-den8222-DEN X-Timer: - - S1711656898.283789,VS0,VE1 + - S1728237469.840067,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '73' + - '8' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:48 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a493ff992a4005817d3ea6f3990a4d1ae94f05fb + - 4223be7b8c57f8484d34032bc71e3a5bc80192e7 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18167-EWR + - cache-den8251-DEN X-Timer: - - S1711656898.348488,VS0,VE1 + - S1728237469.866615,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '73' + - '8' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:48 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 7d1a2bdf019721f267ab57fd56e7ef07718d757f + - 6f31f9c579b1848818216e7fce99f6ce789c9c21 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18145-EWR + - cache-den8277-DEN X-Timer: - - S1711656898.416034,VS0,VE1 + - S1728237469.889493,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: 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 275178522..ee80d2792 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.11 + - Python-urllib/3.12 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: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:48 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: - '1' X-Fastly-Request-ID: - - bd3447b0dc5f221c9b32e49e7c28057bc2fbd848 + - 487e898d70a66012023cf08bede5af55defafdea X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18143-EWR + - cache-den8273-DEN X-Timer: - - S1711656898.491977,VS0,VE1 + - S1728237469.916784,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:48 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a201b9ad5246c041c5249c9073a8b62228f419f1 + - 05a310eabae1358fceac05d08c082ba8e4987f4d X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18143-EWR + - cache-den8239-DEN X-Timer: - - S1711656899.576088,VS0,VE2 + - S1728237469.967653,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:48 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1d98ac81fea44d43db5768539b1f4bc7ad223b19 + - 4d05b0d7b3919a61aa8baac25a86b962cd34c20f X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18159-EWR + - cache-den8245-DEN X-Timer: - - S1711656899.672447,VS0,VE2 + - S1728237469.991432,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:49 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a8dc4dc1b2d756391e51b9f9aa46a79888a9cc28 + - 6f96eb9a706b65e6a2b5e398fa5d62fb6c829a7b X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18130-EWR + - cache-den8229-DEN X-Timer: - - S1711656899.752150,VS0,VE2 + - S1728237469.017347,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:49 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: @@ -416,17 +416,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '3' X-Fastly-Request-ID: - - 9f61422736525192cdc575705bab7c581fcc42ee + - 4cad016848fc540ec76c396ff799b4d17e3a91d5 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18123-EWR + - cache-den8253-DEN X-Timer: - - S1711656899.831818,VS0,VE1 + - S1728237469.043097,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:49 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 9070dd4758bf005184f67d707f846800018637f7 + - b3ae1cf465eedbfabab44f3beb733ae516db77c7 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18161-EWR + - cache-den8258-DEN X-Timer: - - S1711656899.904786,VS0,VE1 + - S1728237469.074814,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: 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 3a7bfdb99..c67e2042a 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.11 + - Python-urllib/3.12 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: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -99,11 +99,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:58 GMT + - Sun, 06 Oct 2024 17:57:49 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: - '1' X-Fastly-Request-ID: - - 1339433aeb1f0f1d18d58844161eee81a57241d1 + - f9683eaec34b2df7534060ac3f434ed9874b4959 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18179-EWR + - cache-den8238-DEN X-Timer: - - S1711656899.996624,VS0,VE1 + - S1728237469.108425,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:59 GMT + - Sun, 06 Oct 2024 17:57:49 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 72fa7fbca852eaf8fb6ad91b373b01460ef503e4 + - f49fcb7064e67a56a298d786ffcdd7c02a71d131 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18179-EWR + - cache-den8235-DEN X-Timer: - - S1711656899.072403,VS0,VE2 + - S1728237469.138643,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:59 GMT + - Sun, 06 Oct 2024 17:57:49 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 95cf10d8ae3e6ffc7f6be19208e29570e27bfc68 + - 029f891053bf193053318d9c8973d6bcc7c1cc3d X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18133-EWR + - cache-den8246-DEN X-Timer: - - S1711656899.151489,VS0,VE1 + - S1728237469.163303,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:59 GMT + - Sun, 06 Oct 2024 17:57:49 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1f65791fc48c7ba661a687b77dc876c24b8baea4 + - f5e944ecb6462452ba2187f5c219d64201521a70 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18120-EWR + - cache-den8226-DEN X-Timer: - - S1711656899.235746,VS0,VE2 + - S1728237469.189360,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:59 GMT + - Sun, 06 Oct 2024 17:57:49 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fd28be805f71acc67702a0701b2ab17549863166 + - 403bca2acabfeb31c252d6d6bc642c938a8eb3c9 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18133-EWR + - cache-den8278-DEN X-Timer: - - S1711656899.304100,VS0,VE1 + - S1728237469.233424,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '74' + - '9' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:59 GMT + - Sun, 06 Oct 2024 17:57:49 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - cefa8be7991d2f7f625106b5f76e3c24d584bbf3 + - cb852b038531f61c90bf43057b87cebf37a73cd3 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18150-EWR + - cache-den8271-DEN X-Timer: - - S1711656899.372252,VS0,VE2 + - S1728237469.303118,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -552,7 +556,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '7' + - '4' Cache-Control: - max-age=600 Connection: @@ -562,11 +566,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:59 GMT + - Sun, 06 Oct 2024 17:57:49 GMT ETag: - - '"65bd0237-805"' + - '"66e1651c-805"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -578,15 +582,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 163b63b3d7c0e6cde305af597f9b3075b0dd7e76 + - 6bb544daa5b4e35ed25b47d158dcb601875972ca X-GitHub-Request-Id: - - 23F2:5B37:E736FB:1287063:6605CFBB + - E8D9:1C7115:3966C49:3FC69B2:6702CF98 X-Served-By: - - cache-ewr18142-EWR + - cache-den8262-DEN X-Timer: - - S1711656899.448710,VS0,VE9 + - S1728237469.336773,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -602,7 +606,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/projection/json-schema/schema.json response: @@ -666,11 +670,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:59 GMT + - Sun, 06 Oct 2024 17:57:49 GMT ETag: - - '"65bd0237-dc7"' + - '"66e1651c-dc7"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -682,15 +686,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 286159cdc6e598af9d5d6ab398c65b48924c1ad0 + - 43337f9a10251617ac36b13aa0f60870050c3c65 X-GitHub-Request-Id: - - B474:9FDF:DBCC1B:11CF058:6605CFC3 + - E8DC:3E300:36AED75:3D0E8FA:6702CF9D X-Served-By: - - cache-ewr18160-EWR + - cache-den8246-DEN X-Timer: - - S1711656900.532400,VS0,VE20 + - S1728237469.369263,VS0,VE64 expires: - - Thu, 28 Mar 2024 20:24:59 GMT + - Sun, 06 Oct 2024 18:07:49 GMT x-origin-cache: - HIT x-proxy-cache: @@ -706,7 +710,7 @@ interactions: Host: - proj.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://proj.org/schemas/v0.2/projjson.schema.json response: @@ -716,9 +720,9 @@ interactions: Access-Control-Allow-Origin: - '*' CF-Cache-Status: - - MISS + - EXPIRED CF-Ray: - - 86ba4a26bd2641fb-EWR + - 8ce7893adb847b20-DEN Cache-Control: - max-age=1200 Connection: @@ -730,17 +734,18 @@ interactions: Content-Type: - text/html; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:14:59 GMT + - Sun, 06 Oct 2024 17:57:50 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; + 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: @@ -748,7 +753,7 @@ interactions: referrer-policy: - no-referrer-when-downgrade x-backend: - - web-i-05c117ec516ff1d60 + - web-i-00198cede0d27448d x-content-type-options: - nosniff x-rtd-domain: @@ -774,21 +779,23 @@ interactions: Host: - proj.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://proj.org/en/latest/schemas/v0.2/projjson.schema.json response: body: string: "{\n \"$id\": \"https://proj.org/schemas/v0.2/projjson.schema.json\",\n \ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"description\": - \"Schema for PROJJSON (v0.2.1)\",\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.2.1)\",\n \"$comment\": \"This document is copyright + Even Rouault and PROJ contributors, 2019-2020, 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\" @@ -1220,9 +1227,9 @@ interactions: Access-Control-Allow-Origin: - '*' CF-Cache-Status: - - MISS + - HIT CF-Ray: - - 86ba4a28bc8e0c80-EWR + - 8ce7893c381969db-DEN Cache-Control: - max-age=1200 Connection: @@ -1230,33 +1237,36 @@ interactions: Content-Type: - application/json Date: - - Thu, 28 Mar 2024 20:15:00 GMT + - Sun, 06 Oct 2024 17:57:50 GMT ETag: - - W/"229554e540c67351947cd45680c62eef" + - W/"54be42a997d748d338984583b3f2c900" Last-Modified: - - Tue, 07 Feb 2023 19:36:50 GMT + - Thu, 25 Apr 2024 19:53:05 GMT Server: - cloudflare + Set-Cookie: + - _cfuvid=yXX.fdMsUli60Rmv0sUpGsBXj17gVCSH378gbBpVmK8-1728237470200-0.0.1.1-604800000; + path=/; domain=.proj.org; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked Vary: - 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: - - 4cF+iaelIycTz63ZRs3qOoue6uBVN/YbrM1P094ScvL+hHDIICPqGt4HKW77KnWNrh6wHU4QjaM= + - f5aASN/bFyj2phyPzWWHQ68IHhNiPEXh6zTTeg9+RJ9QQzj6sVVR2aT8uGUxg5L0kRyrjZjApiE= + x-amz-meta-mtime: + - '1714074779.458591481' x-amz-request-id: - - B2V799T0ED750CXZ + - R8NFNYA0GYKBVMPW x-amz-server-side-encryption: - AES256 x-backend: - - web-i-0da202e90bd9b7c41 + - web-i-0437d377c305e1f87 x-content-type-options: - nosniff x-rtd-domain: @@ -1286,7 +1296,7 @@ interactions: Host: - geojson.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://geojson.org/schema/Polygon.json response: @@ -1318,7 +1328,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:00 GMT + - Sun, 06 Oct 2024 17:57:50 GMT ETag: - '"65f73090-2bf"' Last-Modified: @@ -1334,17 +1344,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 060ef9f9b37017c8914774c928861524b2914553 + - bebe90016f9f2e3aba4dbd36ced3d8a3c0d67b9b X-GitHub-Request-Id: - - BA98:3D15:F3417D:1347565:6605CFC4 + - 888E:6EE00:3E54492:44B40E0:6702CF9E X-Served-By: - - cache-ewr18160-EWR + - cache-den8225-DEN X-Timer: - - S1711656900.467702,VS0,VE16 + - S1728237470.446000,VS0,VE65 expires: - - Thu, 28 Mar 2024 20:25:00 GMT - x-origin-cache: - - HIT + - Sun, 06 Oct 2024 18:07:50 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 5da5c66dd..ae8cc702e 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.11 + - Python-urllib/3.12 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: - - '76' + - '10' 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:00 GMT + - Sun, 06 Oct 2024 17:57:50 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: - '1' X-Fastly-Request-ID: - - 7a8e533dad84d34ff2aa4dc4e185d9b7f8b4262c + - d1dfc374a1373d5080f5e1038ac8f6616e557545 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18147-EWR + - cache-den8255-DEN X-Timer: - - S1711656901.564043,VS0,VE2 + - S1728237471.553422,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '76' + - '10' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:00 GMT + - Sun, 06 Oct 2024 17:57:50 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fdde3cc8b168e2eacae697d081a1670d1a611902 + - 9523e9ac0a5ec2c6637513b60dc655578e4c6668 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18152-EWR + - cache-den8270-DEN X-Timer: - - S1711656901.645998,VS0,VE1 + - S1728237471.581627,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '76' + - '10' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:00 GMT + - Sun, 06 Oct 2024 17:57:50 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f6a1c3884fc7310b2f452747d66c6b50cb4c4251 + - 1ec1652611ddc3c4666892d7d1234a520a5a1432 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18129-EWR + - cache-den8249-DEN X-Timer: - - S1711656901.732539,VS0,VE2 + - S1728237471.607907,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '76' + - '10' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:00 GMT + - Sun, 06 Oct 2024 17:57:50 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 8c705281b2b12b5d4fc44e5bef107cd13173c2a2 + - 919571fde4e182f8888715950426741744cd62f7 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18147-EWR + - cache-den8234-DEN X-Timer: - - S1711656901.819725,VS0,VE2 + - S1728237471.634616,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '76' + - '11' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:00 GMT + - Sun, 06 Oct 2024 17:57:51 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2aeb89db6e61b48277e2a32f83b73571323d6325 + - 5e2fd55999c624872a6fddb746d38b83c1316439 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18125-EWR + - cache-den8263-DEN X-Timer: - - S1711656901.899811,VS0,VE2 + - S1728237472.669307,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '76' + - '11' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:00 GMT + - Sun, 06 Oct 2024 17:57:51 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 04f6ca6fa7ccc7418c15586c39d5d07d5014a138 + - 4063c1ad8730d865aa6e61f86be46ea355f9bf8d X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18165-EWR + - cache-den8225-DEN X-Timer: - - S1711656901.975640,VS0,VE1 + - S1728237472.703180,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sat/json-schema/schema.json response: @@ -554,11 +558,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:01 GMT + - Sun, 06 Oct 2024 17:57:52 GMT ETag: - - '"65bd0237-5bb"' + - '"66e1651c-5bb"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -570,15 +574,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - b2a4aa8b3d555647fa40207f0af6aebedcc9bb3f + - baf333d6df529190bcb2ac1e80a092a53fc9b50d X-GitHub-Request-Id: - - FEF8:1218:F7FD3C:13936AE:6605CFC4 + - C07F:1A16E6:3879144:3ED8D70:6702CF9F X-Served-By: - - cache-ewr18138-EWR + - cache-den8268-DEN X-Timer: - - S1711656901.052927,VS0,VE22 + - S1728237472.733189,VS0,VE274 expires: - - Thu, 28 Mar 2024 20:25:01 GMT + - Sun, 06 Oct 2024 18:07:51 GMT x-origin-cache: - HIT x-proxy-cache: @@ -594,7 +598,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sar/json-schema/schema.json response: @@ -671,11 +675,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:01 GMT + - Sun, 06 Oct 2024 17:57:52 GMT ETag: - - '"65bd0237-10cd"' + - '"66e1651c-10cd"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -687,17 +691,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 2cb33f34e4f880fd49f6eabd6c44b3848ca5f72f + - 3184c84968f7c16b1d943be9bd5c5529c3db77e9 X-GitHub-Request-Id: - - 48B0:46DB:E0FA5C:122514F:6605CFC5 + - 3735:687EA:3799315:3DF8DF3:6702CF9F X-Served-By: - - cache-ewr18138-EWR + - cache-den8221-DEN X-Timer: - - S1711656901.155671,VS0,VE19 + - S1728237472.109644,VS0,VE78 expires: - - Thu, 28 Mar 2024 20:25:01 GMT - x-origin-cache: - - HIT + - Sun, 06 Oct 2024 18:07:52 GMT 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 1f7a92490..08c1262e5 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.11 + - Python-urllib/3.12 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: - - '76' + - '12' 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:01 GMT + - Sun, 06 Oct 2024 17:57:52 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 8d81e49347e7d364b105015abb9410ce487c8bd6 + - 632c38737f25c29339c257cf79173baf3242d878 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18121-EWR + - cache-den8283-DEN X-Timer: - - S1711656901.267644,VS0,VE2 + - S1728237472.231303,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '76' + - '12' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:01 GMT + - Sun, 06 Oct 2024 17:57:52 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 20baf7054678155df8804954547542f56951ca99 + - a9a8eb3edd72681850487d6ff7231476faad782e X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18155-EWR + - cache-den8276-DEN X-Timer: - - S1711656901.352461,VS0,VE1 + - S1728237472.261349,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '76' + - '12' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:01 GMT + - Sun, 06 Oct 2024 17:57:52 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f6062355d2d15f9498a9784702b1c7aa3f11b5ed + - 052c8dece77aa75185e7a18b482dcb0411d85ee2 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18154-EWR + - cache-den8227-DEN X-Timer: - - S1711656901.431629,VS0,VE2 + - S1728237472.290817,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '76' + - '12' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:01 GMT + - Sun, 06 Oct 2024 17:57:52 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ce85defe2ceedf2c1d05b0713811dcb153f009b7 + - 6ea95cac2c0fc5148cd90c0fa9c543bc500cf1d7 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18178-EWR + - cache-den8273-DEN X-Timer: - - S1711656902.511834,VS0,VE2 + - S1728237472.319116,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '76' + - '12' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:01 GMT + - Sun, 06 Oct 2024 17:57:52 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: @@ -416,17 +416,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '12' + - '1' X-Fastly-Request-ID: - - 904377a3fc897cd44f78b332b0cd2ae7e09760bd + - ba1de459341c7fce796325242e7d6c041586776b X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18181-EWR + - cache-den8280-DEN X-Timer: - - S1711656902.591805,VS0,VE1 + - S1728237472.379958,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '76' + - '12' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:01 GMT + - Sun, 06 Oct 2024 17:57:52 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: @@ -490,17 +492,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - 784f01c6aecaa0501aa809769e0189e598c844dc + - d0d45a62408c4233c88be465f4a6548aafb1fcfb X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18151-EWR + - cache-den8225-DEN X-Timer: - - S1711656902.676346,VS0,VE1 + - S1728237472.411476,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/checksum/json-schema/schema.json response: @@ -567,11 +571,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:01 GMT + - Sun, 06 Oct 2024 17:57:52 GMT ETag: - - '"65bd0237-939"' + - '"66e1651c-939"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -583,15 +587,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 2942bf0e9b6a22f859bf83dec25fc378025c516e + - 11d7094dd3c1a8362a3803458680624f6177dbe0 X-GitHub-Request-Id: - - 5588:2AA28D:E2A75A:123F7B0:6605CFB9 + - 7DC6:215EAC:3D1DA0A:437D7E0:6702CF93 X-Served-By: - - cache-ewr18129-EWR + - cache-den8282-DEN X-Timer: - - S1711656902.767834,VS0,VE2 + - S1728237472.439052,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:50 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -607,7 +611,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -659,11 +663,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:01 GMT + - Sun, 06 Oct 2024 17:57:52 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: @@ -675,15 +679,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f47baeb237de56e93c1a1711f1ee66b03f4a6089 + - dac8d44b731cd8e9f49b16bba99da9a303c902e9 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18126-EWR + - cache-den8283-DEN X-Timer: - - S1711656902.852521,VS0,VE5 + - S1728237472.475023,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-proxy-cache: - MISS status: @@ -697,7 +701,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -779,7 +783,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '12' + - '13' Cache-Control: - max-age=600 Connection: @@ -789,11 +793,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:01 GMT + - Sun, 06 Oct 2024 17:57:52 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: @@ -805,15 +809,15 @@ interactions: X-Cache-Hits: - '2' X-Fastly-Request-ID: - - 726ac7a2d15636fa54afad7c7165cd2b0634fc28 + - 324de72242d050628116a0178142f6131e64275b X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18121-EWR + - cache-den8245-DEN X-Timer: - - S1711656902.940321,VS0,VE1 + - S1728237473.506216,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -829,7 +833,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sar/json-schema/schema.json response: @@ -896,7 +900,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '0' Cache-Control: - max-age=600 Connection: @@ -906,11 +910,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:02 GMT + - Sun, 06 Oct 2024 17:57:52 GMT ETag: - - '"65bd0237-10cd"' + - '"66e1651c-10cd"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -922,17 +926,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - adc33aa4c030ee40d42cd927d7e6ba386429e8bf + - 78e08df10a3d065c17d369d8073842cfe73947d5 X-GitHub-Request-Id: - - 48B0:46DB:E0FA5C:122514F:6605CFC5 + - 3735:687EA:3799315:3DF8DF3:6702CF9F X-Served-By: - - cache-ewr18183-EWR + - cache-den8259-DEN X-Timer: - - S1711656902.023679,VS0,VE2 + - S1728237473.534507,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:01 GMT - x-origin-cache: - - HIT + - Sun, 06 Oct 2024 18:07:52 GMT x-proxy-cache: - MISS status: @@ -946,7 +948,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sat/json-schema/schema.json response: @@ -986,11 +988,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:02 GMT + - Sun, 06 Oct 2024 17:57:52 GMT ETag: - - '"65bd0237-5bb"' + - '"66e1651c-5bb"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -1002,15 +1004,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ca98627007709c8fb6276188e483f1978764a4c6 + - 0889cd2624b75a163edac93aaef2c29b631790c4 X-GitHub-Request-Id: - - FEF8:1218:F7FD3C:13936AE:6605CFC4 + - C07F:1A16E6:3879144:3ED8D70:6702CF9F X-Served-By: - - cache-ewr18130-EWR + - cache-den8263-DEN X-Timer: - - S1711656902.111973,VS0,VE1 + - S1728237473.569794,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:01 GMT + - Sun, 06 Oct 2024 18:07:51 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 af5d4f4fb..c6c92baf3 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.11 + - Python-urllib/3.12 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: - - '78' + - '13' 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:02 GMT + - Sun, 06 Oct 2024 17:57:52 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: @@ -113,17 +113,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 5e251be7b5e3153f9c25454e5108fbddf09c8457 + - fe0da05d543d7643618cba863eef4caa5742218a X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18145-EWR + - cache-den8266-DEN X-Timer: - - S1711656902.188432,VS0,VE1 + - S1728237473.609010,VS0,VE3 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '77' + - '12' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:02 GMT + - Sun, 06 Oct 2024 17:57:52 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b3b1945706677d7f17b23346a1eecedde6bcc10a + - 679bdf47366d543dc1d38aa89231bac8f8a85a69 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18151-EWR + - cache-den8250-DEN X-Timer: - - S1711656902.264751,VS0,VE2 + - S1728237473.638830,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '77' + - '12' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:02 GMT + - Sun, 06 Oct 2024 17:57:52 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 4cc3f66722e53db9e24131011ffd83c978ccf2d5 + - c47c57ddb3e3b8026868148760dd3df6c34d873d X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18126-EWR + - cache-den8265-DEN X-Timer: - - S1711656902.344612,VS0,VE1 + - S1728237473.665099,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '77' + - '12' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:02 GMT + - Sun, 06 Oct 2024 17:57:52 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 30d3ba664e3589328d8eecf2ece87226836a9994 + - 2598f8c5d678aa16b295fc871f326854f0f7f158 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18152-EWR + - cache-den8265-DEN X-Timer: - - S1711656902.424672,VS0,VE1 + - S1728237473.692645,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '77' + - '12' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:02 GMT + - Sun, 06 Oct 2024 17:57:52 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - b393d45ee4ceeb11340741539a2fca04e50d3f61 + - eecc0bfac13cde1b41b4e06a739a58b983da58a1 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18182-EWR + - cache-den8245-DEN X-Timer: - - S1711656903.504765,VS0,VE1 + - S1728237473.722763,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '77' + - '12' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:02 GMT + - Sun, 06 Oct 2024 17:57:52 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - ce9331f6575e81010cfe59672d8eb801f9b5650d + - fd65b7a2d85a4e0dbc44674b611834e5025079dd X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18159-EWR + - cache-den8239-DEN X-Timer: - - S1711656903.600566,VS0,VE2 + - S1728237473.750855,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sat/json-schema/schema.json response: @@ -544,7 +548,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '2' + - '1' Cache-Control: - max-age=600 Connection: @@ -554,11 +558,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:02 GMT + - Sun, 06 Oct 2024 17:57:52 GMT ETag: - - '"65bd0237-5bb"' + - '"66e1651c-5bb"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -570,15 +574,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 67ff4f98b795df9ca9a16dee1442b430fb0246ae + - 98a8deda177efadb86cca17a982bccd69e3207e0 X-GitHub-Request-Id: - - FEF8:1218:F7FD3C:13936AE:6605CFC4 + - C07F:1A16E6:3879144:3ED8D70:6702CF9F X-Served-By: - - cache-ewr18160-EWR + - cache-den8272-DEN X-Timer: - - S1711656903.685379,VS0,VE1 + - S1728237473.778621,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:25:01 GMT + - Sun, 06 Oct 2024 18:07:51 GMT x-origin-cache: - HIT x-proxy-cache: @@ -594,7 +598,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/view/json-schema/schema.json response: @@ -633,7 +637,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '10' + - '8' Cache-Control: - max-age=600 Connection: @@ -643,11 +647,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:02 GMT + - Sun, 06 Oct 2024 17:57:52 GMT ETag: - - '"65bd0237-829"' + - '"66e1651c-829"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -659,15 +663,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d2b96f798c305e7a5ffdcf17a7077a5f3355d33a + - 0c66a733e0d7fd313cfb1c45dd307b17d4d57184 X-GitHub-Request-Id: - - A73E:14AB:E3AFAE:124B38F:6605CFBC + - AE2B:2BEEA3:3A11710:4071547:6702CF98 X-Served-By: - - cache-ewr18142-EWR + - cache-den8228-DEN X-Timer: - - S1711656903.765120,VS0,VE1 + - S1728237473.812193,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: 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 09699de15..94b07b98b 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.11 + - Python-urllib/3.12 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: - - '14' + - '13' 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:02 GMT + - Sun, 06 Oct 2024 17:57:52 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,15 +115,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 40ff46baaccf99f7e293c7f3a115086dcfc9c091 + - 0834e25c857ed601885b82c79bfc71a355b749e4 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18130-EWR + - cache-den8268-DEN X-Timer: - - S1711656903.852133,VS0,VE1 + - S1728237473.848760,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -139,7 +139,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -181,7 +181,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '13' Cache-Control: - max-age=600 Connection: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:02 GMT + - Sun, 06 Oct 2024 17:57:52 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 +205,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 3a0a490e60b9923af81fd3c3a0942db9856ac49e + - 32f47f167e2e8f2e99ab2233519fc91159ba1ced X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18122-EWR + - cache-den8243-DEN X-Timer: - - S1711656903.928310,VS0,VE0 + - S1728237473.879154,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-proxy-cache: - MISS status: @@ -229,7 +229,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/scientific/json-schema/schema.json response: @@ -283,11 +283,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:03 GMT + - Sun, 06 Oct 2024 17:57:52 GMT ETag: - - '"65bd0237-9a3"' + - '"66e1651c-9a3"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -299,15 +299,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - 33c2ac4cdddf588d76ead2a57992dcf196aa154f + - fcbf86def4980100cc19348b243f2a2f8fdc7958 X-GitHub-Request-Id: - - BB9A:5B96:E30259:124030C:6605CFC6 + - D2D5:269EC6:3A88965:40E8637:6702CFA0 X-Served-By: - - cache-ewr18157-EWR + - cache-den8264-DEN X-Timer: - - S1711656903.012213,VS0,VE177 + - S1728237473.904130,VS0,VE63 expires: - - Thu, 28 Mar 2024 20:25:03 GMT + - Sun, 06 Oct 2024 18:07:52 GMT x-origin-cache: - HIT x-proxy-cache: @@ -323,7 +323,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/item.json response: @@ -405,7 +405,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '78' + - '13' Cache-Control: - max-age=600 Connection: @@ -415,11 +415,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:03 GMT + - Sun, 06 Oct 2024 17:57:53 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: @@ -431,15 +431,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 25be093c9abdde956b781fc1351ebb6b5b1d4bfa + - 6927053677e2f0b36c5d94cae95dfcdee2cebf4d X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18139-EWR + - cache-den8233-DEN X-Timer: - - S1711656903.263731,VS0,VE2 + - S1728237473.000783,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 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 87f3ed097..4e13c05df 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.11 + - Python-urllib/3.12 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: - - '78' + - '13' 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:03 GMT + - Sun, 06 Oct 2024 17:57:53 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: - '1' X-Fastly-Request-ID: - - cf809f3b76eea723cefee2ded7298e3456450d0d + - 9e23f245db5af251e1805e1b92038dbf986542d4 X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18161-EWR + - cache-den8261-DEN X-Timer: - - S1711656903.345187,VS0,VE2 + - S1728237473.049627,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '78' + - '13' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:03 GMT + - Sun, 06 Oct 2024 17:57:53 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: @@ -180,17 +180,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '16' + - '1' X-Fastly-Request-ID: - - 4037b3511f4c9e4aa189ba036e12ff8e9983925c + - 1939f856fa2e87e547bd6c29749d68fa6a602922 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18174-EWR + - cache-den8274-DEN X-Timer: - - S1711656903.419985,VS0,VE1 + - S1728237473.086626,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '78' + - '13' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:03 GMT + - Sun, 06 Oct 2024 17:57:53 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: @@ -279,17 +279,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '2' X-Fastly-Request-ID: - - cb1c71efb870340a5a868b4f20fa7e30648a1e14 + - b0e49191eb0ee7cb8f064dabf45fe4819ac8dc15 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18144-EWR + - cache-den8245-DEN X-Timer: - - S1711656903.492590,VS0,VE34 + - S1728237473.118638,VS0,VE0 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '78' + - '13' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:03 GMT + - Sun, 06 Oct 2024 17:57:53 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - e0ad312353270891c6a76a707814ddfe737aeba3 + - 688295d86270f7e6e6672d4713bae5a3590c5b44 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18129-EWR + - cache-den8248-DEN X-Timer: - - S1711656904.607692,VS0,VE1 + - S1728237473.161856,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '78' + - '13' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:03 GMT + - Sun, 06 Oct 2024 17:57:53 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: @@ -416,17 +416,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '1' + - '4' X-Fastly-Request-ID: - - e0ab07e01bf43b3a85db4f7626efa1682d2d4801 + - d9ab063ecd43dff708f21cc4a637cda4dca374b4 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18173-EWR + - cache-den8253-DEN X-Timer: - - S1711656904.683811,VS0,VE2 + - S1728237473.194268,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '78' + - '13' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:03 GMT + - Sun, 06 Oct 2024 17:57:53 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 +494,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 48bb370469eb3e517aa521e05241b38f98aab3e2 + - a0cbf37bb7b8f012065f76ec9aa9a11ce9d753e7 X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18149-EWR + - cache-den8257-DEN X-Timer: - - S1711656904.752441,VS0,VE1 + - S1728237473.221876,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/scientific/json-schema/schema.json response: @@ -558,7 +562,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '0' Cache-Control: - max-age=600 Connection: @@ -568,11 +572,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:03 GMT + - Sun, 06 Oct 2024 17:57:53 GMT ETag: - - '"65bd0237-9a3"' + - '"66e1651c-9a3"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -584,15 +588,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 5cb771ca242e851f629422b53d67b1d49fee5514 + - d032a76e5736c41326aa757299a35a3d32293147 X-GitHub-Request-Id: - - BB9A:5B96:E30259:124030C:6605CFC6 + - D2D5:269EC6:3A88965:40E8637:6702CFA0 X-Served-By: - - cache-ewr18156-EWR + - cache-den8244-DEN X-Timer: - - S1711656904.831693,VS0,VE1 + - S1728237473.249914,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:25:03 GMT + - Sun, 06 Oct 2024 18:07:52 GMT x-origin-cache: - HIT x-proxy-cache: @@ -608,7 +612,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -690,7 +694,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '13' Cache-Control: - max-age=600 Connection: @@ -700,11 +704,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:03 GMT + - Sun, 06 Oct 2024 17:57:53 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: @@ -716,15 +720,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f68cd583da10dd91ccebe036fd9a2931cd866427 + - dd32f1015ce8677ceafda16f08f43599e721a003 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18159-EWR + - cache-den8241-DEN X-Timer: - - S1711656904.921460,VS0,VE2 + - S1728237473.284193,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -740,7 +744,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -782,7 +786,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '15' + - '14' Cache-Control: - max-age=600 Connection: @@ -792,11 +796,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:03 GMT + - Sun, 06 Oct 2024 17:57:53 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: @@ -808,15 +812,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a3475b5662c4964236029e765ba589a4ae5e4e36 + - 915c8cf90978b5ac6e52f5a53e10c6f3ab2bfc02 X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18128-EWR + - cache-den8248-DEN X-Timer: - - S1711656904.995744,VS0,VE1 + - S1728237473.313751,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-proxy-cache: - MISS status: @@ -830,7 +834,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/checksum/json-schema/schema.json response: @@ -873,7 +877,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '13' Cache-Control: - max-age=600 Connection: @@ -883,11 +887,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:04 GMT + - Sun, 06 Oct 2024 17:57:53 GMT ETag: - - '"65bd0237-939"' + - '"66e1651c-939"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -899,15 +903,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - d72bf02998b83a772c21c7ad9096ec8c2cf1e8be + - d51a20212b257f6629c79298f13c34661f92bfb3 X-GitHub-Request-Id: - - 5588:2AA28D:E2A75A:123F7B0:6605CFB9 + - 7DC6:215EAC:3D1DA0A:437D7E0:6702CF93 X-Served-By: - - cache-ewr18125-EWR + - cache-den8239-DEN X-Timer: - - S1711656904.065751,VS0,VE1 + - S1728237473.342424,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:50 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: 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 2a19696ea..a3e04f250 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.11 + - Python-urllib/3.12 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: - - '79' + - '14' 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:04 GMT + - Sun, 06 Oct 2024 17:57:54 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: - '1' X-Fastly-Request-ID: - - 9796cf107feeb5d76525455c50427a02163dcc81 + - 37e7288cb6ad488cceaa817f30c88d0e87bc706b X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18165-EWR + - cache-den8265-DEN X-Timer: - - S1711656904.147757,VS0,VE2 + - S1728237474.388122,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '79' + - '14' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:04 GMT + - Sun, 06 Oct 2024 17:57:54 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 815b3f886bef561ad5e3c4a2919aaaeb309ee7dc + - d2b6ca129884b7a65eef871a3dd2233f43f75df6 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18145-EWR + - cache-den8259-DEN X-Timer: - - S1711656904.219917,VS0,VE2 + - S1728237474.427781,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '79' + - '14' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:04 GMT + - Sun, 06 Oct 2024 17:57:54 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 +281,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1d0d9e713f8752c49e1d910ce10796372214c020 + - 19d868954b74cd40eef31ebd8d250ea166cccd11 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18183-EWR + - cache-den8273-DEN X-Timer: - - S1711656904.292056,VS0,VE2 + - S1728237474.460729,VS0,VE52 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '79' + - '14' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:04 GMT + - Sun, 06 Oct 2024 17:57:54 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 1bc52aca0ff5cdb6ba5ee205a1bbd509e7b97484 + - e13a2166ae2f2ba5d6f9d58bcb3764bebd7f30bd X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18125-EWR + - cache-den8242-DEN X-Timer: - - S1711656904.359604,VS0,VE1 + - S1728237475.554160,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '79' + - '14' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:04 GMT + - Sun, 06 Oct 2024 17:57:54 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 487769da72cf2507ed4e39bf2c43e7a74b1d826a + - 5d566ab30d0f32d7dcb068efd5f33a49db2d953b X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18146-EWR + - cache-den8274-DEN X-Timer: - - S1711656904.433058,VS0,VE2 + - S1728237475.584516,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '79' + - '14' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:04 GMT + - Sun, 06 Oct 2024 17:57:54 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: @@ -490,17 +492,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 0be6169f84fe3793ae8a98468b8d6f37870044c4 + - c63225145fba529588c568d7fff494687fbb9d0a X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18162-EWR + - cache-den8246-DEN X-Timer: - - S1711656905.520613,VS0,VE1 + - S1728237475.617528,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/datacube/json-schema/schema.json response: @@ -625,7 +629,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '14' + - '12' Cache-Control: - max-age=600 Connection: @@ -635,11 +639,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:04 GMT + - Sun, 06 Oct 2024 17:57:54 GMT ETag: - - '"65bd0237-1d66"' + - '"66e1651c-1d66"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -651,17 +655,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - f6b1db259f20a9c40d3ffc33f3f9312daca26f63 + - 686f1f260acc6f793436b8ba2d42d959e4b17174 X-GitHub-Request-Id: - - 7098:3A1975:EB147E:12C513B:6605CFBA + - 7AFA:687EA:3798A5F:3DF8423:6702CF95 X-Served-By: - - cache-ewr18127-EWR + - cache-den8252-DEN X-Timer: - - S1711656905.596506,VS0,VE3 + - S1728237475.646589,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:50 GMT - x-origin-cache: - - HIT + - Sun, 06 Oct 2024 18:07:43 GMT x-proxy-cache: - MISS status: @@ -675,7 +677,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -767,11 +769,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:04 GMT + - Sun, 06 Oct 2024 17:57:54 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: @@ -783,15 +785,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 12c8041ac7b0aa660ae764dbe6dfc2b77cbcbddd + - f091cb79fcb4c2f150d0874e8df72e57d592da22 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18179-EWR + - cache-den8279-DEN X-Timer: - - S1711656905.679582,VS0,VE1 + - S1728237475.689505,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: @@ -807,7 +809,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -849,7 +851,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '16' + - '15' Cache-Control: - max-age=600 Connection: @@ -859,11 +861,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:04 GMT + - Sun, 06 Oct 2024 17:57:54 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: @@ -875,15 +877,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3014d90c6da77d3f8dfc46e27f54e6689e64f685 + - 4c24cbaee41439974ab2d77d32698cb1dea2b3ff X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18125-EWR + - cache-den8241-DEN X-Timer: - - S1711656905.747827,VS0,VE1 + - S1728237475.720941,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-proxy-cache: - MISS status: @@ -897,7 +899,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -935,7 +937,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '10' Cache-Control: - max-age=600 Connection: @@ -945,11 +947,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:04 GMT + - Sun, 06 Oct 2024 17:57:54 GMT ETag: - - '"65bd0237-805"' + - '"66e1651c-805"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -961,15 +963,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 3f185b8733d3c2a50447fb7da1d29a75e9f3d034 + - d7ce953987cb5f4bcd02f19791a8ed662a143b9d X-GitHub-Request-Id: - - 23F2:5B37:E736FB:1287063:6605CFBB + - E8D9:1C7115:3966C49:3FC69B2:6702CF98 X-Served-By: - - cache-ewr18171-EWR + - cache-den8264-DEN X-Timer: - - S1711656905.836571,VS0,VE1 + - S1728237475.749889,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -985,7 +987,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/tiled-assets/json-schema/schema.json response: @@ -1102,11 +1104,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:04 GMT + - Sun, 06 Oct 2024 17:57:54 GMT ETag: - - '"65bd0237-1c4b"' + - '"66e1651c-1c4b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -1118,15 +1120,15 @@ interactions: X-Cache-Hits: - '0' X-Fastly-Request-ID: - - f3c22b01a643193a6299034ca40a0fa71b46a0b2 + - 1dc1a3b0ed55287e9660b5b1723edc85c1aafd61 X-GitHub-Request-Id: - - 62D4:3D15:F34354:13477BF:6605CFC8 + - 4B7F:B71F9:3BC47DF:42249DF:6702CFA2 X-Served-By: - - cache-ewr18181-EWR + - cache-den8227-DEN X-Timer: - - S1711656905.920464,VS0,VE19 + - S1728237475.783778,VS0,VE61 expires: - - Thu, 28 Mar 2024 20:25:04 GMT + - Sun, 06 Oct 2024 18:07:54 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 dc0caf35b..b23de4017 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.11 + - Python-urllib/3.12 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: - - '80' + - '15' 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:05 GMT + - Sun, 06 Oct 2024 17:57:54 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: - '1' X-Fastly-Request-ID: - - 04747792d1c74917b9154f46c11ce5065ca5a444 + - b1d03634e5a0056835b7674a450d06feb13007df X-GitHub-Request-Id: - - C0E6:7C51:E716C6:128403A:6605CF78 + - 3735:687EA:3798775:3DF80EE:6702CF93 X-Served-By: - - cache-ewr18173-EWR + - cache-den8226-DEN X-Timer: - - S1711656905.032312,VS0,VE2 + - S1728237475.894963,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-proxy-cache: - MISS status: @@ -137,7 +137,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - '80' + - '15' Cache-Control: - max-age=600 Connection: @@ -166,11 +166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:05 GMT + - Sun, 06 Oct 2024 17:57:54 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,15 +182,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - a6826e65f64266d500151b0a56000f59770cdb62 + - ca13369a188ed22655ddad3154b4144502572b61 X-GitHub-Request-Id: - - 2FE8:5B37:E7053A:128374B:6605CF78 + - 39FD:88140:39A823E:4007EA8:6702CF93 X-Served-By: - - cache-ewr18162-EWR + - cache-den8273-DEN X-Timer: - - S1711656905.108460,VS0,VE1 + - S1728237475.924128,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:44 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -206,7 +206,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/datetime.json response: @@ -255,7 +255,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '81' + - '15' Cache-Control: - max-age=600 Connection: @@ -265,11 +265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:05 GMT + - Sun, 06 Oct 2024 17:57:54 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: @@ -279,17 +279,17 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 1354b6ab3c4d5d783a2b7ab75aea5327f6b6d4a3 + - e72bfe875ce7d1dd395d271bb2cb496bc6ebc9a9 X-GitHub-Request-Id: - - 43EA:2B4A:E9808A:12A86AB:6605CF79 + - C3DF:3932BD:3BFA7C2:425A45C:6702CF93 X-Served-By: - - cache-ewr18159-EWR + - cache-den8271-DEN X-Timer: - - S1711656905.183951,VS0,VE1 + - S1728237475.953052,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -305,7 +305,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/instrument.json response: @@ -326,7 +326,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '80' + - '15' Cache-Control: - max-age=600 Connection: @@ -336,11 +336,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:05 GMT + - Sun, 06 Oct 2024 17:57:54 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 +352,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 93559fda16b30baa7d7e96999b86b7c91599d7d4 + - 94e35d23477ea0a61b9aef25c438b4fb4ac0b334 X-GitHub-Request-Id: - - CD36:B989F:F0F201:1322A98:6605CF78 + - E409:2C5686:37942D5:3DF3B2A:6702CF93 X-Served-By: - - cache-ewr18157-EWR + - cache-den8231-DEN X-Timer: - - S1711656905.263813,VS0,VE1 + - S1728237475.978596,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT x-origin-cache: - HIT x-proxy-cache: @@ -376,7 +376,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/licensing.json response: @@ -392,7 +392,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '80' + - '15' Cache-Control: - max-age=600 Connection: @@ -402,11 +402,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:05 GMT + - Sun, 06 Oct 2024 17:57:55 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 +418,17 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - de4018f70e999fddaa78e1c35d59f4558bea23cf + - 3b626d02900ac582fef386ac428d9f07b1287176 X-GitHub-Request-Id: - - AB90:1F69B9:D9E8F0:11B4701:6605CF78 + - C7A3:25A7B1:3C07C25:4267971:6702CF93 X-Served-By: - - cache-ewr18126-EWR + - cache-den8222-DEN X-Timer: - - S1711656905.336500,VS0,VE2 + - S1728237475.008582,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -440,7 +442,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/item-spec/json-schema/provider.json response: @@ -466,7 +468,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '80' + - '14' Cache-Control: - max-age=600 Connection: @@ -476,11 +478,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:05 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -490,17 +492,19 @@ interactions: X-Cache: - HIT X-Cache-Hits: - - '2' + - '1' X-Fastly-Request-ID: - - 98ecb72f5ad33e7e04f66a1220138eabb4e06fd7 + - 22e94005c25946eff1ab60566daf130ceb96a27e X-GitHub-Request-Id: - - CD36:B989F:F0F259:1322AD5:6605CF79 + - 424E:23FCDC:39ED650:404D361:6702CF8A X-Served-By: - - cache-ewr18145-EWR + - cache-den8276-DEN X-Timer: - - S1711656905.408717,VS0,VE1 + - S1728237475.038685,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:23:45 GMT + - Sun, 06 Oct 2024 18:07:40 GMT + x-origin-cache: + - HIT x-proxy-cache: - MISS status: @@ -514,7 +518,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json response: @@ -552,7 +556,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '13' + - '10' Cache-Control: - max-age=600 Connection: @@ -562,11 +566,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:05 GMT + - Sun, 06 Oct 2024 17:57:55 GMT ETag: - - '"65bd0237-805"' + - '"66e1651c-805"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -578,15 +582,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 35999433642ba2b336e44ee4157e7e179557e3a7 + - b9dcf1452c6b96e33d304e3c43d6f7d47f34c533 X-GitHub-Request-Id: - - 23F2:5B37:E736FB:1287063:6605CFBB + - E8D9:1C7115:3966C49:3FC69B2:6702CF98 X-Served-By: - - cache-ewr18169-EWR + - cache-den8225-DEN X-Timer: - - S1711656905.475650,VS0,VE2 + - S1728237475.066771,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:52 GMT + - Sun, 06 Oct 2024 18:07:45 GMT x-origin-cache: - HIT x-proxy-cache: @@ -602,7 +606,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/extensions/tiled-assets/json-schema/schema.json response: @@ -709,7 +713,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '1' + - '0' Cache-Control: - max-age=600 Connection: @@ -719,11 +723,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:05 GMT + - Sun, 06 Oct 2024 17:57:55 GMT ETag: - - '"65bd0237-1c4b"' + - '"66e1651c-1c4b"' Last-Modified: - - Fri, 02 Feb 2024 14:54:47 GMT + - Wed, 11 Sep 2024 09:38:36 GMT Server: - GitHub.com Vary: @@ -735,15 +739,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - fc2311fa7aec6b7a46036d6531a796c7363f16d6 + - c453ae8210f94aafca14fd2814eefd437fb28abf X-GitHub-Request-Id: - - 62D4:3D15:F34354:13477BF:6605CFC8 + - 4B7F:B71F9:3BC47DF:42249DF:6702CFA2 X-Served-By: - - cache-ewr18154-EWR + - cache-den8281-DEN X-Timer: - - S1711656906.559825,VS0,VE1 + - S1728237475.100003,VS0,VE3 expires: - - Thu, 28 Mar 2024 20:25:04 GMT + - Sun, 06 Oct 2024 18:07:54 GMT x-origin-cache: - HIT x-proxy-cache: @@ -759,7 +763,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json response: @@ -801,7 +805,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '17' + - '15' Cache-Control: - max-age=600 Connection: @@ -811,11 +815,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:05 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -827,15 +831,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - 01f2d29a67611e94faabe6f469ce00881292eab7 + - 9f01ec8ca68e795fbfd747c97579bc27f1c4e44d X-GitHub-Request-Id: - - 885E:8892:E5E94C:126CBC7:6605CFB8 + - EAEE:31444D:3881203:3EE0C9C:6702CF93 X-Served-By: - - cache-ewr18173-EWR + - cache-den8240-DEN X-Timer: - - S1711656906.635754,VS0,VE2 + - S1728237475.140038,VS0,VE1 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-proxy-cache: - MISS status: @@ -849,7 +853,7 @@ interactions: Host: - schemas.stacspec.org User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 method: GET uri: https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json response: @@ -931,7 +935,7 @@ interactions: Access-Control-Allow-Origin: - '*' Age: - - '17' + - '15' Cache-Control: - max-age=600 Connection: @@ -941,11 +945,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 28 Mar 2024 20:15:05 GMT + - Sun, 06 Oct 2024 17:57:55 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: @@ -957,15 +961,15 @@ interactions: X-Cache-Hits: - '1' X-Fastly-Request-ID: - - dc7afed051ab915b9de3d91f95736806b4663e64 + - 38d9f49990549a656fefe1a5967b5a9a6f0c6f95 X-GitHub-Request-Id: - - C958:179C:EB7344:12C5390:6605CFB8 + - 317F:1D6D8E:38B0767:3F1014B:6702CF93 X-Served-By: - - cache-ewr18146-EWR + - cache-den8260-DEN X-Timer: - - S1711656906.720093,VS0,VE1 + - S1728237475.265823,VS0,VE2 expires: - - Thu, 28 Mar 2024 20:24:49 GMT + - Sun, 06 Oct 2024 18:07:39 GMT x-origin-cache: - HIT x-proxy-cache: 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 7d36ec7ae..81e360e2d 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.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:20 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"4e24763d74f0d463b0cb6c63fc099e0b59447c7a049b93ffda4c6eb9eb54ae95"' Expires: - - Thu, 28 Mar 2024 20:19:20 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - '1' Strict-Transport-Security: @@ -132,15 +132,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - e0ea5ae3c475cd6f4933e9064720095893a69fc1 + - bab542892403cf0c7b1aa4eedfd7fa9ef7154c74 X-Frame-Options: - deny X-GitHub-Request-Id: - - 38FE:1723:68C8BD:7CD9A9:6605CF9A + - C67D:B91D0:5B9A75:65CA55:6702CF7F X-Served-By: - - cache-ewr18148-EWR + - cache-den8245-DEN X-Timer: - - S1711656860.159752,VS0,VE1 + - S1728237441.229360,VS0,VE1 X-XSS-Protection: - 1; mode=block status: @@ -154,7 +154,7 @@ interactions: Host: - raw.githubusercontent.com User-Agent: - - Python-urllib/3.11 + - Python-urllib/3.12 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: - - Thu, 28 Mar 2024 20:14:20 GMT + - Sun, 06 Oct 2024 17:57:21 GMT ETag: - '"c8576d5ea3fcee4039dcddbdcf9e59fed3f3086419a33aa96f18f4617203b76d"' Expires: - - Thu, 28 Mar 2024 20:19:20 GMT + - Sun, 06 Oct 2024 18:02:21 GMT Source-Age: - '1' Strict-Transport-Security: @@ -240,15 +240,15 @@ interactions: X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - - 1cc82158c5150805619d498e64cb4ce378d2d8c6 + - 93ef40ba939ab244aaf1753fdb3f7d15c9ac4dff X-Frame-Options: - deny X-GitHub-Request-Id: - - 6ED0:16FA:4485F5:52C752:6605CF9A + - 4717:2C7AAE:5BB96A:65EE1C:6702CF7F X-Served-By: - - cache-ewr18138-EWR + - cache-den8255-DEN X-Timer: - - S1711656860.243649,VS0,VE1 + - S1728237441.255761,VS0,VE1 X-XSS-Protection: - 1; mode=block status: