├── Tools
├── README.md
├── Readme_Generator.html
└── JSON_Data_Editor.html
├── Contributing.md
├── Data
├── README.md
└── Verified_Accounts_Data.json
└── README.md
/Tools/README.md:
--------------------------------------------------------------------------------
1 | # Tools
2 |
3 | This directory contains utility tools to assist with maintaining the repository.
4 |
5 | ## Readme_Generator.html
6 |
7 | A standalone HTML tool that converts the source JSON data into the formatted Markdown table used in the main project README.
8 |
9 | ### Usage
10 |
11 | 1. Open `Readme_Generator.html` in any modern web browser.
12 | 2. Open `../Data/Verified_Accounts_Data.json` in a text editor and copy its contents.
13 | 3. Paste the JSON into the **"1. JSON Input"** box in the browser tool.
14 | 4. Click **Generate Markdown**.
15 | 5. Click **Copy** to grab the output.
16 | 6. Replace the content in the root `README.md` with the generated text.
17 |
18 | ### Features
19 | * **No Install Required:** Runs entirely in the browser using a CDN for styling.
20 | * **Automatic Formatting:** Handles the specific indentation arrows (`↳`), directional arrows (`🠊`), and archive superscripts (`[A]`).
21 | * **Smart Syntax:** Automatically applies backticks to domains and URLs based on the heuristics defined in the data schema.
22 | * **Validation:** Includes basic JSON error checking to prevent broken formatting.
--------------------------------------------------------------------------------
/Contributing.md:
--------------------------------------------------------------------------------
1 | # Contributing to This Repo
2 |
3 | The goal of this repository is to document **verified** "Chain of Custody" links between Big Tech companies and their GitHub accounts.
4 |
5 | ## Documentation
6 | Before contributing, please review the specific documentation for the tools and data structure used in this project:
7 |
8 | * **[Data/README.md](Data/README.md)**: Explains the JSON schema, the different types of "proof steps" (e.g., `LinksTo`, `RedirectsTo`), and data formatting rules.
9 | * **[Tools/README.md](Tools/README.md)**: Instructions on how to use the HTML generator tool.
10 |
11 | ---
12 |
13 | ## Important: Do Not Edit README.md Directly
14 |
15 | The main `README.md` is auto-generated. Any manual changes made to it will be overwritten.
16 | **Always verify and edit the data in `Data/Verified_Accounts_Data.json`.**
17 |
18 | ---
19 |
20 | ## How to Contribute
21 |
22 | ### 1. Find a Verified Account
23 | We only accept accounts where ownership can be proven via a **Chain of Custody**.
24 | * **Good Proof:** A link from an official company website (e.g., `google.com` linking to the repo), a verified DNS entry, or an official blog post.
25 | * **Bad Proof:** "It looks official" or "The logo is correct" (anyone can upload a logo).
26 |
27 | If there's another form of proof that doesn't fit the current JSON structure, feel free to create an issue thread to ask. I could add additional types if necessary.
28 |
29 | ### 2. Update the Data
30 | 1. Open `Data/Verified_Accounts_Data.json`.
31 | 2. Find the company block (or add a new one if necessary).
32 | 3. Add the account details.
33 | * If the account has a "Verified" badge from GitHub (green checkmark), set `"verified_domain"` to that domain.
34 | * If not, you **must** provide `proof_steps` showing the link from an official source to the GitHub account.
35 |
36 | ### 3. Generate the README
37 | Once the JSON is updated, you must regenerate the main README to reflect changes.
38 | 1. Open `Tools/Readme_Generator.html` in your web browser.
39 | 2. Paste the content of your updated `Data/Verified_Accounts_Data.json` into the input box.
40 | 3. Click **Generate Markdown**.
41 | 4. Copy the output and overwrite the content of `README.md` in the root of this repo.
42 |
43 | ### 4. Submit Pull Request
44 | * Commit both the updated `Data/Verified_Accounts_Data.json` and the regenerated `README.md`.
45 | * In your PR description, please include a link to the proof if it isn't obvious in the JSON data.
46 |
47 | ---
48 |
49 | ## 💡 Tips
50 |
51 | ### Prevent Link Rot with Archives
52 | Company blogs and documentation pages often move or disappear.
53 | * **Best Practice:** Whenever you add a URL as proof, try to create a snapshot on [The Wayback Machine](https://web.archive.org/) or [Archive.today](https://archive.today/).
54 | * **Add it to JSON:** Include the snapshot URL in the `archive_url` field. This ensures the proof remains valid even if the original page goes down.
55 |
56 | ### Linking Directly to Text
57 | In most browsers you can select some text, right click, and choose "Copy Link to Highlight". This is optional, but might be helpful if a hyperlink is particularly hard to find on a page.
58 |
59 | ### Using Backticks
60 | The generator will try to add backticks to display a naked domain as code, but sometimes it needs help.
61 | * **Auto-detection:** Domains like `google.com` are usually automatically wrapped in code blocks if it's the only text.
62 | * **Manual Override:** If you need to verify a specific string like a command or a domain inside a sentence, you can manually add backticks in the JSON string (e.g., `` "prefix_text": "`sigs.kubernetes.io`" ``).
63 |
64 | ### Strategies for Finding Proof Steps
65 |
66 | * Use Google to search for references to the github account, such as searching: `site:amazon.com "github.com/AmazonAppDev"`
67 | * The same can be done if an account has a verified domain other than the company's main domain, such as: `site:amazon.com "amazonlinux.com"`
68 | * There are browser extensions that can list all hyperlinks on a page, making it easy to find where a link on a page is
69 | * I like this one: [Link Diver](https://github.com/google/link-diver/releases) . But it requires manually installing and the browser must support manifest v2.
--------------------------------------------------------------------------------
/Data/README.md:
--------------------------------------------------------------------------------
1 | # Data Documentation
2 |
3 | This directory contains `Verified_Accounts_Data.json`, which serves as the **source of truth** for the "Verified Open Source GitHub Accounts" list.
4 |
5 | Instead of manually editing the main README table, all data updates should be made in the JSON file. This separates the data from the presentation layer.
6 |
7 | ## File Structure
8 |
9 | The JSON file follows this high-level structure:
10 |
11 | ```json
12 | {
13 | "companies": [
14 | {
15 | "name": "Company Name",
16 | "accounts": [
17 | {
18 | "name": "Account Name",
19 | "github_url": "...",
20 | "verified_domain": "...",
21 | "proof_steps": [ ... ]
22 | }
23 | ]
24 | }
25 | ]
26 | }
27 | ```
28 |
29 | ## Schema Definitions
30 |
31 | ### 1. Account Object
32 | Represents a single row in the final Markdown table.
33 |
34 | | Field | Type | Description |
35 | |---|---|---|
36 | | `name` | String | The display name of the GitHub organization or account. |
37 | | `github_url` | String | The URL to the GitHub account. |
38 | | `verified_domain` | String or Null | The domain shown on the GitHub profile with a green checkmark. If the account is not verified by GitHub, set to `null`. |
39 | | `proof_steps` | Array | A list of steps establishing the "Chain of Custody" proving ownership. |
40 |
41 | ---
42 |
43 | ### 2. Proof Steps
44 | Each object in the `proof_steps` array represents a line of text in the "Proof of Association" column.
45 |
46 | #### Common Properties (All Types)
47 | | Field | Type | Description |
48 | |---|---|---|
49 | | `type` | String | Defines the formatting logic (see "Step Types" below). |
50 | | `archive_url` | String or Null | The Wayback Machine or Archive.is link. Adds a `[A]` superscript to the line. |
51 |
52 | #### Step Types
53 |
54 | **A. `Base`**
55 | * **Usage:** The starting point of verification, usually a top-level domain or a known property.
56 | * Could also be used for a text-only / non-link instructional step.
57 | * **Fields:**
58 | * `text`: The content to display (e.g., "opensource.google").
59 | * `url`: (Optional) Make the text a hyperlink.
60 |
61 | **B. `StandaloneHyperlink`**
62 | * **Usage:** A text link, often a blog post, documentation page, or policy document.
63 | * **Fields:**
64 | * `text`: The anchor text (e.g., "Official Announcement").
65 | * `url`: The destination URL.
66 |
67 | **C. `LinksTo` / `RedirectsTo`**
68 | * **Usage:** Represents a directional relationship. The generator renders these with an arrow (`🠊`).
69 | * *LinksTo:* "Source A links to Target B".
70 | * *RedirectsTo:* "Source A HTTP redirects to Target B".
71 | * **Fields:**
72 | * `prefix_text`: (Optional) Text appearing *before* the arrow (e.g., `"Follow Us" button`).
73 | * `text`: The target text appearing *after* the arrow.
74 | * `url`: (Optional) If the target text needs to be a hyperlink.
75 |
76 | ---
77 |
78 | ## Formatting Rules
79 |
80 | The HTML generator applies specific formatting heuristics to the JSON data.
81 |
82 | ### 1. Automatic Code Blocks
83 | The generator tries to detect domains and file paths automatically.
84 | * **Rule:** If a `text` field contains **no spaces** AND contains a **dot** (e.g., `developer.chrome.com`), it is automatically wrapped in backticks (`` ` ``).
85 |
86 | ### 2. Manual Backticks
87 | If you need to force a code block (e.g., for a string with spaces or no dots) or strictly control the output, you can include backticks directly in the JSON string.
88 | * **Example:** `"prefix_text": "`sigs.kubernetes.io`"`
89 | * **Note:** Do **not** escape backticks (do not use `\` `). Standard JSON string rules apply.
90 |
91 | ### 3. Empty Columns
92 | If `verified_domain` is `null`, the generator ensures the Markdown table cell renders correctly as an empty cell.
93 |
94 | ---
95 |
96 | ## Example Entry
97 |
98 | ```json
99 | {
100 | "name": "GoogleChromeLabs",
101 | "github_url": "https://github.com/GoogleChromeLabs",
102 | "verified_domain": null,
103 | "proof_steps": [
104 | {
105 | "type": "Base",
106 | "text": "developer.chrome.com",
107 | "url": null
108 | },
109 | {
110 | "type": "StandaloneHyperlink",
111 | "text": "Blog post",
112 | "url": "https://developer.chrome.com/blog/...",
113 | "archive_url": "https://web.archive.org/..."
114 | },
115 | {
116 | "type": "LinksTo",
117 | "prefix_text": "\"JSON API Endpoints\"",
118 | "text": "github.com/GoogleChromeLabs",
119 | "url": null
120 | }
121 | ]
122 | }
123 | ```
124 |
125 | ## Generating the README
126 |
127 | To update the main `README.md`:
128 | 1. Edit `Verified_Accounts_Data.json`.
129 | 2. Open the HTML Generator tool in your browser.
130 | 3. Paste the JSON content.
131 | 4. Click **Generate Markdown**.
132 | 5. Copy the output and replace the content in the root `README.md`.
--------------------------------------------------------------------------------
/Tools/Readme_Generator.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Verified Domain Json to README Generator
7 |
8 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
1. JSON Input
25 |
26 |
27 | Load Sample
28 |
29 |
30 |
31 |
32 |
33 |
JSON Error
34 |
Something went wrong.
35 |
36 |
37 |
38 |
39 |
Note on Backticks: You can include backticks inside the JSON strings directly (e.g., "`text`"). Do not escape them with a backslash.
40 |
41 |
42 |
43 | Generate Markdown
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
2. Markdown Output
52 |
53 | Copy
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
222 |
223 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Verified Open Source GitHub Accounts
2 |
3 | This document lists open-source GitHub organizations and accounts that have been verified as being affiliated with major tech companies.
4 |
5 | ---
6 |
7 | ## Amazon
8 |
9 | | Organization/Account | Verified Domain | Proof of Association |
10 | |---|---|---|
11 | | **[Amazon](https://github.com/amzn)** | | `developer.amazon.com` ↳ [Amazon API Documentation](https://developer.amazon.com/docs/amazon-pay-api-v2/introduction.html#sdk) ↳ "SDK" Section Links To 🠊 [`github.com/amzn`](https://github.com/amzn/amazon-pay-api-sdk-php) |
12 | | **[Amazon Web Services](https://github.com/aws)** | `amazon.com` | |
13 | | **[Amazon Archives](https://github.com/amazon-archives)** | `amazon.com` | |
14 | | **[Amazon Q Developer](https://github.com/Amazon-Q-Developer)** | `amazon.com` | |
15 | | **[amazon-freertos](https://github.com/amazon-freertos)** | `amazon.com` | |
16 | | **[Amazon Web Services - Labs](https://github.com/awslabs)** | `amazon.com` | |
17 | | **[AWS Samples](https://github.com/aws-samples/)** | `amazon.com` | |
18 | | **[Amazon Linux](https://github.com/amazonlinux)** | `amazonlinux.com` | `docs.aws.amazon.com` ↳ [`docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html`](https://docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html) ↳ Sample Code Links To 🠊 `cdn.amazonlinux.com` |
19 | | **[Amazon Science](https://github.com/amazon-science)** | `amazon.science` | `amazon.com` ↳ [`amazon.com/research`](https://www.amazon.com/research/) ↳ Redirects To 🠊 [`amazon.science`](https://www.amazon.science/) |
20 | | **[awsdocs](https://github.com/awsdocs)** | | `docs.aws.amazon.com` ↳ [AWS SDK for C++ Documentation](https://docs.aws.amazon.com/sdk-for-cpp/latest/api/aws-cpp-sdk-s3-encryption/html/class_aws_1_1_s3_encryption_1_1_materials_1_1_k_m_s_with_context_encryption_materials.html) ↳ "Examples" link Links To 🠊 `github.com/awsdocs/aws-doc-sdk-examples` |
21 | | **[amazon-contributing](https://github.com/amazon-contributing)** | | `docs.aws.amazon.com` ↳ [CloudWatch Documentation](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-OTLPAdvancedsetup.html) ↳ Configuration snippets reference Links To 🠊 `github.com/amazon-contributing/opentelemetry-collector-contrib` |
22 | | **[amazon-connect](https://github.com/amazon-connect)** | | `aws.amazon.com` ↳ [AWS Contact Center Blog](https://aws.amazon.com/blogs/contact-center/analyze-customer-satisfaction-scores-with-post-contact-surveys-using-amazon-connect-tasks/) ↳ "subscribe today to..." Links To 🠊 `github.com/amazon-connect` |
23 | | **[amazon-braket](https://github.com/amazon-braket)** | | `docs.aws.amazon.com` ↳ [Amazon Braket Developer Guide](https://docs.aws.amazon.com/braket/latest/developerguide/braket-quera-submitting-analog-program-aquila.html) ↳ Code snippets reference Links To 🠊 `github.com/amazon-braket/amazon-braket-schemas-python` |
24 | | **[payfort](https://github.com/payfort)** | | `docs.payfort.com` ↳ [Prestashop Integration Guide (PDF)](https://docs.payfort.com/pdf/plugins/Prestashop%20Integration%20Guide.pdf) ↳ "Download the plugin" link Links To 🠊 `github.com/payfort/prestashop-payfort` |
25 | | **[amazon-gamelift](https://github.com/amazon-gamelift)** | | `docs.aws.amazon.com` ↳ [GameLift Developer Guide](https://docs.aws.amazon.com/gameliftservers/latest/developerguide/gamelift-wrapper-tutorial.html) ↳ Tutorial command Links To 🠊 `github.com/amazon-gamelift/amazon-gamelift-servers-game-server-wrapper` |
26 | | **[Amazon Ion](https://github.com/amazon-ion)** | | `aws.amazon.com` ↳ [AWS Big Data Blog](https://aws.amazon.com/blogs/big-data/analyze-amazon-ion-datasets-using-amazon-athena/) ↳ "Amazon Ion" link Links To 🠊 [`amzn.github.io/ion-docs/`](https://amzn.github.io/ion-docs/) ↳ Redirects To 🠊 [`amazon-ion.github.io`](https://amazon-ion.github.io/) |
27 | | **[AmazonAppDev](https://github.com/AmazonAppDev)** | | `developer.amazon.com` ↳ Footer "Follow Us" Section Links To 🠊 `github.com/AmazonAppDev` |
28 | | **[Amazon Nova](https://github.com/amazon-nova-api)** | | `nova.amazon.com` ↳ [`nova.amazon.com/dev`](https://nova.amazon.com/dev) ↳ Quick Start Guides Links To 🠊 `github.com/amazon-nova-api` |
29 |
30 | ---
31 |
32 | ## Adobe
33 |
34 | | Organization/Account | Verified Domain | Proof of Association |
35 | |---|---|---|
36 | | **[Adobe, Inc.](https://github.com/adobe)** | `adobe.com` | |
37 | | **[Adobe Web Platform](https://github.com/adobe-webplatform)** | | [Listed on official Open Source portal](https://opensource.adobe.com/#organizations) |
38 | | **[Adobe Research](https://github.com/adobe-research)** | | [Listed on official Open Source portal](https://opensource.adobe.com/#organizations) |
39 | | **[Adobe Photoshop](https://github.com/adobe-photoshop)** | | [Listed on official Open Source portal](https://opensource.adobe.com/#organizations) |
40 | | **[Adobe Fonts](https://github.com/adobe-fonts)** | | [Listed on official Open Source portal](https://opensource.adobe.com/#organizations) |
41 | | **[Adobe Typekit](https://github.com/typekit)** | | [Listed on official Open Source portal](https://opensource.adobe.com/#organizations) |
42 | | **[Adobe Community Software](https://github.com/adobe-consulting-services)** | | [Listed on official Open Source portal (as "Adobe Consulting Services")](https://opensource.adobe.com/#organizations) |
43 | | **[Adobe Experience Cloud](https://github.com/adobe-marketing-cloud)** | | [Listed on official Open Source portal](https://opensource.adobe.com/#organizations) |
44 | | **[Adobe-CloudOps](https://github.com/adobe-cloudops)** | | [Listed on official Open Source portal](https://opensource.adobe.com/#organizations) |
45 | | **[Topcoat](https://github.com/topcoat)** | | [Listed on official Open Source portal](https://opensource.adobe.com/#organizations) |
46 | | **[Adobe Systems](https://github.com/adobe-flash)** | | [Listed on official Open Source portal](https://opensource.adobe.com/#organizations) |
47 |
48 | ---
49 |
50 | ## Google
51 |
52 | | Organization/Account | Verified Domain | Proof of Association |
53 | |---|---|---|
54 | | **[Google](https://github.com/google)** | `google.com` | |
55 | | **[Noto Fonts](https://github.com/notofonts)** | `google.com` | |
56 | | **[GoogleChromeLabs](https://github.com/GoogleChromeLabs)** | | `developer.chrome.com` ↳ [Blog post](https://developer.chrome.com/blog/chrome-for-testing) [[A]](https://web.archive.org/web/20250707164200/https://developer.chrome.com/blog/chrome-for-testing) ↳ "JSON API Endpoints" Links To 🠊 `github.com/GoogleChromeLabs` |
57 | | **[GoogleChrome](https://github.com/GoogleChrome)** | | `opensource.google.com` ↳ [`opensource.google.com/projects/audion`](https://opensource.google.com/projects/audion) ↳ Redirects To 🠊 `github.com/GoogleChrome` |
58 | | **[tensorflow](https://github.com/tensorflow)** | | `opensource.google` ↳ [`opensource.google/projects/tensorflow`](https://opensource.google/projects/tensorflow) ↳ Links To 🠊 `tensorflow.org` ↳ "GitHub" link Links To 🠊 `github.com/tensorflow` |
59 | | **[Flutter](https://github.com/flutter)** | `flutter.dev` | `opensource.google` ↳ [`opensource.google/projects/flutter`](https://opensource.google/projects/flutter) ↳ Links To 🠊 `flutter.dev` |
60 | | **[Android](https://github.com/android)** | | `opensource.google.com` ↳ [`opensource.google/projects/android`](https://opensource.google/projects/android) ↳ Links To 🠊 `source.android.com` ↳ [`developer.android.com/games/samples`](https://developer.android.com/games/samples) [[A]](https://web.archive.org/web/20250923163041/https://developer.android.com/games/samples) ↳ Links To 🠊 `github.com/android` |
61 | | **[Google Cloud Platform](https://github.com/GoogleCloudPlatform)** | | `cloud.google.com` ↳ [Documentation article](https://cloud.google.com/build/docs/automating-builds/github/connect-repo-github) [[A]](https://web.archive.org/web/20250820201754/https://cloud.google.com/build/docs/automating-builds/github/connect-repo-github?generation=2nd-gen) ↳ Footer "GitHub" link Links To 🠊 `github.com/GoogleCloudPlatform` |
62 | | **[Material Components](https://github.com/material-components)** | | `material.google.com` ↳ Footer "GitHub" link Links To 🠊 `github.com/material-components` |
63 | | **[Dart](https://github.com/dart-lang)** | `dart.dev` | `opensource.google` ↳ [`opensource.google/projects/dart`](https://opensource.google/projects/dart) ↳ Links To 🠊 `dart.dev` |
64 | | **[Google APIs](https://github.com/googleapis)** | | `developer.google.com` ↳ [`developers.google.com/api-client-library/python`](https://developers.google.com/api-client-library/python) ↳ Redirects To 🠊 `github.com/googleapis` |
65 | | **[Firebase](https://github.com/firebase)** | | `firebase.google.com` ↳ Footer "GitHub" link Links To 🠊 `github.com/firebase` |
66 | | **[Kubernetes](https://github.com/kubernetes)** | `kubernetes.io` | `opensource.google` ↳ [`opensource.google/projects/kubernetes`](https://opensource.google/projects/kubernetes) ↳ Links To 🠊 `kubernetes.io` |
67 | | **[Kubernetes SIGs](https://github.com/kubernetes-sigs)** | | `opensource.google` ↳ [`opensource.google/projects/kubernetes`](https://opensource.google/projects/kubernetes) ↳ Links To 🠊 `kubernetes.io` ↳ `sigs.kubernetes.io` Redirects To 🠊 `github.com/kubernetes-sigs` |
68 | | **[Go](https://github.com/golang)** | | `opensource.google` ↳ [`opensource.google/projects/go`](https://opensource.google/projects/go) ↳ Links To 🠊 `go.dev` ↳ "GitHub" link Links To 🠊 `github.com/golang` |
69 | | **[Google DeepMind](https://github.com/google-deepmind)** | | `deepmind.google` ↳ "Follow Us" section Links To 🠊 `github.com/google-deepmind` |
70 | | **[Kaggle](https://github.com/kaggle)** | | [kaggle.com (Google-owned)](https://cloud.google.com/blog/products/gcp/welcome-kaggle-to-google-cloud/) ↳ [API docs](https://www.kaggle.com/docs/models) [[A]](https://archive.ph/h3gMC) ↳ Links To 🠊 `github.com/kaggle` |
71 | | **[Google Cloud Build](https://github.com/GoogleCloudBuild)** | | `cloud.google.com` ↳ [Documentation Article](https://cloud.google.com/build/docs/automating-builds/github/connect-repo-github?generation=2nd-gen) [[A]](https://web.archive.org/web/20250820201754/https://cloud.google.com/build/docs/automating-builds/github/connect-repo-github?generation=2nd-gen) ↳ Step 'Install the Cloud Build GitHub App' Links To 🠊 [GitHub App](https://github.com/apps/google-cloud-build) ↳ App's "Developer" field Links To 🠊 `github.com/GoogleCloudBuild` |
72 | | **[Google Cloud and HashiCorp](https://github.com/terraform-google-modules)** | `opensource.google.com` | |
73 | | **[Google GitHub Actions](https://github.com/google-github-actions)** | `opensource.google.com` | |
74 | | **[Google Pay](https://github.com/google-pay)** | `developers.google.com` | |
75 | | **[GoogleContainerTools](https://github.com/GoogleContainerTools)** | | `cloud.google.com` ↳ [Blog post](https://cloud.google.com/blog/products/application-development/introducing-jib-build-java-docker-images-better) [[A]](https://web.archive.org/web/20250820091943/https://cloud.google.com/blog/products/application-development/introducing-jib-build-java-docker-images-better) ↳ Links To 🠊 `github.com/GoogleContainerTools` |
76 | | **[Google Creative Lab](https://github.com/googlecreativelab)** | | `opensource.google.com` ↳ [`opensource.google.com/projects/quickdrawdataset`](https://opensource.google.com/projects/quickdrawdataset) ↳ Redirects To 🠊 `github.com/googlecreativelab` |
77 | | **[Google CodeLabs](https://github.com/googlecodelabs)** | | `codelabs.developers.google.com` ↳ "Codelab tools on GitHub" link Links To 🠊 `github.com/googlecodelabs` |
78 | | **[Google Fonts](https://github.com/googlefonts)** | | `fonts.google.com` ↳ [`fonts.google.com/noto/contribute`](https://fonts.google.com/noto/contribute) [[A]](https://archive.ph/KB5yk#selection-685.0-685.10:~:text=issue%20in%20the-,noto%2Demoji,-repository.) ↳ "GitHub" link Links To 🠊 `github.com/googlefonts` |
79 | | **[google-gemini](https://github.com/google-gemini)** | | `ai.google.dev` ↳ [`ai.google.dev/gemini-api/docs`](https://ai.google.dev/gemini-api/docs) [[A]](https://web.archive.org/web/20251122090229/https://ai.google.dev/gemini-api/docs) ↳ "Cookbook" link at the top Links To 🠊 `github.com/google-gemini` [[A]](https://web.archive.org/web/20250807082019/https://ai.google.dev/gemini-api/docs#:~:text=API%20Reference-,Cookbook,-Community) |
80 | | **[Google Security Operations](https://github.com/chronicle)** | | `cloud.google.com` ↳ [Google Cloud Documentation](https://cloud.google.com/chronicle/docs/reference/ingestion-api#:~:text=https%3A//github.com/chronicle/api%2Dsamples%2Dpython/blob/master/ingestion/create_entities.py) [[A]](https://web.archive.org/web/20251205182722/https://docs.cloud.google.com/chronicle/docs/reference/ingestion-api) ↳ Example code Links To 🠊 `github.com/chronicle/api-samples-python` [[A]](https://web.archive.org/web/20250523122327/https://cloud.google.com/chronicle/docs/reference/ingestion-api#:~:text=https%3A//github.com/chronicle/api%2Dsamples%2Dpython/blob/master/ingestion/create_entities.py) |
81 | | **[Google Colaboratory](https://github.com/googlecolab)** | | `colab.research.google.com` [[A]](https://archive.ph/fEoc7#selection-2443.0-2443.36:~:text=getting%20started%20with%20google%20colab%20ai) ↳ 'Getting Started' link Links To 🠊 `github.com/googlecolab` |
82 | | **[Google Research](https://github.com/google-research)** | | [`research.google`](https://research.google/) [[A]](https://archive.ph/GhBF6) ↳ "Follow Us" section Links To 🠊 `github.com/google-research` |
83 |
84 | ---
85 |
86 | ## Microsoft
87 |
88 | | Organization/Account | Verified Domain | Proof of Association |
89 | |---|---|---|
90 | | **[Microsoft](https://github.com/microsoft)** | `microsoft.com` | |
91 | | **[Microsoft Docs](https://github.com/microsoftdocs)** | `microsoft.com` | |
92 | | **[Microsoft Learning](https://github.com/microsoftlearning)** | | `github.com/microsoft` ↳ [Documentation article](https://github.com/microsoft/PartnerResources/blob/abe595f4f48f6c63a5d20572a3f14ee9cfa61b15/_docs/Skilling/Security%20Academy/Other%20pages/Certifications.md) [[A]](https://web.archive.org/web/20250612164944/https://github.com/microsoft/PartnerResources/blob/abe595f4f48f6c63a5d20572a3f14ee9cfa61b15/_docs/Skilling/Security%20Academy/Other%20pages/Certifications.md) ↳ "Labs" column Links To 🠊 `github.com/microsoftlearning` |
93 | | **[Microsoft Azure](https://github.com/Azure)** | `azure.microsoft.com` | |
94 | | **[Azure Samples](https://github.com/Azure-Samples)** | `azure.microsoft.com` | |
95 | | **[Microsoft Edge](https://github.com/MicrosoftEdge)** | | [Linked from official Microsoft Learn documentation](https://learn.microsoft.com/en-us/microsoft-edge/devtools/samples/) [[A]](https://archive.ph/ucWUo) |
96 | | **[Microsoft Archive](https://github.com/microsoftarchive)** | `microsoft.com` | |
97 | | **[Microsoft Graph](https://github.com/microsoftgraph)** | | [Microsoft Learn sample page](https://learn.microsoft.com/en-us/samples/microsoftgraph/msgraph-sample-github-connector-python/microsoft-graph-python-github-connector-sample/) [[A]](https://web.archive.org/web/20251205181030/https://learn.microsoft.com/en-us/samples/microsoftgraph/msgraph-sample-github-connector-python/microsoft-graph-python-github-connector-sample/) ↳ "Browse Code" link Links To 🠊 `github.com/microsoftgraph` |
98 | | **[.NET Platform](https://github.com/dotnet)** | `dotnetfoundation.org` | |
99 | | **[ASP.NET](https://github.com/aspnet)** | | [Named in official Microsoft security policy](https://github.com/microsoft/verified-storage/security) [[A]](https://web.archive.org/web/20251205181637/https://github.com/microsoft/verified-storage/security) |
100 | | **[Xamarin](https://github.com/xamarin)** | `xamarin.com` | [Named in official Microsoft security policy](https://github.com/microsoft/verified-storage/security) [[A]](https://web.archive.org/web/20251205181637/https://github.com/microsoft/verified-storage/security) |
101 | | **[PowerShell Team](https://github.com/PowerShell)** | `microsoft.com` | |
102 | | **[Microsoft 365 Developer](https://github.com/officedev)** | `microsoft.com` | [Linked from an official Microsoft 365 Developer Blog post](https://devblogs.microsoft.com/microsoft365dev/add-in-samples-have-moved-to-github/) [[A]](https://web.archive.org/web/20250523203918/https://devblogs.microsoft.com/microsoft365dev/add-in-samples-have-moved-to-github/) |
103 | | **[Visual Studio Code](https://github.com/Visual-Studio-Code)** | `code.visualstudio.com` | |
104 | | **[Microsoft Visual Studio](https://github.com/microsoft-vs)** | `online.visualstudio.com` | |
105 | | **[Clipchamp at Microsoft](https://github.com/clipchamp)** | `clipchamp.com` | |
106 | | **[Microsoft Feedback](https://github.com/microsoftfeedback)** | `microsoft.com` | |
107 | | **[Microsoft 1ES Tools](https://github.com/microsoft1estools)** | `microsoft.com` | |
108 | | **[Microsoft MakeCode](https://github.com/Microsoft-MakeCode)** | `microsoft.com` | |
109 | | **[Microsoft Open Technologies, Inc.](https://github.com/MSOpenTech)** | `microsoft.com` | |
110 |
111 | ---
112 |
113 | ## Apple
114 |
115 | | Organization/Account | Verified Domain | Proof of Association |
116 | |---|---|---|
117 | | **[Apple](https://github.com/apple)** | `apple.com` | |
118 | | **[The Swift Programming Language](https://github.com/swiftlang)** | `swift.org` | `opensource.apple.com` ↳ [`opensource.apple.com/projects/swift`](https://opensource.apple.com/projects/swift/) ↳ Links To 🠊 `swift.org` |
119 | | **[The WebKit Open Source Project](https://github.com/webkit)** | `webkit.org` | `opensource.apple.com` ↳ [`opensource.apple.com/projects/webkit`](https://opensource.apple.com/projects/webkit/) ↳ Links To 🠊 `webkit.org` |
120 | | **[ml-explore](https://github.com/ml-explore)** | | `opensource.apple.com` ↳ [`opensource.apple.com/projects/mlx`](https://opensource.apple.com/projects/mlx/) ↳ Links To 🠊 `github.com/ml-explore` |
121 | | **[Apple OSS Distributions](https://github.com/apple-oss-distributions)** | | [Open Source Releases page](https://opensource.apple.com/releases/) ↳ Numerous "GitHub" links: Links To 🠊 `github.com/apple-oss-distributions` |
122 | | **[FoundationDB](https://github.com/foundationdb)** | | `opensource.apple.com` ↳ [`opensource.apple.com/projects/foundationdb`](https://opensource.apple.com/projects/foundationdb/) ↳ Links To 🠊 `github.com/foundationdb` |
123 | | **[ResearchKit](https://github.com/ResearchKit)** | | `opensource.apple.com` ↳ [`opensource.apple.com/projects/researchkit`](https://opensource.apple.com/projects/researchkit/) ↳ Links To 🠊 `github.com/ResearchKit` |
124 | | **[CareKit](https://github.com/carekit-apple)** | | `opensource.apple.com` ↳ [`opensource.apple.com/projects/carekit`](https://opensource.apple.com/projects/carekit/) ↳ Links To 🠊 `github.com/carekit-apple` |
125 |
126 | ---
127 |
128 | ## Nvidia
129 |
130 | | Organization/Account | Verified Domain | Proof of Association |
131 | |---|---|---|
132 | | **[NVIDIA Corporation](https://github.com/NVIDIA)** | `nvidia.com` | |
133 | | **[NVIDIA-NeMo](https://github.com/NVIDIA-NeMo)** | `nvidia.com` | |
134 | | **[NVIDIA-RTX](https://github.com/NVIDIA-RTX)** | `nvidia.com` | |
135 | | **[NVIDIA Research Projects](https://github.com/NVlabs)** | | `developer.nvidia.com` ↳ [`developer.nvidia.com/sionna`](https://developer.nvidia.com/sionna) ↳ "Get The Code" Button Links To 🠊 `github.com/Nvlabs` |
136 | | **[ NVIDIA GameWorks](https://github.com/NVIDIAGameWorks)** | | `nvidia.com` ↳ [`nvidia.com/en-us/research`](https://www.nvidia.com/en-us/research/) ↳ Under "**Reseach Code Libraries**" click "**View the Collection**" ↳ "**Kaolin Wisp**" Links To 🠊 `github.com/NVIDIAGameWorks` |
137 | | **[ NVIDIA AI IOT](https://github.com/NVIDIA-AI-IOT)** | | `docs.nvidia.com` ↳ [Python Samples Documentation](https://docs.nvidia.com/metropolis/deepstream/dev-guide/text/DS_Python_Sample_Apps.html#:~:text=https%3A//github.com/NVIDIA%2DAI%2DIOT) ↳ Git Clone Instructions Links To 🠊 `github.com/NVIDIA-AI-IOT` |
138 | | **[ NVIDIA Omniverse](https://github.com/NVIDIA-Omniverse)** | | `docs.omniverse.nvidia.com` ↳ [Omniverse Kit Documentation](https://docs.omniverse.nvidia.com/services/latest/developer/app_template.html#:~:text=https%3A//github.com/NVIDIA%2DOmniverse) ↳ Links To 🠊 `github.com/NVIDIA-Omniverse` |
139 | | **[ NVIDIA AI Blueprints](https://github.com/NVIDIA-AI-Blueprints)** | | `catalog.ngc.nvidia.com` ↳ [NGC Container Catalog](https://catalog.ngc.nvidia.com/orgs/nvidia/teams/blueprint/containers/ingestor-server?version=2.3.0#:~:text=Documentation%20and%20source,here) ↳ Links To 🠊 `github.com/NVIDIA-AI-Blueprints` |
140 | | **[NVIDIA Cosmos](https://github.com/nvidia-cosmos)** | | `research.nvidia.com` ↳ [Official Research Publication](https://research.nvidia.com/publication/2025-03_cosmos-reason-1-physical-ai-common-sense-embodied-decisions#:~:text=https%3A//github.com/nvidia%2Dcosmos/cosmos%2Dreason1) ↳ Links To 🠊 `github.com/nvidia-cosmos` |
141 | | **[NVIDIA Digital Biology Research](https://github.com/NVIDIA-Digital-Bio)** | | `catalog.ngc.nvidia.com` ↳ [ReaSyn Model Weights](https://catalog.ngc.nvidia.com/orgs/nvidia/teams/clara/resources/reasyn) ↳ Links To 🠊 `github.com/NVIDIA-Digital-Bio` |
142 | | **[NVIDIA Riva](https://github.com/nvidia-riva)** | | `docs.nvidia.com` ↳ [Audiocodes VoiceGateway Sample](https://docs.nvidia.com/deeplearning/riva/archives/2-0-0/user-guide/docs/samples/ivr-integration.html#:~:text=websocket%20bridge%20%3C-,https%3A//github.com/nvidia%2Driva/websocket%2Dbridge,-%3E_) ↳ Links To 🠊 `github.com/nvidia-riva` |
143 | | **[NVIDIA Isaac for Healthcare](https://github.com/isaac-for-healthcare)** | | `docs.nvidia.com` ↳ ["Setting Up Isaac for Healthcare" Documentation](https://docs.nvidia.com/learning/physical-ai/getting-started-with-isaac-for-healthcare/latest/training-healthcare-robots-from-scratch/01-setup/01-setup.html#:~:text=Please%20check%20the%20system%20prerequisites%20here) ↳ System Prerequisites Links To 🠊 `github.com/isaac-for-healthcare` |
144 | | **[ NVIDIA Spatial Intelligence Lab (SIL)](https://github.com/nv-tlabs)** | | `docs.nvidia.com` ↳ [Omniverse NuRec Documentation](https://docs.nvidia.com/nurec/robotics/neural_reconstruction_stereo.html#:~:text=git%20clone%20%2D%2Drecursive%20https%3A//github.com/nv%2Dtlabs/3dgrut.git) ↳ Git Clone Instructions Links To 🠊 `github.com/nv-tlabs` |
145 | | **[NVIDIA-Maxine](https://github.com/NVIDIA-Maxine)** | | `build.nvidia.com` ↳ [Maxine Studio Voice API Page](https://build.nvidia.com/nvidia/studiovoice/api#:~:text=Download%20the%20Maxine%20Studio%20Voice%20Python%20client%20code%20by%20cloning%20the%20NVIDIA%20Maxine%20NIM%20Clients%20Repository) ↳ Links To 🠊 `github.com/NVIDIA-Maxine` |
146 | | **[NVIDIA-DOCA](https://github.com/NVIDIA-DOCA)** | | `docs.nvidia.com` ↳ [Nvidia DOCA Documentation](https://docs.nvidia.com/doca/archive/3-1-0-core-update/changes-and-new-features/index.html#:~:text=DOCA%20Sample%20Code%3A%20Migrated%20all%20DOCA%20sample%20code%20snippets%20to%20GitHub%20for%20public%20access%3A%20https%3A//github.com/NVIDIA%2DDOCA/doca%2Dsamples) ↳ Links To 🠊 `github.com/NVIDIA-DOCA` |
147 | | **[NVIDIA Isaac](https://github.com/nvidia-isaac)** | | `docs.nvidia.com` ↳ [NVIDIA Omniverse NuRec Docs](https://docs.nvidia.com/nurec/robotics/neural_reconstruction_stereo.html#:%7E:text=git%20clone%20%2D%2Drecursive%20https%3A//github.com/nv%2Dtlabs/3dgrut.git:~:text=KeyframesMetadataCollection%20protobuf%20format-,Example%20cuSFM%20data,-%3A) ↳ Links To 🠊 `github.com/nvidia-isaac` |
--------------------------------------------------------------------------------
/Tools/JSON_Data_Editor.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Verified Repos Data Manager
7 |
8 |
9 |
10 |
11 |
35 |
36 |
37 |
38 |
39 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
Companies & Accounts
62 |
63 | New Company
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
Select an item on the left to edit
77 |
78 |
79 |
80 |
81 |
82 |
Edit
83 |
84 | Delete
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 | Live Preview
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
693 |
694 |
--------------------------------------------------------------------------------
/Data/Verified_Accounts_Data.json:
--------------------------------------------------------------------------------
1 | {
2 | "companies": [
3 | {
4 | "name": "Amazon",
5 | "accounts": [
6 | {
7 | "name": "Amazon",
8 | "github_url": "https://github.com/amzn",
9 | "verified_domain": null,
10 | "proof_steps": [
11 | {
12 | "type": "Base",
13 | "text": "developer.amazon.com",
14 | "url": null
15 | },
16 | {
17 | "type": "StandaloneHyperlink",
18 | "text": "Amazon API Documentation",
19 | "url": "https://developer.amazon.com/docs/amazon-pay-api-v2/introduction.html#sdk"
20 | },
21 | {
22 | "type": "LinksTo",
23 | "text": "github.com/amzn",
24 | "url": "https://github.com/amzn/amazon-pay-api-sdk-php",
25 | "prefix_text": "\"SDK\" Section"
26 | }
27 | ]
28 | },
29 | {
30 | "name": "Amazon Web Services",
31 | "github_url": "https://github.com/aws",
32 | "verified_domain": "amazon.com",
33 | "proof_steps": []
34 | },
35 | {
36 | "name": "Amazon Archives",
37 | "github_url": "https://github.com/amazon-archives",
38 | "verified_domain": "amazon.com",
39 | "proof_steps": []
40 | },
41 | {
42 | "name": "Amazon Q Developer",
43 | "github_url": "https://github.com/Amazon-Q-Developer",
44 | "verified_domain": "amazon.com",
45 | "proof_steps": []
46 | },
47 | {
48 | "name": "amazon-freertos",
49 | "github_url": "https://github.com/amazon-freertos",
50 | "verified_domain": "amazon.com",
51 | "proof_steps": []
52 | },
53 | {
54 | "name": "Amazon Web Services - Labs",
55 | "github_url": "https://github.com/awslabs",
56 | "verified_domain": "amazon.com",
57 | "proof_steps": []
58 | },
59 | {
60 | "name": "AWS Samples",
61 | "github_url": "https://github.com/aws-samples/",
62 | "verified_domain": "amazon.com",
63 | "proof_steps": []
64 | },
65 | {
66 | "name": "Amazon Linux",
67 | "github_url": "https://github.com/amazonlinux",
68 | "verified_domain": "amazonlinux.com",
69 | "proof_steps": [
70 | {
71 | "type": "Base",
72 | "text": "docs.aws.amazon.com",
73 | "url": null
74 | },
75 | {
76 | "type": "StandaloneHyperlink",
77 | "text": "docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html",
78 | "url": "https://docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html"
79 | },
80 | {
81 | "type": "LinksTo",
82 | "text": "cdn.amazonlinux.com",
83 | "url": null,
84 | "prefix_text": "Sample Code"
85 | }
86 | ]
87 | },
88 | {
89 | "name": "Amazon Science",
90 | "github_url": "https://github.com/amazon-science",
91 | "verified_domain": "amazon.science",
92 | "proof_steps": [
93 | {
94 | "type": "Base",
95 | "text": "amazon.com",
96 | "url": null
97 | },
98 | {
99 | "type": "StandaloneHyperlink",
100 | "text": "amazon.com/research",
101 | "url": "https://www.amazon.com/research/"
102 | },
103 | {
104 | "type": "RedirectsTo",
105 | "text": "amazon.science",
106 | "url": "https://www.amazon.science/"
107 | }
108 | ]
109 | },
110 | {
111 | "name": "awsdocs",
112 | "github_url": "https://github.com/awsdocs",
113 | "verified_domain": null,
114 | "proof_steps": [
115 | {
116 | "type": "Base",
117 | "text": "docs.aws.amazon.com",
118 | "url": null
119 | },
120 | {
121 | "type": "StandaloneHyperlink",
122 | "text": "AWS SDK for C++ Documentation",
123 | "url": "https://docs.aws.amazon.com/sdk-for-cpp/latest/api/aws-cpp-sdk-s3-encryption/html/class_aws_1_1_s3_encryption_1_1_materials_1_1_k_m_s_with_context_encryption_materials.html"
124 | },
125 | {
126 | "type": "LinksTo",
127 | "prefix_text": "\"Examples\" link",
128 | "text": "github.com/awsdocs/aws-doc-sdk-examples",
129 | "url": null
130 | }
131 | ]
132 | },
133 | {
134 | "name": "amazon-contributing",
135 | "github_url": "https://github.com/amazon-contributing",
136 | "verified_domain": null,
137 | "proof_steps": [
138 | {
139 | "type": "Base",
140 | "text": "docs.aws.amazon.com",
141 | "url": null
142 | },
143 | {
144 | "type": "StandaloneHyperlink",
145 | "text": "CloudWatch Documentation",
146 | "url": "https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-OTLPAdvancedsetup.html"
147 | },
148 | {
149 | "type": "LinksTo",
150 | "prefix_text": "Configuration snippets reference",
151 | "text": "github.com/amazon-contributing/opentelemetry-collector-contrib",
152 | "url": null
153 | }
154 | ]
155 | },
156 | {
157 | "name": "amazon-connect",
158 | "github_url": "https://github.com/amazon-connect",
159 | "verified_domain": null,
160 | "proof_steps": [
161 | {
162 | "type": "Base",
163 | "text": "aws.amazon.com",
164 | "url": null
165 | },
166 | {
167 | "type": "StandaloneHyperlink",
168 | "text": "AWS Contact Center Blog",
169 | "url": "https://aws.amazon.com/blogs/contact-center/analyze-customer-satisfaction-scores-with-post-contact-surveys-using-amazon-connect-tasks/"
170 | },
171 | {
172 | "type": "LinksTo",
173 | "prefix_text": "\"subscribe today to...\"",
174 | "text": "github.com/amazon-connect",
175 | "url": null
176 | }
177 | ]
178 | },
179 | {
180 | "name": "amazon-braket",
181 | "github_url": "https://github.com/amazon-braket",
182 | "verified_domain": null,
183 | "proof_steps": [
184 | {
185 | "type": "Base",
186 | "text": "docs.aws.amazon.com",
187 | "url": null
188 | },
189 | {
190 | "type": "StandaloneHyperlink",
191 | "text": "Amazon Braket Developer Guide",
192 | "url": "https://docs.aws.amazon.com/braket/latest/developerguide/braket-quera-submitting-analog-program-aquila.html"
193 | },
194 | {
195 | "type": "LinksTo",
196 | "prefix_text": "Code snippets reference",
197 | "text": "github.com/amazon-braket/amazon-braket-schemas-python",
198 | "url": null
199 | }
200 | ]
201 | },
202 | {
203 | "name": "payfort",
204 | "github_url": "https://github.com/payfort",
205 | "verified_domain": null,
206 | "proof_steps": [
207 | {
208 | "type": "Base",
209 | "text": "docs.payfort.com",
210 | "url": null
211 | },
212 | {
213 | "type": "StandaloneHyperlink",
214 | "text": "Prestashop Integration Guide (PDF)",
215 | "url": "https://docs.payfort.com/pdf/plugins/Prestashop%20Integration%20Guide.pdf"
216 | },
217 | {
218 | "type": "LinksTo",
219 | "prefix_text": "\"Download the plugin\" link",
220 | "text": "github.com/payfort/prestashop-payfort",
221 | "url": null
222 | }
223 | ]
224 | },
225 | {
226 | "name": "amazon-gamelift",
227 | "github_url": "https://github.com/amazon-gamelift",
228 | "verified_domain": null,
229 | "proof_steps": [
230 | {
231 | "type": "Base",
232 | "text": "docs.aws.amazon.com",
233 | "url": null
234 | },
235 | {
236 | "type": "StandaloneHyperlink",
237 | "text": "GameLift Developer Guide",
238 | "url": "https://docs.aws.amazon.com/gameliftservers/latest/developerguide/gamelift-wrapper-tutorial.html"
239 | },
240 | {
241 | "type": "LinksTo",
242 | "prefix_text": "Tutorial command",
243 | "text": "github.com/amazon-gamelift/amazon-gamelift-servers-game-server-wrapper",
244 | "url": null
245 | }
246 | ]
247 | },
248 | {
249 | "name": "Amazon Ion",
250 | "github_url": "https://github.com/amazon-ion",
251 | "verified_domain": null,
252 | "proof_steps": [
253 | {
254 | "type": "Base",
255 | "text": "aws.amazon.com",
256 | "url": null
257 | },
258 | {
259 | "type": "StandaloneHyperlink",
260 | "text": "AWS Big Data Blog",
261 | "url": "https://aws.amazon.com/blogs/big-data/analyze-amazon-ion-datasets-using-amazon-athena/"
262 | },
263 | {
264 | "type": "LinksTo",
265 | "prefix_text": "\"Amazon Ion\" link",
266 | "text": "amzn.github.io/ion-docs/",
267 | "url": "https://amzn.github.io/ion-docs/"
268 | },
269 | {
270 | "type": "RedirectsTo",
271 | "prefix_text": null,
272 | "text": "amazon-ion.github.io",
273 | "url": "https://amazon-ion.github.io/"
274 | }
275 | ]
276 | },
277 | {
278 | "name": "AmazonAppDev",
279 | "github_url": "https://github.com/AmazonAppDev",
280 | "verified_domain": null,
281 | "proof_steps": [
282 | {
283 | "type": "Base",
284 | "text": "developer.amazon.com",
285 | "url": null
286 | },
287 | {
288 | "type": "LinksTo",
289 | "text": "github.com/AmazonAppDev",
290 | "url": null,
291 | "prefix_text": "Footer \"Follow Us\" Section"
292 | }
293 | ]
294 | },
295 | {
296 | "name": "Amazon Nova",
297 | "github_url": "https://github.com/amazon-nova-api",
298 | "verified_domain": null,
299 | "proof_steps": [
300 | {
301 | "type": "Base",
302 | "text": "nova.amazon.com",
303 | "url": null
304 | },
305 | {
306 | "type": "StandaloneHyperlink",
307 | "text": "nova.amazon.com/dev",
308 | "url": "https://nova.amazon.com/dev"
309 | },
310 | {
311 | "type": "LinksTo",
312 | "text": "github.com/amazon-nova-api",
313 | "url": null,
314 | "prefix_text": "Quick Start Guides"
315 | }
316 | ]
317 | }
318 | ]
319 | },
320 | {
321 | "name": "Adobe",
322 | "accounts": [
323 | {
324 | "name": "Adobe, Inc.",
325 | "github_url": "https://github.com/adobe",
326 | "verified_domain": "adobe.com",
327 | "proof_steps": []
328 | },
329 | {
330 | "name": "Adobe Web Platform",
331 | "github_url": "https://github.com/adobe-webplatform",
332 | "verified_domain": null,
333 | "proof_steps": [
334 | {
335 | "type": "StandaloneHyperlink",
336 | "text": "Listed on official Open Source portal",
337 | "url": "https://opensource.adobe.com/#organizations",
338 | "archive_url": null
339 | }
340 | ]
341 | },
342 | {
343 | "name": "Adobe Research",
344 | "github_url": "https://github.com/adobe-research",
345 | "verified_domain": null,
346 | "proof_steps": [
347 | {
348 | "type": "StandaloneHyperlink",
349 | "text": "Listed on official Open Source portal",
350 | "url": "https://opensource.adobe.com/#organizations",
351 | "archive_url": null
352 | }
353 | ]
354 | },
355 | {
356 | "name": "Adobe Photoshop",
357 | "github_url": "https://github.com/adobe-photoshop",
358 | "verified_domain": null,
359 | "proof_steps": [
360 | {
361 | "type": "StandaloneHyperlink",
362 | "text": "Listed on official Open Source portal",
363 | "url": "https://opensource.adobe.com/#organizations",
364 | "archive_url": null
365 | }
366 | ]
367 | },
368 | {
369 | "name": "Adobe Fonts",
370 | "github_url": "https://github.com/adobe-fonts",
371 | "verified_domain": null,
372 | "proof_steps": [
373 | {
374 | "type": "StandaloneHyperlink",
375 | "text": "Listed on official Open Source portal",
376 | "url": "https://opensource.adobe.com/#organizations",
377 | "archive_url": null
378 | }
379 | ]
380 | },
381 | {
382 | "name": "Adobe Typekit",
383 | "github_url": "https://github.com/typekit",
384 | "verified_domain": null,
385 | "proof_steps": [
386 | {
387 | "type": "StandaloneHyperlink",
388 | "text": "Listed on official Open Source portal",
389 | "url": "https://opensource.adobe.com/#organizations",
390 | "archive_url": null
391 | }
392 | ]
393 | },
394 | {
395 | "name": "Adobe Community Software",
396 | "github_url": "https://github.com/adobe-consulting-services",
397 | "verified_domain": null,
398 | "proof_steps": [
399 | {
400 | "type": "StandaloneHyperlink",
401 | "text": "Listed on official Open Source portal (as \"Adobe Consulting Services\")",
402 | "url": "https://opensource.adobe.com/#organizations",
403 | "archive_url": null
404 | }
405 | ]
406 | },
407 | {
408 | "name": "Adobe Experience Cloud",
409 | "github_url": "https://github.com/adobe-marketing-cloud",
410 | "verified_domain": null,
411 | "proof_steps": [
412 | {
413 | "type": "StandaloneHyperlink",
414 | "text": "Listed on official Open Source portal",
415 | "url": "https://opensource.adobe.com/#organizations",
416 | "archive_url": null
417 | }
418 | ]
419 | },
420 | {
421 | "name": "Adobe-CloudOps",
422 | "github_url": "https://github.com/adobe-cloudops",
423 | "verified_domain": null,
424 | "proof_steps": [
425 | {
426 | "type": "StandaloneHyperlink",
427 | "text": "Listed on official Open Source portal",
428 | "url": "https://opensource.adobe.com/#organizations",
429 | "archive_url": null
430 | }
431 | ]
432 | },
433 | {
434 | "name": "Topcoat",
435 | "github_url": "https://github.com/topcoat",
436 | "verified_domain": null,
437 | "proof_steps": [
438 | {
439 | "type": "StandaloneHyperlink",
440 | "text": "Listed on official Open Source portal",
441 | "url": "https://opensource.adobe.com/#organizations",
442 | "archive_url": null
443 | }
444 | ]
445 | },
446 | {
447 | "name": "Adobe Systems",
448 | "github_url": "https://github.com/adobe-flash",
449 | "verified_domain": null,
450 | "proof_steps": [
451 | {
452 | "type": "StandaloneHyperlink",
453 | "text": "Listed on official Open Source portal",
454 | "url": "https://opensource.adobe.com/#organizations",
455 | "archive_url": null
456 | }
457 | ]
458 | }
459 | ]
460 | },
461 | {
462 | "name": "Google",
463 | "accounts": [
464 | {
465 | "name": "Google",
466 | "github_url": "https://github.com/google",
467 | "verified_domain": "google.com",
468 | "proof_steps": []
469 | },
470 | {
471 | "name": "Noto Fonts",
472 | "github_url": "https://github.com/notofonts",
473 | "verified_domain": "google.com",
474 | "proof_steps": []
475 | },
476 | {
477 | "name": "GoogleChromeLabs",
478 | "github_url": "https://github.com/GoogleChromeLabs",
479 | "verified_domain": null,
480 | "proof_steps": [
481 | {
482 | "type": "Base",
483 | "text": "developer.chrome.com",
484 | "url": null
485 | },
486 | {
487 | "type": "StandaloneHyperlink",
488 | "text": "Blog post",
489 | "url": "https://developer.chrome.com/blog/chrome-for-testing",
490 | "archive_url": "https://web.archive.org/web/20250707164200/https://developer.chrome.com/blog/chrome-for-testing"
491 | },
492 | {
493 | "type": "LinksTo",
494 | "prefix_text": "\"JSON API Endpoints\"",
495 | "text": "github.com/GoogleChromeLabs",
496 | "url": null
497 | }
498 | ]
499 | },
500 | {
501 | "name": "GoogleChrome",
502 | "github_url": "https://github.com/GoogleChrome",
503 | "verified_domain": null,
504 | "proof_steps": [
505 | {
506 | "type": "Base",
507 | "text": "opensource.google.com",
508 | "url": null
509 | },
510 | {
511 | "type": "StandaloneHyperlink",
512 | "text": "opensource.google.com/projects/audion",
513 | "url": "https://opensource.google.com/projects/audion",
514 | "archive_url": null
515 | },
516 | {
517 | "type": "RedirectsTo",
518 | "prefix_text": null,
519 | "text": "github.com/GoogleChrome",
520 | "url": null
521 | }
522 | ]
523 | },
524 | {
525 | "name": "tensorflow",
526 | "github_url": "https://github.com/tensorflow",
527 | "verified_domain": null,
528 | "proof_steps": [
529 | {
530 | "type": "Base",
531 | "text": "opensource.google",
532 | "url": null
533 | },
534 | {
535 | "type": "StandaloneHyperlink",
536 | "text": "opensource.google/projects/tensorflow",
537 | "url": "https://opensource.google/projects/tensorflow",
538 | "archive_url": null
539 | },
540 | {
541 | "type": "LinksTo",
542 | "prefix_text": null,
543 | "text": "tensorflow.org",
544 | "url": null
545 | },
546 | {
547 | "type": "LinksTo",
548 | "prefix_text": "\"GitHub\" link",
549 | "text": "github.com/tensorflow",
550 | "url": null
551 | }
552 | ]
553 | },
554 | {
555 | "name": "Flutter",
556 | "github_url": "https://github.com/flutter",
557 | "verified_domain": "flutter.dev",
558 | "proof_steps": [
559 | {
560 | "type": "Base",
561 | "text": "opensource.google",
562 | "url": null
563 | },
564 | {
565 | "type": "StandaloneHyperlink",
566 | "text": "opensource.google/projects/flutter",
567 | "url": "https://opensource.google/projects/flutter",
568 | "archive_url": null
569 | },
570 | {
571 | "type": "LinksTo",
572 | "prefix_text": null,
573 | "text": "flutter.dev",
574 | "url": null
575 | }
576 | ]
577 | },
578 | {
579 | "name": "Android",
580 | "github_url": "https://github.com/android",
581 | "verified_domain": null,
582 | "proof_steps": [
583 | {
584 | "type": "Base",
585 | "text": "opensource.google.com",
586 | "url": null
587 | },
588 | {
589 | "type": "StandaloneHyperlink",
590 | "text": "opensource.google/projects/android",
591 | "url": "https://opensource.google/projects/android",
592 | "archive_url": null
593 | },
594 | {
595 | "type": "LinksTo",
596 | "prefix_text": null,
597 | "text": "source.android.com",
598 | "url": null
599 | },
600 | {
601 | "type": "StandaloneHyperlink",
602 | "text": "developer.android.com/games/samples",
603 | "url": "https://developer.android.com/games/samples",
604 | "archive_url": "https://web.archive.org/web/20250923163041/https://developer.android.com/games/samples"
605 | },
606 | {
607 | "type": "LinksTo",
608 | "prefix_text": null,
609 | "text": "github.com/android",
610 | "url": null
611 | }
612 | ]
613 | },
614 | {
615 | "name": "Google Cloud Platform",
616 | "github_url": "https://github.com/GoogleCloudPlatform",
617 | "verified_domain": null,
618 | "proof_steps": [
619 | {
620 | "type": "Base",
621 | "text": "cloud.google.com",
622 | "url": null
623 | },
624 | {
625 | "type": "StandaloneHyperlink",
626 | "text": "Documentation article",
627 | "url": "https://cloud.google.com/build/docs/automating-builds/github/connect-repo-github",
628 | "archive_url": "https://web.archive.org/web/20250820201754/https://cloud.google.com/build/docs/automating-builds/github/connect-repo-github?generation=2nd-gen"
629 | },
630 | {
631 | "type": "LinksTo",
632 | "prefix_text": "Footer \"GitHub\" link",
633 | "text": "github.com/GoogleCloudPlatform",
634 | "url": null
635 | }
636 | ]
637 | },
638 | {
639 | "name": "Material Components",
640 | "github_url": "https://github.com/material-components",
641 | "verified_domain": null,
642 | "proof_steps": [
643 | {
644 | "type": "Base",
645 | "text": "material.google.com",
646 | "url": null
647 | },
648 | {
649 | "type": "LinksTo",
650 | "prefix_text": "Footer \"GitHub\" link",
651 | "text": "github.com/material-components",
652 | "url": null
653 | }
654 | ]
655 | },
656 | {
657 | "name": "Dart",
658 | "github_url": "https://github.com/dart-lang",
659 | "verified_domain": "dart.dev",
660 | "proof_steps": [
661 | {
662 | "type": "Base",
663 | "text": "opensource.google",
664 | "url": null
665 | },
666 | {
667 | "type": "StandaloneHyperlink",
668 | "text": "opensource.google/projects/dart",
669 | "url": "https://opensource.google/projects/dart",
670 | "archive_url": null
671 | },
672 | {
673 | "type": "LinksTo",
674 | "prefix_text": null,
675 | "text": "dart.dev",
676 | "url": null
677 | }
678 | ]
679 | },
680 | {
681 | "name": "Google APIs",
682 | "github_url": "https://github.com/googleapis",
683 | "verified_domain": null,
684 | "proof_steps": [
685 | {
686 | "type": "Base",
687 | "text": "developer.google.com",
688 | "url": null
689 | },
690 | {
691 | "type": "StandaloneHyperlink",
692 | "text": "developers.google.com/api-client-library/python",
693 | "url": "https://developers.google.com/api-client-library/python",
694 | "archive_url": null
695 | },
696 | {
697 | "type": "RedirectsTo",
698 | "prefix_text": null,
699 | "text": "github.com/googleapis",
700 | "url": null
701 | }
702 | ]
703 | },
704 | {
705 | "name": "Firebase",
706 | "github_url": "https://github.com/firebase",
707 | "verified_domain": null,
708 | "proof_steps": [
709 | {
710 | "type": "Base",
711 | "text": "firebase.google.com",
712 | "url": null
713 | },
714 | {
715 | "type": "LinksTo",
716 | "prefix_text": "Footer \"GitHub\" link",
717 | "text": "github.com/firebase",
718 | "url": null
719 | }
720 | ]
721 | },
722 | {
723 | "name": "Kubernetes",
724 | "github_url": "https://github.com/kubernetes",
725 | "verified_domain": "kubernetes.io",
726 | "proof_steps": [
727 | {
728 | "type": "Base",
729 | "text": "opensource.google",
730 | "url": null
731 | },
732 | {
733 | "type": "StandaloneHyperlink",
734 | "text": "opensource.google/projects/kubernetes",
735 | "url": "https://opensource.google/projects/kubernetes",
736 | "archive_url": null
737 | },
738 | {
739 | "type": "LinksTo",
740 | "prefix_text": null,
741 | "text": "kubernetes.io",
742 | "url": null
743 | }
744 | ]
745 | },
746 | {
747 | "name": "Kubernetes SIGs",
748 | "github_url": "https://github.com/kubernetes-sigs",
749 | "verified_domain": null,
750 | "proof_steps": [
751 | {
752 | "type": "Base",
753 | "text": "opensource.google",
754 | "url": null
755 | },
756 | {
757 | "type": "StandaloneHyperlink",
758 | "text": "opensource.google/projects/kubernetes",
759 | "url": "https://opensource.google/projects/kubernetes",
760 | "archive_url": null
761 | },
762 | {
763 | "type": "LinksTo",
764 | "prefix_text": null,
765 | "text": "kubernetes.io",
766 | "url": null
767 | },
768 | {
769 | "type": "RedirectsTo",
770 | "prefix_text": "`sigs.kubernetes.io`",
771 | "text": "github.com/kubernetes-sigs",
772 | "url": null
773 | }
774 | ]
775 | },
776 | {
777 | "name": "Go",
778 | "github_url": "https://github.com/golang",
779 | "verified_domain": null,
780 | "proof_steps": [
781 | {
782 | "type": "Base",
783 | "text": "opensource.google",
784 | "url": null
785 | },
786 | {
787 | "type": "StandaloneHyperlink",
788 | "text": "opensource.google/projects/go",
789 | "url": "https://opensource.google/projects/go",
790 | "archive_url": null
791 | },
792 | {
793 | "type": "LinksTo",
794 | "prefix_text": null,
795 | "text": "go.dev",
796 | "url": null
797 | },
798 | {
799 | "type": "LinksTo",
800 | "prefix_text": "\"GitHub\" link",
801 | "text": "github.com/golang",
802 | "url": null
803 | }
804 | ]
805 | },
806 | {
807 | "name": "Google DeepMind",
808 | "github_url": "https://github.com/google-deepmind",
809 | "verified_domain": null,
810 | "proof_steps": [
811 | {
812 | "type": "Base",
813 | "text": "deepmind.google",
814 | "url": null
815 | },
816 | {
817 | "type": "LinksTo",
818 | "prefix_text": "\"Follow Us\" section",
819 | "text": "github.com/google-deepmind",
820 | "url": null
821 | }
822 | ]
823 | },
824 | {
825 | "name": "Kaggle",
826 | "github_url": "https://github.com/kaggle",
827 | "verified_domain": null,
828 | "proof_steps": [
829 | {
830 | "type": "Base",
831 | "text": "kaggle.com (Google-owned)",
832 | "url": "https://cloud.google.com/blog/products/gcp/welcome-kaggle-to-google-cloud/"
833 | },
834 | {
835 | "type": "StandaloneHyperlink",
836 | "text": "API docs",
837 | "url": "https://www.kaggle.com/docs/models",
838 | "archive_url": "https://archive.ph/h3gMC"
839 | },
840 | {
841 | "type": "LinksTo",
842 | "text": "github.com/kaggle"
843 | }
844 | ]
845 | },
846 | {
847 | "name": "Google Cloud Build",
848 | "github_url": "https://github.com/GoogleCloudBuild",
849 | "verified_domain": null,
850 | "proof_steps": [
851 | {
852 | "type": "Base",
853 | "text": "cloud.google.com",
854 | "url": null
855 | },
856 | {
857 | "type": "StandaloneHyperlink",
858 | "text": "Documentation Article",
859 | "url": "https://cloud.google.com/build/docs/automating-builds/github/connect-repo-github?generation=2nd-gen",
860 | "archive_url": "https://web.archive.org/web/20250820201754/https://cloud.google.com/build/docs/automating-builds/github/connect-repo-github?generation=2nd-gen"
861 | },
862 | {
863 | "type": "LinksTo",
864 | "prefix_text": "Step 'Install the Cloud Build GitHub App'",
865 | "text": "GitHub App",
866 | "url": "https://github.com/apps/google-cloud-build"
867 | },
868 | {
869 | "type": "LinksTo",
870 | "prefix_text": "App's \"Developer\" field",
871 | "text": "github.com/GoogleCloudBuild",
872 | "url": null
873 | }
874 | ]
875 | },
876 | {
877 | "name": "Google Cloud and HashiCorp",
878 | "github_url": "https://github.com/terraform-google-modules",
879 | "verified_domain": "opensource.google.com",
880 | "proof_steps": []
881 | },
882 | {
883 | "name": "Google GitHub Actions",
884 | "github_url": "https://github.com/google-github-actions",
885 | "verified_domain": "opensource.google.com",
886 | "proof_steps": []
887 | },
888 | {
889 | "name": "Google Pay",
890 | "github_url": "https://github.com/google-pay",
891 | "verified_domain": "developers.google.com",
892 | "proof_steps": []
893 | },
894 | {
895 | "name": "GoogleContainerTools",
896 | "github_url": "https://github.com/GoogleContainerTools",
897 | "verified_domain": null,
898 | "proof_steps": [
899 | {
900 | "type": "Base",
901 | "text": "cloud.google.com",
902 | "url": null
903 | },
904 | {
905 | "type": "StandaloneHyperlink",
906 | "text": "Blog post",
907 | "url": "https://cloud.google.com/blog/products/application-development/introducing-jib-build-java-docker-images-better",
908 | "archive_url": "https://web.archive.org/web/20250820091943/https://cloud.google.com/blog/products/application-development/introducing-jib-build-java-docker-images-better"
909 | },
910 | {
911 | "type": "LinksTo",
912 | "prefix_text": null,
913 | "text": "github.com/GoogleContainerTools",
914 | "url": null
915 | }
916 | ]
917 | },
918 | {
919 | "name": "Google Creative Lab",
920 | "github_url": "https://github.com/googlecreativelab",
921 | "verified_domain": null,
922 | "proof_steps": [
923 | {
924 | "type": "Base",
925 | "text": "opensource.google.com",
926 | "url": null
927 | },
928 | {
929 | "type": "StandaloneHyperlink",
930 | "text": "opensource.google.com/projects/quickdrawdataset",
931 | "url": "https://opensource.google.com/projects/quickdrawdataset",
932 | "archive_url": null
933 | },
934 | {
935 | "type": "RedirectsTo",
936 | "prefix_text": null,
937 | "text": "github.com/googlecreativelab",
938 | "url": null
939 | }
940 | ]
941 | },
942 | {
943 | "name": "Google CodeLabs",
944 | "github_url": "https://github.com/googlecodelabs",
945 | "verified_domain": null,
946 | "proof_steps": [
947 | {
948 | "type": "Base",
949 | "text": "codelabs.developers.google.com",
950 | "url": null
951 | },
952 | {
953 | "type": "LinksTo",
954 | "prefix_text": "\"Codelab tools on GitHub\" link",
955 | "text": "github.com/googlecodelabs",
956 | "url": null
957 | }
958 | ]
959 | },
960 | {
961 | "name": "Google Fonts",
962 | "github_url": "https://github.com/googlefonts",
963 | "verified_domain": null,
964 | "proof_steps": [
965 | {
966 | "type": "Base",
967 | "text": "fonts.google.com",
968 | "url": null
969 | },
970 | {
971 | "type": "StandaloneHyperlink",
972 | "text": "fonts.google.com/noto/contribute",
973 | "url": "https://fonts.google.com/noto/contribute",
974 | "archive_url": "https://archive.ph/KB5yk#selection-685.0-685.10:~:text=issue%20in%20the-,noto%2Demoji,-repository."
975 | },
976 | {
977 | "type": "LinksTo",
978 | "prefix_text": "\"GitHub\" link",
979 | "text": "github.com/googlefonts",
980 | "url": null
981 | }
982 | ]
983 | },
984 | {
985 | "name": "google-gemini",
986 | "github_url": "https://github.com/google-gemini",
987 | "verified_domain": null,
988 | "proof_steps": [
989 | {
990 | "type": "Base",
991 | "text": "ai.google.dev",
992 | "url": null
993 | },
994 | {
995 | "type": "StandaloneHyperlink",
996 | "text": "ai.google.dev/gemini-api/docs",
997 | "url": "https://ai.google.dev/gemini-api/docs",
998 | "archive_url": "https://web.archive.org/web/20251122090229/https://ai.google.dev/gemini-api/docs"
999 | },
1000 | {
1001 | "type": "LinksTo",
1002 | "prefix_text": "\"Cookbook\" link at the top",
1003 | "text": "github.com/google-gemini",
1004 | "url": null,
1005 | "archive_url": "https://web.archive.org/web/20250807082019/https://ai.google.dev/gemini-api/docs#:~:text=API%20Reference-,Cookbook,-Community"
1006 | }
1007 | ]
1008 | },
1009 | {
1010 | "name": "Google Security Operations",
1011 | "github_url": "https://github.com/chronicle",
1012 | "verified_domain": null,
1013 | "proof_steps": [
1014 | {
1015 | "type": "Base",
1016 | "text": "cloud.google.com",
1017 | "url": null
1018 | },
1019 | {
1020 | "type": "StandaloneHyperlink",
1021 | "text": "Google Cloud Documentation",
1022 | "url": "https://cloud.google.com/chronicle/docs/reference/ingestion-api#:~:text=https%3A//github.com/chronicle/api%2Dsamples%2Dpython/blob/master/ingestion/create_entities.py",
1023 | "archive_url": "https://web.archive.org/web/20251205182722/https://docs.cloud.google.com/chronicle/docs/reference/ingestion-api"
1024 | },
1025 | {
1026 | "type": "LinksTo",
1027 | "prefix_text": "Example code",
1028 | "text": "github.com/chronicle/api-samples-python",
1029 | "url": null,
1030 | "archive_url": "https://web.archive.org/web/20250523122327/https://cloud.google.com/chronicle/docs/reference/ingestion-api#:~:text=https%3A//github.com/chronicle/api%2Dsamples%2Dpython/blob/master/ingestion/create_entities.py"
1031 | }
1032 | ]
1033 | },
1034 | {
1035 | "name": "Google Colaboratory",
1036 | "github_url": "https://github.com/googlecolab",
1037 | "verified_domain": null,
1038 | "proof_steps": [
1039 | {
1040 | "type": "Base",
1041 | "text": "colab.research.google.com",
1042 | "url": null,
1043 | "archive_url": "https://archive.ph/fEoc7#selection-2443.0-2443.36:~:text=getting%20started%20with%20google%20colab%20ai"
1044 | },
1045 | {
1046 | "type": "LinksTo",
1047 | "prefix_text": "'Getting Started' link",
1048 | "text": "github.com/googlecolab",
1049 | "url": null
1050 | }
1051 | ]
1052 | },
1053 | {
1054 | "name": "Google Research",
1055 | "github_url": "https://github.com/google-research",
1056 | "verified_domain": null,
1057 | "proof_steps": [
1058 | {
1059 | "type": "StandaloneHyperlink",
1060 | "text": "research.google",
1061 | "url": "https://research.google/",
1062 | "archive_url": "https://archive.ph/GhBF6"
1063 | },
1064 | {
1065 | "type": "LinksTo",
1066 | "prefix_text": "\"Follow Us\" section",
1067 | "text": "github.com/google-research",
1068 | "url": null
1069 | }
1070 | ]
1071 | }
1072 | ]
1073 | },
1074 | {
1075 | "name": "Microsoft",
1076 | "accounts": [
1077 | {
1078 | "name": "Microsoft",
1079 | "github_url": "https://github.com/microsoft",
1080 | "verified_domain": "microsoft.com",
1081 | "proof_steps": []
1082 | },
1083 | {
1084 | "name": "Microsoft Docs",
1085 | "github_url": "https://github.com/microsoftdocs",
1086 | "verified_domain": "microsoft.com",
1087 | "proof_steps": []
1088 | },
1089 | {
1090 | "name": "Microsoft Learning",
1091 | "github_url": "https://github.com/microsoftlearning",
1092 | "verified_domain": null,
1093 | "proof_steps": [
1094 | {
1095 | "type": "Base",
1096 | "text": "github.com/microsoft",
1097 | "url": null
1098 | },
1099 | {
1100 | "type": "StandaloneHyperlink",
1101 | "text": "Documentation article",
1102 | "url": "https://github.com/microsoft/PartnerResources/blob/abe595f4f48f6c63a5d20572a3f14ee9cfa61b15/_docs/Skilling/Security%20Academy/Other%20pages/Certifications.md",
1103 | "archive_url": "https://web.archive.org/web/20250612164944/https://github.com/microsoft/PartnerResources/blob/abe595f4f48f6c63a5d20572a3f14ee9cfa61b15/_docs/Skilling/Security%20Academy/Other%20pages/Certifications.md"
1104 | },
1105 | {
1106 | "type": "LinksTo",
1107 | "prefix_text": "\"Labs\" column",
1108 | "text": "github.com/microsoftlearning",
1109 | "url": null
1110 | }
1111 | ]
1112 | },
1113 | {
1114 | "name": "Microsoft Azure",
1115 | "github_url": "https://github.com/Azure",
1116 | "verified_domain": "azure.microsoft.com",
1117 | "proof_steps": []
1118 | },
1119 | {
1120 | "name": "Azure Samples",
1121 | "github_url": "https://github.com/Azure-Samples",
1122 | "verified_domain": "azure.microsoft.com",
1123 | "proof_steps": []
1124 | },
1125 | {
1126 | "name": "Microsoft Edge",
1127 | "github_url": "https://github.com/MicrosoftEdge",
1128 | "verified_domain": null,
1129 | "proof_steps": [
1130 | {
1131 | "type": "StandaloneHyperlink",
1132 | "text": "Linked from official Microsoft Learn documentation",
1133 | "url": "https://learn.microsoft.com/en-us/microsoft-edge/devtools/samples/",
1134 | "archive_url": "https://archive.ph/ucWUo"
1135 | }
1136 | ]
1137 | },
1138 | {
1139 | "name": "Microsoft Archive",
1140 | "github_url": "https://github.com/microsoftarchive",
1141 | "verified_domain": "microsoft.com",
1142 | "proof_steps": []
1143 | },
1144 | {
1145 | "name": "Microsoft Graph",
1146 | "github_url": "https://github.com/microsoftgraph",
1147 | "verified_domain": null,
1148 | "proof_steps": [
1149 | {
1150 | "type": "StandaloneHyperlink",
1151 | "text": "Microsoft Learn sample page",
1152 | "url": "https://learn.microsoft.com/en-us/samples/microsoftgraph/msgraph-sample-github-connector-python/microsoft-graph-python-github-connector-sample/",
1153 | "archive_url": "https://web.archive.org/web/20251205181030/https://learn.microsoft.com/en-us/samples/microsoftgraph/msgraph-sample-github-connector-python/microsoft-graph-python-github-connector-sample/"
1154 | },
1155 | {
1156 | "type": "LinksTo",
1157 | "prefix_text": "\"Browse Code\" link",
1158 | "text": "github.com/microsoftgraph",
1159 | "url": null
1160 | }
1161 | ]
1162 | },
1163 | {
1164 | "name": ".NET Platform",
1165 | "github_url": "https://github.com/dotnet",
1166 | "verified_domain": "dotnetfoundation.org",
1167 | "proof_steps": []
1168 | },
1169 | {
1170 | "name": "ASP.NET",
1171 | "github_url": "https://github.com/aspnet",
1172 | "verified_domain": null,
1173 | "proof_steps": [
1174 | {
1175 | "type": "StandaloneHyperlink",
1176 | "text": "Named in official Microsoft security policy",
1177 | "url": "https://github.com/microsoft/verified-storage/security",
1178 | "archive_url": "https://web.archive.org/web/20251205181637/https://github.com/microsoft/verified-storage/security"
1179 | }
1180 | ]
1181 | },
1182 | {
1183 | "name": "Xamarin",
1184 | "github_url": "https://github.com/xamarin",
1185 | "verified_domain": "xamarin.com",
1186 | "proof_steps": [
1187 | {
1188 | "type": "StandaloneHyperlink",
1189 | "text": "Named in official Microsoft security policy",
1190 | "url": "https://github.com/microsoft/verified-storage/security",
1191 | "archive_url": "https://web.archive.org/web/20251205181637/https://github.com/microsoft/verified-storage/security"
1192 | }
1193 | ]
1194 | },
1195 | {
1196 | "name": "PowerShell Team",
1197 | "github_url": "https://github.com/PowerShell",
1198 | "verified_domain": "microsoft.com",
1199 | "proof_steps": []
1200 | },
1201 | {
1202 | "name": "Microsoft 365 Developer",
1203 | "github_url": "https://github.com/officedev",
1204 | "verified_domain": "microsoft.com",
1205 | "proof_steps": [
1206 | {
1207 | "type": "StandaloneHyperlink",
1208 | "text": "Linked from an official Microsoft 365 Developer Blog post",
1209 | "url": "https://devblogs.microsoft.com/microsoft365dev/add-in-samples-have-moved-to-github/",
1210 | "archive_url": "https://web.archive.org/web/20250523203918/https://devblogs.microsoft.com/microsoft365dev/add-in-samples-have-moved-to-github/"
1211 | }
1212 | ]
1213 | },
1214 | {
1215 | "name": "Visual Studio Code",
1216 | "github_url": "https://github.com/Visual-Studio-Code",
1217 | "verified_domain": "code.visualstudio.com",
1218 | "proof_steps": []
1219 | },
1220 | {
1221 | "name": "Microsoft Visual Studio",
1222 | "github_url": "https://github.com/microsoft-vs",
1223 | "verified_domain": "online.visualstudio.com",
1224 | "proof_steps": []
1225 | },
1226 | {
1227 | "name": "Clipchamp at Microsoft",
1228 | "github_url": "https://github.com/clipchamp",
1229 | "verified_domain": "clipchamp.com",
1230 | "proof_steps": []
1231 | },
1232 | {
1233 | "name": "Microsoft Feedback",
1234 | "github_url": "https://github.com/microsoftfeedback",
1235 | "verified_domain": "microsoft.com",
1236 | "proof_steps": []
1237 | },
1238 | {
1239 | "name": "Microsoft 1ES Tools",
1240 | "github_url": "https://github.com/microsoft1estools",
1241 | "verified_domain": "microsoft.com",
1242 | "proof_steps": []
1243 | },
1244 | {
1245 | "name": "Microsoft MakeCode",
1246 | "github_url": "https://github.com/Microsoft-MakeCode",
1247 | "verified_domain": "microsoft.com",
1248 | "proof_steps": []
1249 | },
1250 | {
1251 | "name": "Microsoft Open Technologies, Inc.",
1252 | "github_url": "https://github.com/MSOpenTech",
1253 | "verified_domain": "microsoft.com",
1254 | "proof_steps": []
1255 | }
1256 | ]
1257 | },
1258 | {
1259 | "name": "Apple",
1260 | "accounts": [
1261 | {
1262 | "name": "Apple",
1263 | "github_url": "https://github.com/apple",
1264 | "verified_domain": "apple.com",
1265 | "proof_steps": []
1266 | },
1267 | {
1268 | "name": "The Swift Programming Language",
1269 | "github_url": "https://github.com/swiftlang",
1270 | "verified_domain": "swift.org",
1271 | "proof_steps": [
1272 | {
1273 | "type": "Base",
1274 | "text": "opensource.apple.com",
1275 | "url": null
1276 | },
1277 | {
1278 | "type": "StandaloneHyperlink",
1279 | "text": "opensource.apple.com/projects/swift",
1280 | "url": "https://opensource.apple.com/projects/swift/",
1281 | "archive_url": null
1282 | },
1283 | {
1284 | "type": "LinksTo",
1285 | "prefix_text": null,
1286 | "text": "swift.org",
1287 | "url": null
1288 | }
1289 | ]
1290 | },
1291 | {
1292 | "name": "The WebKit Open Source Project",
1293 | "github_url": "https://github.com/webkit",
1294 | "verified_domain": "webkit.org",
1295 | "proof_steps": [
1296 | {
1297 | "type": "Base",
1298 | "text": "opensource.apple.com",
1299 | "url": null
1300 | },
1301 | {
1302 | "type": "StandaloneHyperlink",
1303 | "text": "opensource.apple.com/projects/webkit",
1304 | "url": "https://opensource.apple.com/projects/webkit/",
1305 | "archive_url": null
1306 | },
1307 | {
1308 | "type": "LinksTo",
1309 | "prefix_text": null,
1310 | "text": "webkit.org",
1311 | "url": null
1312 | }
1313 | ]
1314 | },
1315 | {
1316 | "name": "ml-explore",
1317 | "github_url": "https://github.com/ml-explore",
1318 | "verified_domain": null,
1319 | "proof_steps": [
1320 | {
1321 | "type": "Base",
1322 | "text": "opensource.apple.com",
1323 | "url": null
1324 | },
1325 | {
1326 | "type": "StandaloneHyperlink",
1327 | "text": "opensource.apple.com/projects/mlx",
1328 | "url": "https://opensource.apple.com/projects/mlx/",
1329 | "archive_url": null
1330 | },
1331 | {
1332 | "type": "LinksTo",
1333 | "prefix_text": null,
1334 | "text": "github.com/ml-explore",
1335 | "url": null
1336 | }
1337 | ]
1338 | },
1339 | {
1340 | "name": "Apple OSS Distributions",
1341 | "github_url": "https://github.com/apple-oss-distributions",
1342 | "verified_domain": null,
1343 | "proof_steps": [
1344 | {
1345 | "type": "StandaloneHyperlink",
1346 | "text": "Open Source Releases page",
1347 | "url": "https://opensource.apple.com/releases/",
1348 | "archive_url": null
1349 | },
1350 | {
1351 | "type": "LinksTo",
1352 | "prefix_text": "Numerous \"GitHub\" links:",
1353 | "text": "github.com/apple-oss-distributions",
1354 | "url": null
1355 | }
1356 | ]
1357 | },
1358 | {
1359 | "name": "FoundationDB",
1360 | "github_url": "https://github.com/foundationdb",
1361 | "verified_domain": null,
1362 | "proof_steps": [
1363 | {
1364 | "type": "Base",
1365 | "text": "opensource.apple.com",
1366 | "url": null
1367 | },
1368 | {
1369 | "type": "StandaloneHyperlink",
1370 | "text": "opensource.apple.com/projects/foundationdb",
1371 | "url": "https://opensource.apple.com/projects/foundationdb/",
1372 | "archive_url": null
1373 | },
1374 | {
1375 | "type": "LinksTo",
1376 | "prefix_text": null,
1377 | "text": "github.com/foundationdb",
1378 | "url": null
1379 | }
1380 | ]
1381 | },
1382 | {
1383 | "name": "ResearchKit",
1384 | "github_url": "https://github.com/ResearchKit",
1385 | "verified_domain": null,
1386 | "proof_steps": [
1387 | {
1388 | "type": "Base",
1389 | "text": "opensource.apple.com",
1390 | "url": null
1391 | },
1392 | {
1393 | "type": "StandaloneHyperlink",
1394 | "text": "opensource.apple.com/projects/researchkit",
1395 | "url": "https://opensource.apple.com/projects/researchkit/",
1396 | "archive_url": null
1397 | },
1398 | {
1399 | "type": "LinksTo",
1400 | "prefix_text": null,
1401 | "text": "github.com/ResearchKit",
1402 | "url": null
1403 | }
1404 | ]
1405 | },
1406 | {
1407 | "name": "CareKit",
1408 | "github_url": "https://github.com/carekit-apple",
1409 | "verified_domain": null,
1410 | "proof_steps": [
1411 | {
1412 | "type": "Base",
1413 | "text": "opensource.apple.com",
1414 | "url": null
1415 | },
1416 | {
1417 | "type": "StandaloneHyperlink",
1418 | "text": "opensource.apple.com/projects/carekit",
1419 | "url": "https://opensource.apple.com/projects/carekit/",
1420 | "archive_url": null
1421 | },
1422 | {
1423 | "type": "LinksTo",
1424 | "prefix_text": null,
1425 | "text": "github.com/carekit-apple",
1426 | "url": null
1427 | }
1428 | ]
1429 | }
1430 | ]
1431 | },
1432 | {
1433 | "name": "Nvidia",
1434 | "accounts": [
1435 | {
1436 | "name": "NVIDIA Corporation",
1437 | "github_url": "https://github.com/NVIDIA",
1438 | "verified_domain": "nvidia.com",
1439 | "proof_steps": []
1440 | },
1441 | {
1442 | "name": "NVIDIA-NeMo",
1443 | "github_url": "https://github.com/NVIDIA-NeMo",
1444 | "verified_domain": "nvidia.com",
1445 | "proof_steps": []
1446 | },
1447 | {
1448 | "name": "NVIDIA-RTX",
1449 | "github_url": "https://github.com/NVIDIA-RTX",
1450 | "verified_domain": "nvidia.com",
1451 | "proof_steps": []
1452 | },
1453 | {
1454 | "name": "NVIDIA Research Projects",
1455 | "github_url": "https://github.com/NVlabs",
1456 | "verified_domain": null,
1457 | "proof_steps": [
1458 | {
1459 | "type": "Base",
1460 | "text": "developer.nvidia.com",
1461 | "url": null
1462 | },
1463 | {
1464 | "type": "StandaloneHyperlink",
1465 | "text": "developer.nvidia.com/sionna",
1466 | "url": "https://developer.nvidia.com/sionna"
1467 | },
1468 | {
1469 | "type": "LinksTo",
1470 | "text": "github.com/Nvlabs",
1471 | "url": null,
1472 | "prefix_text": "\"Get The Code\" Button"
1473 | }
1474 | ]
1475 | },
1476 | {
1477 | "name": " NVIDIA GameWorks",
1478 | "github_url": "https://github.com/NVIDIAGameWorks",
1479 | "verified_domain": null,
1480 | "proof_steps": [
1481 | {
1482 | "type": "Base",
1483 | "text": "nvidia.com",
1484 | "url": null
1485 | },
1486 | {
1487 | "type": "StandaloneHyperlink",
1488 | "text": "nvidia.com/en-us/research",
1489 | "url": "https://www.nvidia.com/en-us/research/"
1490 | },
1491 | {
1492 | "type": "Base",
1493 | "text": "Under \"**Reseach Code Libraries**\" click \"**View the Collection**\"",
1494 | "url": null
1495 | },
1496 | {
1497 | "type": "LinksTo",
1498 | "text": "github.com/NVIDIAGameWorks",
1499 | "url": null,
1500 | "prefix_text": "\"**Kaolin Wisp**\""
1501 | }
1502 | ]
1503 | },
1504 | {
1505 | "name": " NVIDIA AI IOT",
1506 | "github_url": "https://github.com/NVIDIA-AI-IOT",
1507 | "verified_domain": null,
1508 | "proof_steps": [
1509 | {
1510 | "type": "Base",
1511 | "text": "docs.nvidia.com",
1512 | "url": null
1513 | },
1514 | {
1515 | "type": "Base",
1516 | "text": "Python Samples Documentation",
1517 | "url": "https://docs.nvidia.com/metropolis/deepstream/dev-guide/text/DS_Python_Sample_Apps.html#:~:text=https%3A//github.com/NVIDIA%2DAI%2DIOT"
1518 | },
1519 | {
1520 | "type": "LinksTo",
1521 | "text": "github.com/NVIDIA-AI-IOT",
1522 | "url": null,
1523 | "prefix_text": "Git Clone Instructions"
1524 | }
1525 | ]
1526 | },
1527 | {
1528 | "name": " NVIDIA Omniverse",
1529 | "github_url": "https://github.com/NVIDIA-Omniverse",
1530 | "verified_domain": null,
1531 | "proof_steps": [
1532 | {
1533 | "type": "Base",
1534 | "text": "docs.omniverse.nvidia.com",
1535 | "url": null
1536 | },
1537 | {
1538 | "type": "StandaloneHyperlink",
1539 | "text": "Omniverse Kit Documentation",
1540 | "url": "https://docs.omniverse.nvidia.com/services/latest/developer/app_template.html#:~:text=https%3A//github.com/NVIDIA%2DOmniverse"
1541 | },
1542 | {
1543 | "type": "LinksTo",
1544 | "text": "github.com/NVIDIA-Omniverse",
1545 | "url": null
1546 | }
1547 | ]
1548 | },
1549 | {
1550 | "name": " NVIDIA AI Blueprints",
1551 | "github_url": "https://github.com/NVIDIA-AI-Blueprints",
1552 | "verified_domain": null,
1553 | "proof_steps": [
1554 | {
1555 | "type": "Base",
1556 | "text": "catalog.ngc.nvidia.com",
1557 | "url": null
1558 | },
1559 | {
1560 | "type": "StandaloneHyperlink",
1561 | "text": "NGC Container Catalog",
1562 | "url": "https://catalog.ngc.nvidia.com/orgs/nvidia/teams/blueprint/containers/ingestor-server?version=2.3.0#:~:text=Documentation%20and%20source,here"
1563 | },
1564 | {
1565 | "type": "LinksTo",
1566 | "text": "github.com/NVIDIA-AI-Blueprints",
1567 | "url": null
1568 | }
1569 | ]
1570 | },
1571 | {
1572 | "name": "NVIDIA Cosmos",
1573 | "github_url": "https://github.com/nvidia-cosmos",
1574 | "verified_domain": null,
1575 | "proof_steps": [
1576 | {
1577 | "type": "Base",
1578 | "text": "research.nvidia.com",
1579 | "url": null
1580 | },
1581 | {
1582 | "type": "StandaloneHyperlink",
1583 | "text": "Official Research Publication",
1584 | "url": "https://research.nvidia.com/publication/2025-03_cosmos-reason-1-physical-ai-common-sense-embodied-decisions#:~:text=https%3A//github.com/nvidia%2Dcosmos/cosmos%2Dreason1"
1585 | },
1586 | {
1587 | "type": "LinksTo",
1588 | "text": "github.com/nvidia-cosmos",
1589 | "url": null
1590 | }
1591 | ]
1592 | },
1593 | {
1594 | "name": "NVIDIA Digital Biology Research",
1595 | "github_url": "https://github.com/NVIDIA-Digital-Bio",
1596 | "verified_domain": null,
1597 | "proof_steps": [
1598 | {
1599 | "type": "Base",
1600 | "text": "catalog.ngc.nvidia.com",
1601 | "url": null
1602 | },
1603 | {
1604 | "type": "StandaloneHyperlink",
1605 | "text": "ReaSyn Model Weights",
1606 | "url": "https://catalog.ngc.nvidia.com/orgs/nvidia/teams/clara/resources/reasyn"
1607 | },
1608 | {
1609 | "type": "LinksTo",
1610 | "prefix_text": "",
1611 | "text": "github.com/NVIDIA-Digital-Bio",
1612 | "url": null
1613 | }
1614 | ]
1615 | },
1616 | {
1617 | "name": "NVIDIA Riva",
1618 | "github_url": "https://github.com/nvidia-riva",
1619 | "verified_domain": null,
1620 | "proof_steps": [
1621 | {
1622 | "type": "Base",
1623 | "text": "docs.nvidia.com",
1624 | "url": null
1625 | },
1626 | {
1627 | "type": "StandaloneHyperlink",
1628 | "text": "Audiocodes VoiceGateway Sample",
1629 | "url": "https://docs.nvidia.com/deeplearning/riva/archives/2-0-0/user-guide/docs/samples/ivr-integration.html#:~:text=websocket%20bridge%20%3C-,https%3A//github.com/nvidia%2Driva/websocket%2Dbridge,-%3E_"
1630 | },
1631 | {
1632 | "type": "LinksTo",
1633 | "prefix_text": "",
1634 | "text": "github.com/nvidia-riva",
1635 | "url": null
1636 | }
1637 | ]
1638 | },
1639 | {
1640 | "name": "NVIDIA Isaac for Healthcare",
1641 | "github_url": "https://github.com/isaac-for-healthcare",
1642 | "verified_domain": null,
1643 | "proof_steps": [
1644 | {
1645 | "type": "Base",
1646 | "text": "docs.nvidia.com",
1647 | "url": null
1648 | },
1649 | {
1650 | "type": "StandaloneHyperlink",
1651 | "text": "\"Setting Up Isaac for Healthcare\" Documentation",
1652 | "url": "https://docs.nvidia.com/learning/physical-ai/getting-started-with-isaac-for-healthcare/latest/training-healthcare-robots-from-scratch/01-setup/01-setup.html#:~:text=Please%20check%20the%20system%20prerequisites%20here"
1653 | },
1654 | {
1655 | "type": "LinksTo",
1656 | "prefix_text": "System Prerequisites",
1657 | "text": "github.com/isaac-for-healthcare",
1658 | "url": null
1659 | }
1660 | ]
1661 | },
1662 | {
1663 | "name": " NVIDIA Spatial Intelligence Lab (SIL)",
1664 | "github_url": "https://github.com/nv-tlabs",
1665 | "verified_domain": null,
1666 | "proof_steps": [
1667 | {
1668 | "type": "Base",
1669 | "text": "docs.nvidia.com",
1670 | "url": null
1671 | },
1672 | {
1673 | "type": "StandaloneHyperlink",
1674 | "text": "Omniverse NuRec Documentation",
1675 | "url": "https://docs.nvidia.com/nurec/robotics/neural_reconstruction_stereo.html#:~:text=git%20clone%20%2D%2Drecursive%20https%3A//github.com/nv%2Dtlabs/3dgrut.git"
1676 | },
1677 | {
1678 | "type": "LinksTo",
1679 | "prefix_text": "Git Clone Instructions",
1680 | "text": "github.com/nv-tlabs",
1681 | "url": null
1682 | }
1683 | ]
1684 | },
1685 | {
1686 | "name": "NVIDIA-Maxine",
1687 | "github_url": "https://github.com/NVIDIA-Maxine",
1688 | "verified_domain": null,
1689 | "proof_steps": [
1690 | {
1691 | "type": "Base",
1692 | "text": "build.nvidia.com",
1693 | "url": null
1694 | },
1695 | {
1696 | "type": "StandaloneHyperlink",
1697 | "text": "Maxine Studio Voice API Page",
1698 | "url": "https://build.nvidia.com/nvidia/studiovoice/api#:~:text=Download%20the%20Maxine%20Studio%20Voice%20Python%20client%20code%20by%20cloning%20the%20NVIDIA%20Maxine%20NIM%20Clients%20Repository"
1699 | },
1700 | {
1701 | "type": "LinksTo",
1702 | "prefix_text": "",
1703 | "text": "github.com/NVIDIA-Maxine",
1704 | "url": null
1705 | }
1706 | ]
1707 | },
1708 | {
1709 | "name": "NVIDIA-DOCA",
1710 | "github_url": "https://github.com/NVIDIA-DOCA",
1711 | "verified_domain": null,
1712 | "proof_steps": [
1713 | {
1714 | "type": "Base",
1715 | "text": "docs.nvidia.com",
1716 | "url": null
1717 | },
1718 | {
1719 | "type": "StandaloneHyperlink",
1720 | "text": "Nvidia DOCA Documentation",
1721 | "url": "https://docs.nvidia.com/doca/archive/3-1-0-core-update/changes-and-new-features/index.html#:~:text=DOCA%20Sample%20Code%3A%20Migrated%20all%20DOCA%20sample%20code%20snippets%20to%20GitHub%20for%20public%20access%3A%20https%3A//github.com/NVIDIA%2DDOCA/doca%2Dsamples"
1722 | },
1723 | {
1724 | "type": "LinksTo",
1725 | "prefix_text": "",
1726 | "text": "github.com/NVIDIA-DOCA",
1727 | "url": null
1728 | }
1729 | ]
1730 | },
1731 | {
1732 | "name": "NVIDIA Isaac",
1733 | "github_url": "https://github.com/nvidia-isaac",
1734 | "verified_domain": null,
1735 | "proof_steps": [
1736 | {
1737 | "type": "Base",
1738 | "text": "docs.nvidia.com",
1739 | "url": null
1740 | },
1741 | {
1742 | "type": "StandaloneHyperlink",
1743 | "text": "NVIDIA Omniverse NuRec Docs",
1744 | "url": "https://docs.nvidia.com/nurec/robotics/neural_reconstruction_stereo.html#:%7E:text=git%20clone%20%2D%2Drecursive%20https%3A//github.com/nv%2Dtlabs/3dgrut.git:~:text=KeyframesMetadataCollection%20protobuf%20format-,Example%20cuSFM%20data,-%3A"
1745 | },
1746 | {
1747 | "type": "LinksTo",
1748 | "text": "github.com/nvidia-isaac",
1749 | "url": null
1750 | }
1751 | ]
1752 | }
1753 | ]
1754 | }
1755 | ]
1756 | }
--------------------------------------------------------------------------------