Skip to content

Commit 75c0e51

Browse files
Remove PlanetaryComputer and earthdata types (#32)
1 parent f2f9a62 commit 75c0e51

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2323
- Clarified required fields
2424
- Fixed examples
2525

26+
### Removed
27+
28+
- Removed the provider-specific `planetaryComputer` and `earthdata` scheme types [#32](https://github.com/stac-extensions/authentication/pull/32)
29+
2630
## [v1.0.0] - 2023-11-07
2731

2832
### Added

README.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ included in the scheme type standards below.
5858
| ------------------- | ----------- |
5959
| `http` | Simple HTTP authentication mechanisms (Basic, Bearer, Digest, etc.). |
6060
| `s3` | Simple S3 authentication. |
61-
| `planetaryComputer` | Signs URLs with the [Planetary Computer Authentication API](https://planetarycomputer.microsoft.com/docs/reference/sas/) |
62-
| `earthdata` | Uses a token-based authentication to download data, from *some* Earthdata providers, e.g. DAACs |
6361
| `signedUrl` | Signs URLs with a user-defined authentication API. |
6462
| `oauth2` | [Open Authentication 2.0](https://swagger.io/docs/specification/authentication/oauth2/) configuration |
6563
| `apiKey` | Description of [API key](https://swagger.io/docs/specification/authentication/api-keys/) authentication included in request headers, query parameters, or cookies. |
@@ -76,7 +74,7 @@ library can be described, as well as a custom signed URL authentication scheme.
7674

7775
| Field Name | Type | Applies to | Description |
7876
| ------------------ | ------------------------------------------------------------ | --------------------- | ------------------------------------------------------------ |
79-
| `type` | string | *All* | **REQUIRED**. The authentication scheme type used to access the data (`http` \| `s3` \| `planetaryComputer` \| `earthdata` \| `signedUrl` \| `oauth2` \| `apiKey` \| `openIdConnect` \| a custom scheme type ). |
77+
| `type` | string | *All* | **REQUIRED**. The authentication scheme type used to access the data (`http` \| `s3` \| `signedUrl` \| `oauth2` \| `apiKey` \| `openIdConnect` \| a custom scheme type ). |
8078
| `description` | string | *All* | Additional instructions for authentication. [CommonMark 0.29](https://commonmark.org/) syntax MAY be used for rich text representation. |
8179
| `name` | string | `apiKey` | **REQUIRED.** The name of the header, query, or cookie parameter to be used. |
8280
| `in` | string | `apiKey` | **REQUIRED.** The location of the API key (`query` \| `header` \| `cookie`). |
@@ -310,8 +308,7 @@ Promise(
310308

311309
### Planetary Computer URL Signing
312310

313-
Planetary Computer uses the same signed URL pattern described above. Here is an example of how to configure an `auth:scheme` with instructions on
314-
how to sign URLs with the [Planetary Computer Data Authentication API](https://planetarycomputer.microsoft.com/docs/reference/sas/)
311+
Planetary Computer uses the same signed URL pattern described above. Here is an example of how to configure a `signedUrl` `auth:scheme` for the [Planetary Computer Data Authentication API](https://planetarycomputer.microsoft.com/docs/reference/sas/)
315312

316313
```json
317314
"auth:schemes": {

json-schema/schema.json

-2
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,6 @@
157157
"examples": [
158158
"http",
159159
"s3",
160-
"planetaryComputer",
161-
"earthdata",
162160
"signedUrl",
163161
"oauth2",
164162
"apiKey",

0 commit comments

Comments
 (0)