sources
Data license: CC-BY
2 rows where datasetId = 6118 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
29581 | CSET (2022) | { "link": "https://chipexplorer.eto.tech/", "retrievedDate": "2023-07-07", "additionalInfo": "\nThe Advanced Semiconductor Supply Chain Dataset includes manually compiled, high-level information about the tools, materials, processes, countries, and firms involved in the production of advanced logic chips. The current version of the dataset reflects how researchers understood this supply chain in early 2021. It uses a wide variety of sources, such as corporate websites and disclosures, specialized market research, and industry group publications.\n\nMost of the data is taken from the CSET report The Semiconductor Supply Chain: Assessing National Competitiveness, published in 2021. In 2022, ETO researchers augmented the company profiles in the data with information manually collected from producer websites and the open internet.\n\nThe data can be accessed here: https://eto.tech/dataset-docs/chipexplorer/", "dataPublishedBy": "\"Emerging Technology Observatory Advanced Semiconductor Supply Chain Dataset (2022 release)\"\n" } |
2023-12-14 12:07:06 | 2024-07-08 17:49:16 | The Semiconductor Supply Chain Assessing National Competitiveness (CSET, 2022) 6118 | The Advanced Semiconductor Supply Chain Dataset includes manually compiled, high-level information about the tools, materials, processes, countries, and firms involved in the production of advanced logic chips. The current version of the dataset reflects how researchers understood this supply chain in early 2021. It uses a wide variety of sources, such as corporate websites and disclosures, specialized market research, and industry group publications. Most of the data is taken from the CSET report The Semiconductor Supply Chain: Assessing National Competitiveness, published in 2021. In 2022, ETO researchers augmented the company profiles in the data with information manually collected from producer websites and the open internet. The data can be accessed here: https://eto.tech/dataset-docs/chipexplorer/ | https://chipexplorer.eto.tech/ | "Emerging Technology Observatory Advanced Semiconductor Supply Chain Dataset (2022 release)" |
28003 | CSET (2022) | { "link": "https://chipexplorer.eto.tech/", "retrievedDate": "2023-07-07", "additionalInfo": "The Advanced Semiconductor Supply Chain Dataset includes manually compiled, high-level information about the tools, materials, processes, countries, and firms involved in the production of advanced logic chips. The current version of the dataset reflects how researchers understood this supply chain in early 2021. It uses a wide variety of sources, such as corporate websites and disclosures, specialized market research, and industry group publications.\n\nMost of the data is taken from the CSET report The Semiconductor Supply Chain: Assessing National Competitiveness, published in 2021. In 2022, ETO researchers augmented the company profiles in the data with information manually collected from producer websites and the open internet.\n\nThe data can be accessed here: https://eto.tech/dataset-docs/chipexplorer/", "dataPublishedBy": "\"Emerging Technology Observatory Advanced Semiconductor Supply Chain Dataset (2022 release)\"\n" } |
2023-07-11 10:26:14 | 2024-07-08 17:49:16 | The Semiconductor Supply Chain Assessing National Competitiveness (CSET, 2022) 6118 | The Advanced Semiconductor Supply Chain Dataset includes manually compiled, high-level information about the tools, materials, processes, countries, and firms involved in the production of advanced logic chips. The current version of the dataset reflects how researchers understood this supply chain in early 2021. It uses a wide variety of sources, such as corporate websites and disclosures, specialized market research, and industry group publications. Most of the data is taken from the CSET report The Semiconductor Supply Chain: Assessing National Competitiveness, published in 2021. In 2022, ETO researchers augmented the company profiles in the data with information manually collected from producer websites and the open internet. The data can be accessed here: https://eto.tech/dataset-docs/chipexplorer/ | https://chipexplorer.eto.tech/ | "Emerging Technology Observatory Advanced Semiconductor Supply Chain Dataset (2022 release)" |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");