Knowledge Graph data is available for download in both CSV and JSON formats. The graph data is exported with each file representing a specific entity/node type, and a relationships/edges file capturing the connections between nodes.
  • CSV files: UTF-8 encoded with comma delimiters and quoted fields. All CSV files include header rows with column names.
  • JSON files: Newline delimited JSON format with UTF-8 encoding.

Files

  • StandardsFramework: Educational standards frameworks.
  • StandardsFrameworkItem: Individual standards and learning objectives within frameworks.
  • LearningComponent: Granular, precise representations of individual skills or concepts.
  • Relationships: Connections and associations between all entity/node types.

Download options

You can download the files through direct s3 links or using curl commands.

CSV files:

JSON files:

Using curl commands

You can also download the files using curl commands. If you don’t have curl installed, visit https://github.com/curl/curl for installation instructions. Copy and paste the following commands to download all files:

CSV files

# Download CSV files
curl -L "https://aidt-knowledge-graph-datasets-public-prod.s3.us-west-2.amazonaws.com/knowledge-graph/v1.0.0/csv/StandardsFramework.csv?ref=docs_curl" -o StandardsFramework.csv
curl -L "https://aidt-knowledge-graph-datasets-public-prod.s3.us-west-2.amazonaws.com/knowledge-graph/v1.0.0/csv/StandardsFrameworkItem.csv?ref=docs_curl" -o StandardsFrameworkItem.csv
curl -L "https://aidt-knowledge-graph-datasets-public-prod.s3.us-west-2.amazonaws.com/knowledge-graph/v1.0.0/csv/LearningComponent.csv?ref=docs_curl" -o LearningComponent.csv
curl -L "https://aidt-knowledge-graph-datasets-public-prod.s3.us-west-2.amazonaws.com/knowledge-graph/v1.0.0/csv/Relationships.csv?ref=docs_curl" -o Relationships.csv

JSON files

# Download JSON files
curl -L "https://aidt-knowledge-graph-datasets-public-prod.s3.us-west-2.amazonaws.com/knowledge-graph/v1.0.0/json/StandardsFramework.json?ref=docs_curl" -o StandardsFramework.json
curl -L "https://aidt-knowledge-graph-datasets-public-prod.s3.us-west-2.amazonaws.com/knowledge-graph/v1.0.0/json/StandardsFrameworkItem.json?ref=docs_curl" -o StandardsFrameworkItem.json
curl -L "https://aidt-knowledge-graph-datasets-public-prod.s3.us-west-2.amazonaws.com/knowledge-graph/v1.0.0/json/LearningComponent.json?ref=docs_curl" -o LearningComponent.json
curl -L "https://aidt-knowledge-graph-datasets-public-prod.s3.us-west-2.amazonaws.com/knowledge-graph/v1.0.0/json/Relationships.json?ref=docs_curl" -o Relationships.json

Next steps

This article walked you through downloading Knowledge Graph so you can start using it. Check the links below to help you do things like ingest the data into a database or leverage the data to support common use cases.