> ## Documentation Index
> Fetch the complete documentation index at: https://docs.learningcommons.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Local files

> Download JSON files to access Knowledge Graph data.

## Overview

Knowledge Graph data can be downloaded as 2 files in newline delimited JSONL format with UTF-8 encoding:

* `nodes.jsonl` - Contains Knowledge Graph [entities](/knowledge-graph/understanding-knowledge-graph/core-concepts#entities) (graph nodes)
* `relationships.jsonl` - Contains Knowledge Graph [relationships](/knowledge-graph/understanding-knowledge-graph/core-concepts#relationships) (graph edges)

## Download

You can download all data in the Knowledge Graph using the following methods:

* Direct links - [`nodes.jsonl`](https://cdn.learningcommons.org/knowledge-graph/v1.11.0/exports/nodes.jsonl?ref=docs) ↗ and [`relationships.jsonl`](https://cdn.learningcommons.org/knowledge-graph/v1.11.0/exports/relationships.jsonl?ref=docs) ↗
* [`curl`](https://github.com/curl/curl) ↗ commands

  ```bash For entities theme={null}
  curl -L "https://cdn.learningcommons.org/knowledge-graph/v1.11.0/exports/nodes.jsonl?ref=docs_curl" -o nodes.jsonl
  ```

  ```bash For relationships theme={null}
  curl -L "https://cdn.learningcommons.org/knowledge-graph/v1.11.0/exports/relationships.jsonl?ref=docs_curl" -o relationships.jsonl
  ```

You can also download specific subsets of the Knowledge Graph, otherwise known as [datasets](/knowledge-graph/datasets/):

* [Academic Standards](/knowledge-graph/datasets/academic-standards)
* [Learning Components](/knowledge-graph/datasets/learning-components)
* [Learning Progressions](/knowledge-graph/datasets/learning-progressions)
* [Standards Crosswalks](/knowledge-graph/datasets/standards-crosswalks)
* [Learner Variability Navigator](/knowledge-graph/datasets/learner-variability-navigator)

Each dataset will include its own unique list of JSONL files to download.

## Related topics

<CardGroup cols={2}>
  <Card title="Core concepts" icon="lightbulb" href="/knowledge-graph/understanding-knowledge-graph/core-concepts">
    Learn how entities, relationships, and UUIDs appear in the JSONL files.
  </Card>

  <Card title="Quickstart" icon="rocket" href="/knowledge-graph/getting-started/quickstart">
    Compare local files with other ways to get started with Knowledge Graph.
  </Card>
</CardGroup>
