epb_view_models 2.2.14 → 2.2.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/api/schemas/data/orchestrate.json +8 -0
  3. data/api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/ExternalDefinitions.xml +1456 -0
  4. data/api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/ExternalDefinitions.xsd +236 -0
  5. data/api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/AssessorManagement.xsd +213 -0
  6. data/api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/EPC-Certificate.xsd +400 -0
  7. data/api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/EPC-CollectedData.xsd +966 -0
  8. data/api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/ExceptionList.xsd +18 -0
  9. data/api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/Property.xsd +66 -0
  10. data/api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/RdSAP-Report.xsd +175 -0
  11. data/api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/ReportList.xsd +26 -0
  12. data/api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/UDT/EPC-Domains.xsd +853 -0
  13. data/api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/UDT/SAP-Domains.xsd +2551 -0
  14. data/api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/ExternalDefinitions.xml +1832 -0
  15. data/api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/ExternalDefinitions.xsd +267 -0
  16. data/api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/AssessorManagement.xsd +212 -0
  17. data/api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/EPC-Certificate.xsd +399 -0
  18. data/api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/EPC-CollectedData.xsd +1453 -0
  19. data/api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/Property.xsd +67 -0
  20. data/api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/RdSAP-Report.cs +11846 -0
  21. data/api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/RdSAP-Report.xsd +179 -0
  22. data/api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/UDT/EPC-Domains.xsd +940 -0
  23. data/api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/UDT/SAP-Domains.xsd +3557 -0
  24. data/lib/epb_view_models.rb +1 -1
  25. data/lib/view_model/factory.rb +2 -0
  26. data/lib/view_model/rd_sap_schema_s_180/common_schema.rb +541 -0
  27. data/lib/view_model/rd_sap_schema_s_190/common_schema.rb +44 -44
  28. data/lib/view_model/rd_sap_schema_s_210/common_schema.rb +670 -0
  29. data/lib/view_model/rd_sap_wrapper.rb +4 -0
  30. data/lib/view_model/sap_schema_s_1900/common_schema.rb +6 -10
  31. metadata +24 -1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: epb_view_models
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.14
4
+ version: 2.2.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - MHCLG Energy Performance of Buildings
@@ -320,6 +320,17 @@ files:
320
320
  - api/schemas/xml/RdSAP-Schema-NI-21.0.1/RdSAP/Templates/RdSAP-Report.xsd
321
321
  - api/schemas/xml/RdSAP-Schema-NI-21.0.1/RdSAP/UDT/EPC-Domains.xsd
322
322
  - api/schemas/xml/RdSAP-Schema-NI-21.0.1/RdSAP/UDT/SAP-Domains.xsd
323
+ - api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/ExternalDefinitions.xml
324
+ - api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/ExternalDefinitions.xsd
325
+ - api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/AssessorManagement.xsd
326
+ - api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/EPC-Certificate.xsd
327
+ - api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/EPC-CollectedData.xsd
328
+ - api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/ExceptionList.xsd
329
+ - api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/Property.xsd
330
+ - api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/RdSAP-Report.xsd
331
+ - api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/Templates/ReportList.xsd
332
+ - api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/UDT/EPC-Domains.xsd
333
+ - api/schemas/xml/RdSAP-Schema-S-18.0/RdSAP/UDT/SAP-Domains.xsd
323
334
  - api/schemas/xml/RdSAP-Schema-S-19.0/RdSAP/ExternalDefinitions.xml
324
335
  - api/schemas/xml/RdSAP-Schema-S-19.0/RdSAP/ExternalDefinitions.xsd
325
336
  - api/schemas/xml/RdSAP-Schema-S-19.0/RdSAP/Templates/AssessorManagement.xsd
@@ -331,6 +342,16 @@ files:
331
342
  - api/schemas/xml/RdSAP-Schema-S-19.0/RdSAP/Templates/ReportList.xsd
332
343
  - api/schemas/xml/RdSAP-Schema-S-19.0/RdSAP/UDT/EPC-Domains.xsd
333
344
  - api/schemas/xml/RdSAP-Schema-S-19.0/RdSAP/UDT/SAP-Domains.xsd
345
+ - api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/ExternalDefinitions.xml
346
+ - api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/ExternalDefinitions.xsd
347
+ - api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/AssessorManagement.xsd
348
+ - api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/EPC-Certificate.xsd
349
+ - api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/EPC-CollectedData.xsd
350
+ - api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/Property.xsd
351
+ - api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/RdSAP-Report.cs
352
+ - api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/Templates/RdSAP-Report.xsd
353
+ - api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/UDT/EPC-Domains.xsd
354
+ - api/schemas/xml/RdSAP-Schema-S-21.0/RdSAP/UDT/SAP-Domains.xsd
334
355
  - api/schemas/xml/SAP-Schema-10.2/CommonFiles/CommonStructures.xsd
335
356
  - api/schemas/xml/SAP-Schema-10.2/CommonFiles/Exceptions.xsd
336
357
  - api/schemas/xml/SAP-Schema-10.2/Messages/ConditionReportChangeAccessRequest_1.xsd
@@ -1706,7 +1727,9 @@ files:
1706
1727
  - lib/view_model/rd_sap_schema_ni_200/common_schema.rb
1707
1728
  - lib/view_model/rd_sap_schema_ni_210/common_schema.rb
1708
1729
  - lib/view_model/rd_sap_schema_ni_2101/common_schema.rb
1730
+ - lib/view_model/rd_sap_schema_s_180/common_schema.rb
1709
1731
  - lib/view_model/rd_sap_schema_s_190/common_schema.rb
1732
+ - lib/view_model/rd_sap_schema_s_210/common_schema.rb
1710
1733
  - lib/view_model/rd_sap_wrapper.rb
1711
1734
  - lib/view_model/sap_schema_102/common_schema.rb
1712
1735
  - lib/view_model/sap_schema_102/rdsap.rb