From 5c16e4e1419dfd83dfdce1207fe80002c7cd3d15 Mon Sep 17 00:00:00 2001 From: Kay Robbins <1189050+VisLab@users.noreply.github.com> Date: Wed, 9 Apr 2025 07:07:19 -0500 Subject: [PATCH] Updated the xml output --- hed/schema/schema_io/schema2xml.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hed/schema/schema_io/schema2xml.py b/hed/schema/schema_io/schema2xml.py index fe64ef93f..852555c5b 100644 --- a/hed/schema/schema_io/schema2xml.py +++ b/hed/schema/schema_io/schema2xml.py @@ -53,6 +53,8 @@ def _output_sources(self, hed_schema): source_name.text = row[df_constants.source] source_link = SubElement(source_node, xml_constants.LINK_ELEMENT) source_link.text = row[df_constants.link] + description = SubElement(source_node, xml_constants.DESCRIPTION_ELEMENT) + description.text = row[df_constants.description] def _output_prefixes(self, hed_schema): prefixes = hed_schema.get_extras(df_constants.PREFIXES_KEY)