You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Schema definition for the mapping file that is used in default tree creation.
562
+
DEFAULT_TREE_MAPPING_SCHEMA= {
563
+
"title": "Tree column mapping for default trees",
564
+
"description": "The mapping of the CSV columns for default tree creation.",
565
+
"$schema": "http://json-schema.org/schema#",
566
+
"type": "object",
567
+
"properties": {
568
+
"all_columns": {
569
+
"description": "A list of all the column header names contained in the CSV. The first columns names should correspond the number of ranks defined in this schema.",
570
+
"type": "array",
571
+
"items": {
572
+
"type": "string"
573
+
}
574
+
},
575
+
"ranks": {
576
+
"description": "An ordered list containing all the ranks to be created.",
577
+
"type": "array",
578
+
"minItems": 1,
579
+
"items": {
580
+
"description": "A rank's mapping definition.",
581
+
"type": "object",
582
+
"additionalProperties": {
583
+
"description": "Mapping of CSV column names to the rank's field names.",
0 commit comments