Schema
The top-level Software Graph shape.
interface SoftwareGraph {
version: string;
repository: SoftwareGraphRepository;
nodes: SoftwareGraphNode[];
edges: SoftwareGraphEdge[];
diagnostics: SoftwareGraphDiagnostic[];
indexes: GraphIndexes;
metadata: SoftwareGraphMetadata;
}Schema changes require an RFC before implementation.