-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update STAC_VERSION to v1.1.0 (#1427)
* feat: stac v1.1 * chore: update changelog
- Loading branch information
Showing
318 changed files
with
12,098 additions
and
6,441 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 0 additions & 18 deletions
18
pystac/validation/jsonschemas/stac-spec/v1.0.0/basics.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
pystac/validation/jsonschemas/stac-spec/v1.1.0/basics.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.