Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OS X 14.5 1.71 Crash on attempt to open gbXML #726

Closed
arossti opened this issue Aug 9, 2024 · 3 comments
Closed

OS X 14.5 1.71 Crash on attempt to open gbXML #726

arossti opened this issue Aug 9, 2024 · 3 comments
Labels
OpenStudio SDK Issue An issue that is not related to OpenStudioApplication but to NREL/OpenStudio SDK

Comments

@arossti
Copy link

arossti commented Aug 9, 2024

Issue overview

Fresh install of 1.7.1. (ARM) Trying to get models from ArchiCad/StruSoft gbXML format to import. Hard crash on open.

Current Behavior

File/Import/gbXML, point to file - kaboom.
M-K OS test file.xml.zip

OSX Sonoma 14.5, Silicon, ARM install. OS 1.7.1. (1.8 crashes on opening EPW files)

Just trying to populate a file so I can learn the UI. Would be helpful if you shipped with a few demo files, ie. timber frame house and a concrete to steel commercial building...

@arossti arossti added the Triage Issue needs to be assessed and labeled, further information on reported might be needed label Aug 9, 2024
@macumber
Copy link
Collaborator

Thanks for the bug report @arossti. It looks like this crash is being generated in the OpenStudio SDK:

 	openstudiolib.dll!openstudio::gbxml::ReverseTranslator::translateSchedule(const pugi::xml_node & element, const pugi::xml_node & root, openstudio::model::Model & model) Line 180	C++
 	openstudiolib.dll!openstudio::gbxml::ReverseTranslator::translateGBXML(const pugi::xml_node & root) Line 277	C++
 	openstudiolib.dll!openstudio::gbxml::ReverseTranslator::convert(const pugi::xml_node & root) Line 134	C++
 	openstudiolib.dll!openstudio::gbxml::ReverseTranslator::loadModel(const boost::filesystem::path & path, openstudio::ProgressBar * progressBar) Line 97	C++
 	OpenStudioApp.exe!openstudio::OpenStudioApp::import(openstudio::OpenStudioApp::fileType type) Line 753	C++
 	OpenStudioApp.exe!openstudio::OpenStudioApp::importgbXML() Line 676	C++

The OS SDK is expecting begin and end dates of the schedules to be formatted like:

      <BeginDate>2009-01-01</BeginDate>
      <EndDate>2009-12-30</EndDate>

But they are coming in like:

      <BeginDate>01:00 Jan. 01</BeginDate>
      <EndDate>24:00 Dec. 30</EndDate>

I will file a bug on the OpenStudio SDK site, as a workaround you could do a find/replace using a text editor:

"01:00 Jan. 01" -> "2009-01-01"
"24:00 Apr. 01" -> "2009-04-01"
"01:00 Apr. 02" -> "2009-04-02"
"24:00 Sep. 30" -> "2009-09-30"
"01:00 Oct. 01" -> "2009-10-01"
"24:00 Dec. 30" -> "2009-12-31"

@macumber macumber added OpenStudio SDK Issue An issue that is not related to OpenStudioApplication but to NREL/OpenStudio SDK and removed Triage Issue needs to be assessed and labeled, further information on reported might be needed labels Aug 11, 2024
@macumber
Copy link
Collaborator

macumber commented Aug 11, 2024

I think the file is not valid according to https://www.gbxml.org/schema/5-01/GreenBuildingXML_Ver5.01.xsd.txt, BeginDate should be an xsd:date: https://www.w3schools.com/xml/schema_dtypes_date.asp. That would be a bug for ArchiCad/StruSoft

@jmarrec
Copy link
Collaborator

jmarrec commented Nov 13, 2024

openstudio -e "rt = OpenStudio::GbXML::GbXMLReverseTranslator.new; rt.loadModel('broken_date.xml')"

It does say [openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Jan. 01' is not a valid value of the atomic type 'xs:date'.

$ openstudio -e "rt = OpenStudio::GbXML::GbXMLReverseTranslator.new; rt.loadModel('broken_date.xml')"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1871: Element '{http://www.gbxml.org/schema}Location': Missing child element(s). Expected is one of ( {http://www.gbxml.org/schema}StationId, {http://www.gbxml.org/schema}Description, {http://www.gbxml.org/schema}ZipcodeOrPostalCode, {http://www.gbxml.org/schema}Elevation ).
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:769
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:1460 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:1988 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:2113 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:2258 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:2295 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:2371 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:2486 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:2523 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:3084 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:3390 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:3863 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:4056 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:4435 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:5420 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:5457 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:6151 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:6188 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:7018 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:8886 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:9383 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:9459 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:9496 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:9533 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}U-value': The attribute 'unit' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:9668 while processing "unit"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}CADObjectId', attribute 'programIdRef': '40123A37-A49C-1C42-BC0C-CE45F3F2A9C2' is not a valid value of the atomic type 'xs:IDREF'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:11606 while processing "40123A37-A49C-1C42-BC0C-CE45F3F2A9C2"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}CADObjectId', attribute 'programIdRef': '436C59BF-7917-3947-A6F3-AFEF151E3348' is not a valid value of the atomic type 'xs:IDREF'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:12040 while processing "436C59BF-7917-3947-A6F3-AFEF151E3348"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}CADObjectId', attribute 'programIdRef': '7997710F-ED21-F543-9E9D-202F64A48D91' is not a valid value of the atomic type 'xs:IDREF'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:14408 while processing "7997710F-ED21-F543-9E9D-202F64A48D91"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}CADObjectId', attribute 'programIdRef': '163AE0D7-40DB-2847-9373-6163E162F534' is not a valid value of the atomic type 'xs:IDREF'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:15145 while processing "163AE0D7-40DB-2847-9373-6163E162F534"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}CADObjectId', attribute 'programIdRef': '2D5DB72B-BF92-E841-8592-750AE1547185' is not a valid value of the atomic type 'xs:IDREF'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:16865 while processing "2D5DB72B-BF92-E841-8592-750AE1547185"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}CADObjectId', attribute 'programIdRef': '760B6DAE-7C3C-9E4D-AC61-FF1317388961' is not a valid value of the atomic type 'xs:IDREF'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:17947 while processing "760B6DAE-7C3C-9E4D-AC61-FF1317388961"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}CADObjectId', attribute 'programIdRef': '176B9339-8AB1-0B41-8578-A3F2608222E2' is not a valid value of the atomic type 'xs:IDREF'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:18805 while processing "176B9339-8AB1-0B41-8578-A3F2608222E2"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}CADObjectId', attribute 'programIdRef': '6613DEC7-4115-644F-8B54-BA13BF957F67' is not a valid value of the atomic type 'xs:IDREF'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:20290 while processing "6613DEC7-4115-644F-8B54-BA13BF957F67"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}CADObjectId', attribute 'programIdRef': '02D5EDD6-5926-E64B-B9E6-3EFFFA9BD89F' is not a valid value of the atomic type 'xs:IDREF'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:21373 while processing "02D5EDD6-5926-E64B-B9E6-3EFFFA9BD89F"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}CreatedBy', attribute 'date': 'Aug 9, 2024 at 12:05:27' is not a valid value of the atomic type 'xs:dateTime'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22286 while processing "Aug 9, 2024 at 12:05:27"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}Schedule': The attribute 'type' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22289 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}YearSchedule', attribute 'id': 'mins-1-YearSchedule' is not a valid value of the atomic type 'xs:ID'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22291 while processing "mins-1-YearSchedule"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Jan. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22292 while processing "01:00 Jan. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Apr. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22293 while processing "24:00 Apr. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Apr. 02' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22295 while processing "01:00 Apr. 02"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Sep. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22296 while processing "24:00 Sep. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Oct. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22298 while processing "01:00 Oct. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Dec. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22299 while processing "24:00 Dec. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}Schedule': The attribute 'type' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22304 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}YearSchedule', attribute 'id': 'maxs-2-YearSchedule' is not a valid value of the atomic type 'xs:ID'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22306 while processing "maxs-2-YearSchedule"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Jan. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22307 while processing "01:00 Jan. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Apr. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22308 while processing "24:00 Apr. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Apr. 02' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22310 while processing "01:00 Apr. 02"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Sep. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22311 while processing "24:00 Sep. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Oct. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22313 while processing "01:00 Oct. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Dec. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22314 while processing "24:00 Dec. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}Schedule': The attribute 'type' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22319 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}YearSchedule', attribute 'id': 'ls-3-YearSchedule' is not a valid value of the atomic type 'xs:ID'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22321 while processing "ls-3-YearSchedule"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Jan. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22322 while processing "01:00 Jan. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Apr. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22323 while processing "24:00 Apr. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Apr. 02' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22325 while processing "01:00 Apr. 02"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Sep. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22326 while processing "24:00 Sep. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Oct. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22328 while processing "01:00 Oct. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Dec. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22329 while processing "24:00 Dec. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}Schedule': The attribute 'type' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22334 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}YearSchedule', attribute 'id': 'eqs-4-YearSchedule' is not a valid value of the atomic type 'xs:ID'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22336 while processing "eqs-4-YearSchedule"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Jan. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22337 while processing "01:00 Jan. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Apr. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22338 while processing "24:00 Apr. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Apr. 02' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22340 while processing "01:00 Apr. 02"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Sep. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22341 while processing "24:00 Sep. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Oct. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22343 while processing "01:00 Oct. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Dec. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22344 while processing "24:00 Dec. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}Schedule': The attribute 'type' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22349 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}YearSchedule', attribute 'id': 'ps-5-YearSchedule' is not a valid value of the atomic type 'xs:ID'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22351 while processing "ps-5-YearSchedule"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Jan. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22352 while processing "01:00 Jan. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Apr. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22353 while processing "24:00 Apr. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Apr. 02' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22355 while processing "01:00 Apr. 02"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Sep. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22356 while processing "24:00 Sep. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Oct. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22358 while processing "01:00 Oct. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Dec. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22359 while processing "24:00 Dec. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}Schedule': The attribute 'type' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22364 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}YearSchedule', attribute 'id': 'mins-6-YearSchedule' is not a valid value of the atomic type 'xs:ID'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22366 while processing "mins-6-YearSchedule"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Jan. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22367 while processing "01:00 Jan. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Dec. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22368 while processing "24:00 Dec. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}Schedule': The attribute 'type' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22373 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}YearSchedule', attribute 'id': 'maxs-7-YearSchedule' is not a valid value of the atomic type 'xs:ID'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22375 while processing "maxs-7-YearSchedule"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Jan. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22376 while processing "01:00 Jan. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Dec. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22377 while processing "24:00 Dec. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}Schedule': The attribute 'type' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22382 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}YearSchedule', attribute 'id': 'ls-8-YearSchedule' is not a valid value of the atomic type 'xs:ID'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22384 while processing "ls-8-YearSchedule"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Jan. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22385 while processing "01:00 Jan. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Dec. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22386 while processing "24:00 Dec. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}Schedule': The attribute 'type' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22391 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}YearSchedule', attribute 'id': 'eqs-9-YearSchedule' is not a valid value of the atomic type 'xs:ID'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22393 while processing "eqs-9-YearSchedule"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Jan. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22394 while processing "01:00 Jan. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Dec. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22395 while processing "24:00 Dec. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}Schedule': The attribute 'type' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22400 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}YearSchedule', attribute 'id': 'ps-10-YearSchedule' is not a valid value of the atomic type 'xs:ID'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22402 while processing "ps-10-YearSchedule"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}BeginDate': '01:00 Jan. 01' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22403 while processing "01:00 Jan. 01"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1824: Element '{http://www.gbxml.org/schema}EndDate': '24:00 Dec. 30' is not a valid value of the atomic type 'xs:date'.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22404 while processing "24:00 Dec. 30"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22409 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22409 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22414 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22414 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22419 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22419 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22424 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22424 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22429 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22429 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22434 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22434 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22439 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22439 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22444 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22444 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22449 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22449 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22454 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22454 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22459 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22459 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22464 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22464 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22469 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22469 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22474 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22474 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}WeekSchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22479 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}WeekSchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22479 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22484 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22484 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22512 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22512 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22540 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22540 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22568 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22568 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22596 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22596 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22624 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22624 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22652 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22652 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22680 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22680 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22708 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22708 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22736 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22736 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22764 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22764 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22792 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22792 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22820 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22820 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22848 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22848 while processing "scheduleType"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1866: Element '{http://www.gbxml.org/schema}DaySchedule', attribute 'type': The attribute 'type' is not allowed.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22876 while processing "type"
[openstudio.XMLValidator] <1> xsdValidate.parseFileError: XML error 17.1868: Element '{http://www.gbxml.org/schema}DaySchedule': The attribute 'scheduleType' is required but missing.
    at /home/julien/Software/Others/OpenStudio-Issues/2024/5234/broken_date.xml:22876 while processing "scheduleType"
[BOOST_ASSERT] <2> Assertion beginDateParts.size() == 3 failed on line 180 of boost::optional<openstudio::model::ModelObject> openstudio::gbxml::ReverseTranslator::translateSchedule(const pugi::xml_node&, const pugi::xml_node&, openstudio::model::Model&) in file /srv/jenkins/openstudio/git/nightly/ubuntu_2004/Openstudio/src/gbxml/MapSchedules.cpp.
[BOOST_ASSERT] <2> Assertion beginDateParts.size() == 3 failed on line 180 of boost::optional<openstudio::model::ModelObject> openstudio::gbxml::ReverseTranslator::translateSchedule(const pugi::xml_node&, const pugi::xml_node&, openstudio::model::Model&) in file /srv/jenkins/openstudio/git/nightly/ubuntu_2004/Openstudio/src/gbxml/MapSchedules.cpp.
[utilities.time.Date] <2> Bad Date: year = 1, month = Jan(1), day = 1. 
[utilities.time.Date] <2> Bad Date: year = 1, month = Jan(1), day = 1. 
terminate called after throwing an instance of 'RubyException'
  what():  RuntimeError: /srv/jenkins/openstudio/git/nightly/ubuntu_2004/Openstudio/src/utilities/time/Date.cpp@382 : Bad Date: year = 1, month = Jan(1), day = 1. 
Aborted (core dumped)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
OpenStudio SDK Issue An issue that is not related to OpenStudioApplication but to NREL/OpenStudio SDK
Projects
None yet
Development

No branches or pull requests

3 participants