Diagram description
Diagram description
The diagram shows Standards Crosswalks dataset only: state mathematics standards mapped to Common Core State Standards. Both endpoints are
StandardsFrameworkItem (defined in Academic Standards). Direction is always state β CCSS, not between states. Edge properties include jaccard and LC counts; see Standards Crosswalks.Example (New York β CCSS): A state standard is a StandardsFrameworkItem from a state frameworkβe.g. NY 3.NF.1 (Understand a fraction 1/b as the quantity formed by 1 part when a whole is partitioned into b equal parts). A CCSS standard is a StandardsFrameworkItem from Common Core Mathβe.g. 3.NF.A.1. A hasStandardAlignment edge connects them when they share at least one Learning Component; the edge has properties such as jaccard (e.g. 0.85), stateLCCount, ccssLCCount, sharedLCCount. So: NY 3.NF.1 -[:hasStandardAlignment]-> 3.NF.A.1. Crosswalks are only state β CCSS (never state β state).Edge list (source β relationship β target):StandardsFrameworkItem(state) βhasStandardAlignmentβStandardsFrameworkItem(CCSS) (e.g. NY 3.NF.1 β 3.NF.A.1)
What youβll do
- Identify the closest Texas standards for a given CCSSM standard
- Interpret alignment strength using Jaccard scores and LC counts
- Inspect the shared Learning Components that support each alignment
What youβll need
- API key and base URL in the Learning Commons PlatformΒ β
- Familiarity with the
GET /academic-standards/search,GET /academic-standards/{uuid}/crosswalks, andGET /academic-standards/{uuid}/learning-componentsAPI endpoints curlΒ β, Python, or Node
Steps
Find the Texas standards that best match the 6.EE.B.5 CCSSM standard
First, use Use the The response contains the Texas standards that share Learning Components with your target 6.EE.B.5 CCSSM standard, with overlap metrics:
GET /academic-standards/search to find the 6.EE.B.5 CCSSM standard.Then, use GET /academic-standards/{uuid}/crosswalks to get Texas standards that share Learning Components with that CCSSM standard.Response
GET /academic-standards/{caseIdentifierUUID}/crosswalks API endpoint with the caseIdentifierUUID from your response:Response
Interpret the relationship metrics
Each crosswalk relationship carries additional context about the degree of overlap:
sharedLCCountβ Number of shared deconstructed skillsstateLCCountβΒ Number of skills that support the state standardccssLCCountβΒ Number of skills that support the CCSSM standard
Inspect shared Learning Components
Now that you have crosswalk pairs (CCSSM β Texas), retrieve the actual skills (i.e. Learning Components) that support each standard.This analysis reveals the Learning Components that are present in both standards, and the Learning Components that are unique to either the CCSS or state standard.
Keep exploring
Now that you understand which Learning Components are shared vs. unique, you can now make informed decisions about how to adapt your content to align to curriculum standards.Explore other Standards Crosswalks to compare other statesβ standards to Common Core and to guide alignment work across frameworks in your own edtech product.