# comments
* new section or null/unknown value or delimiter between the attribute name and the data type
() optional
# Comments *Nodes (total numbers of nodes) id*int label*string (nodeAttribute1*data_type) (nodeAttribute2*data_type) ... ... *DirectedEdges (total numbers of edges) source*int target*int (edgeAttribute1*data_type) (edgeAttribute2*data_type) ... *UndirectedEdges (total numbers of edges) source*int target*int (edgeAttribute1*data_type) (edgeAttribute2*data_type) ... |
# This is a paper-author network. # Author labels are author names. # Paper labels are titles. # Paper weights indicate # citations. *Nodes 4 id*int label*string weight*int node_type*string 1 "Joe Ann" 0 "author" 2 "John Smith" 0 "author" 3 "Bio Today" 8 "paper" 4 "Physics Tomorrow" 15 "paper" *DirectedEdges 2 source*int target*int weight*float edge_type*string 1 3 0.66 "wrote" 4 3 0.78 "paper-citation" |
*Nodes 4 id*int label*string weight*float node_type*string 1 "Joe Ann" 0.66 "author" 2 "John Smith" 0 "author" 3 "Bio Today" 0.78 "paper" 4 "Physics Tomorrow" 1.0 "paper" *DirectedEdges 3 source*int target*int weight*int edge_type*string 1 3 1 "wrote" 4 3 15 "paper-citation" 2 3 1 "wrote" |
*Nodes 4 id*int label*string weight*int node_type*string #the following node has an unknown string value. 1 * 0 "author" 2 "John Smith" 0 "author" 3 "Bio Today" 8 "paper" #the following node has an unknown integer value. 4 "Physics Tomorrow" * "paper" *DirectedEdges 3 source*int target*int weight*float edge_type*string 1 3 0.66 "wrote" 4 3 0.78 "paper-citation" 2 3 1.0 "wrote" |
NWB File Format is defined by the NWB Development Team