-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
1,057 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"url": "parameter_network.csv", | ||
"dc:conformsTo": "http://cldf.clld.org/v1.0/terms.rdf#ParameterNetwork", | ||
"dc:description": "Rows in this table describe edges in a network of parameters.", | ||
"tableSchema": { | ||
"columns": [ | ||
{ | ||
"name": "ID", | ||
"required": true, | ||
"propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#id", | ||
"datatype": { | ||
"base": "string", | ||
"format": "[a-zA-Z0-9_\\-]+" | ||
} | ||
}, | ||
{ | ||
"name": "Description", | ||
"required": false, | ||
"propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#description", | ||
"datatype": "string" | ||
}, | ||
{ | ||
"name": "Target_Parameter_ID", | ||
"required": true, | ||
"propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#targetParameterReference", | ||
"dc:description": "References the target node of the edge.", | ||
"datatype": "string" | ||
}, | ||
{ | ||
"name": "Source_Parameter_ID", | ||
"required": true, | ||
"propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#sourceParameterReference", | ||
"dc:description": "References the source node of the edge.", | ||
"datatype": "string" | ||
}, | ||
{ | ||
"name": "Edge_Is_Directed", | ||
"required": false, | ||
"propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#edgeIsDirected", | ||
"dc:description": "Flag signaling whether the edge is directed or undirected.", | ||
"datatype": {"base": "boolean", "format": "Yes|No"} | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.