{"id":19310205,"url":"https://github.com/cedadev/stac-asset-list","last_synced_at":"2026-03-01T18:01:41.876Z","repository":{"id":66788827,"uuid":"457836516","full_name":"cedadev/stac-asset-list","owner":"cedadev","description":"API extension to add `/collections/\u003ccollectionId\u003e/items/\u003citemId\u003e/assets` url","archived":false,"fork":false,"pushed_at":"2022-03-01T08:16:32.000Z","size":7,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-02-24T03:29:55.562Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cedadev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-10T15:28:32.000Z","updated_at":"2022-03-02T16:47:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"e5a169ef-437c-4f43-a5b0-8e116f6eb72c","html_url":"https://github.com/cedadev/stac-asset-list","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cedadev/stac-asset-list","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedadev%2Fstac-asset-list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedadev%2Fstac-asset-list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedadev%2Fstac-asset-list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedadev%2Fstac-asset-list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cedadev","download_url":"https://codeload.github.com/cedadev/stac-asset-list/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cedadev%2Fstac-asset-list/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29977966,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T16:35:47.903Z","status":"ssl_error","status_checked_at":"2026-03-01T16:35:44.899Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-10T00:23:07.382Z","updated_at":"2026-03-01T18:01:41.860Z","avatar_url":"https://github.com/cedadev.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# stac-asset-list\nAPI extension to add `/collections/\u003ccollectionId\u003e/items/\u003citemId\u003e/assets` url\n\n\n|   |   |\n|---|---|\n| **OpenAPI Specification** | [openapi.yaml](openapi.yaml) |\n| **Conformance Class** | https://api.stacspec.org/v1.0.0-beta.5/asset-list |\n| **[Maturity Classification](https://github.com/radiantearth/stac-api-spec/blob/master/extensions.md#extension-maturity)** | Pilot |\n\nThere may be cases where the number of assets per item exceeds the number which can be \nreasonably returned as a nested object. This extension provides the implementation to\nallow you to link to a paginated list of assets from item objects, thus reducing the \nnumber of objects in the item-search response.\n\nIt is recommended to keep the metadata assets as a nested object in the `assets` key of the [item\nspecification](https://github.com/radiantearth/stac-spec/blob/master/item-spec/item-spec.md#assets). These\nare useful for clients and provide links to thumbnails and other metadata which would be useful during the\nbrowsing process.\n\nImplementing this link should be within the [link object](https://github.com/radiantearth/stac-spec/blob/master/item-spec/item-spec.md#link-object)\nfrom the item using the relation `asset`.\n\nThis should be implemented with some form of pagination to allow scrolling of the asset list.\n\n## Examples\n\n* [Item example](examples/item.json)\n* [Asset Response](https://github.com/cedadev/stac-asset-spec/blob/main/examples/simple-asset.json)\n\n### HTTP GET \u0026 POST Examples\n\nGET Request:\n```http\nHTTP GET /colletions/\u003ccollectionID\u003e/items/\u003citemID\u003e/assets\n```\n\nPOST Request:\n```json\n{\n    \"bbox\": [-110, 39.5, -105, 40.5],\n    \"limit\": 10\n}\n```\n\nResponse with `200 OK`:\n```json\n{\n    \"type\": \"FeatureCollection\",\n    \"features\": [\n      {\n        \"id\": \"asdfsgsa\",\n        \"type\": \"Feature\",\n        \"media_type\": \"image/jpeg\",\n        \"bbox\": [\n          172.91173669923782,\n          1.3438851951615003,\n          172.95469614953714,\n          1.3690476620161975\n        ],\n        \"title\": \"data_file\",\n        \"roles\": [\n          \"data\"\n        ],\n        \"properties\": {\n          \"datetime\": \"2020-12-11T22:38:32125000Z\"\n        },\n        \"item\": \"dsfdsfs\",\n        \"links\": [\n          {\n            \"rel\": \"item\",\n            \"href\": \"./dsfdsfs.json\",\n            \"type\": \"application/json\",\n            \"title\": \"Simple Example Item\"\n          },\n          {\n            \"rel\": \"parent\",\n            \"href\": \"./dsfdsfs.json\",\n            \"type\": \"application/json\",\n            \"title\": \"Simple Example Item\"\n          },\n          {\n            \"rel\": \"root\",\n            \"href\": \"./collection.json\",\n            \"type\": \"application/json\",\n            \"title\": \"Simple Example Collection\"\n          }\n        ]\n      },\n    ],\n    \"links\": [\n        {\n            \"rel\": \"self\",\n            \"href\": \"http://api.cool-sat.com/search\"\n        },\n        {\n            \"rel\": \"next\",\n            \"href\": \"http://api.cool-sat.com/search?page=2\"\n        }\n    ]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcedadev%2Fstac-asset-list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcedadev%2Fstac-asset-list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcedadev%2Fstac-asset-list/lists"}